@charset "UTF-8";
/**
 * Bundle modal (cross-sell "Bundle it up") styles
 *
 * @package Focus_on_Tech
 */
/**
 * Convert pixels to rem units
 * @param {Number} $pixels - The pixel value to convert
 * @return {Number} - The rem equivalent
 * 
 * Usage:
 * font-size: toRem(24px);        // 1.5rem
 * padding: toRem(32px) toRem(16px); // 2rem 1rem
 */
/**
 * Convert rem to pixels
 * @param {Number} $rems - The rem value to convert
 * @param {Number} $base-font-size - The base font size (default: 16px)
 * @return {Number} - The pixel equivalent
 * 
 * Usage:
 * width: px(1.5rem);  // 24px
 */
/**
 * Strip units from a number
 * @param {Number} $number - Number with or without units
 * @return {Number} - Unitless number
 */
/**
 * Fluid typography - calculate font size between two breakpoints
 * @param {Number} $min-size - Minimum font size
 * @param {Number} $max-size - Maximum font size  
 * @param {Number} $min-width - Minimum viewport width
 * @param {Number} $max-width - Maximum viewport width
 * @return {String} - CSS clamp() function
 * 
 * Usage:
 * font-size: fluid-type(toRem(16px), toRem(24px), 320px, 1440px);
 */
/**
 * Calculate line height ratio
 * @param {Number} $font-size - Font size
 * @param {Number} $line-height - Desired line height
 * @return {Number} - Line height ratio
 * 
 * Usage:
 * line-height: line-height-ratio(toRem(16px), toRem(24px)); // 1.5
 */
/**
 * Get a color from a nested map
 * @param {Map} $map - The color map
 * @param {String} $keys... - The nested keys
 * @return {Color} - The color value
 * 
 * Usage:
 * color: map-deep-get($theme-colors, 'primary', 'base');
 */
/**
 * Power function (since Sass doesn't have built-in pow)
 * @param {Number} $base - Base number
 * @param {Number} $exponent - Exponent
 * @return {Number} - Result of base^exponent
 */
/**
 * Modular scale for typography
 * @param {Number} $increment - Scale increment (positive or negative)
 * @param {Number} $base - Base size (default: 1rem)
 * @param {Number} $ratio - Scale ratio (default: 1.25 - major third)
 * @return {Number} - Scaled size
 * 
 * Usage:
 * font-size: modular-scale(2);     // 1.5625rem (1.25^2)
 * font-size: modular-scale(-1);    // 0.8rem (1.25^-1)
 */
/**
 * Z-index management
 * @param {String} $layer - Layer name
 * @return {Number} - Z-index value
 */
/**
 * SVG Icon Path Function
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @return {String} - Full path to the icon
 * 
 * Usage:
 * background-image: url(icon-path('search'));
 */
/**
 * Common SVG Icons Map
 * Store commonly used SVG icons as encoded strings
 */
/**
 * Get SVG Icon as Data URI
 * @param {String} $icon-name - Name of the icon
 * @return {String} - Complete data URI for the SVG
 * 
 * Usage:
 * background-image: svg-icon('search');
 */
/**
 * Design Container - 1440px Design Width
 * Max-width: 1240px (1440px - 100px × 2)
 * Padding: 20px left/right for smaller screens
 * 
 * Usage:
 * @include container-design();
 * @include container-design(1.5rem); // Custom padding
 */
/**
 * Custom Container - Flexible max-width with consistent padding
 * @param {Number} $max-width - Maximum width (default: 1240px)
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-custom(800px, 16px);
 * @include container-custom(toRem(1140px));
 */
/**
 * Full-width Container - 100% width with padding
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-full();
 * @include container-full(1rem);
 */
/**
 * Advanced Border Radius Mixin (Backward Compatible)
 * Apply border-radius to specific corners or all corners
 * 
 * @param {String|Number} $corner-or-size - Corner name OR size for backward compatibility
 * @param {Number} $size - The radius size (when using corner names)
 * 
 * Backward Compatible Usage:
 * @include border-radius(10px);               // Old style: all corners
 * 
 * New Advanced Usage:
 * @include border-radius('all', 20px);        // All corners
 * @include border-radius('top', 15px);        // Top left & right
 * @include border-radius('right', 15px);      // Right top & bottom  
 * @include border-radius('bottom', 15px);     // Bottom left & right
 * @include border-radius('left', 10px);       // Left top & bottom
 * @include border-radius('top-left', 5px);    // Single corner
 * @include border-radius('top-right', 5px);   // Single corner
 * @include border-radius('bottom-left', 5px); // Single corner
 * @include border-radius('bottom-right', 5px);// Single corner
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/**
 * File-based SVG Icon Mixin (Recommended)
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * 
 * Usage:
 * @include icon('arrow-down', 0.9rem);
 * @include icon('cart', 1.25rem);
 * 
 * Place your SVG files in: assets/icons/icon-name.svg
 */
/**
 * SVG Icon Mixin (For encoded SVGs in map)
 * @param {String} $icon-name - Name of the icon
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Color} $color - Color of the icon (default: currentColor)
 * 
 * Usage:
 * @include svg-icon('search');
 * @include svg-icon('cart', 1.5rem, #333);
 */
/**
 * Icon with Text Mixin
 * @param {String} $icon-name - Name of the icon
 * @param {String} $position - Position of icon (before, after)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Number} $spacing - Space between icon and text (default: 0.5rem)
 * 
 * Usage:
 * @include icon-with-text('search', 'before');
 */
/**
 * Content Type Color Mixin
 * Applies colors based on body class fot-page--{slug}
 * @param {String} $property - CSS property to apply color to (color, background-color, border-color, etc.)
 * @param {String} $shade - Color shade (dark, medium, light, pastel, gradient)
 * 
 * Usage:
 * @include content-type-color('color', 'dark');
 * @include content-type-color('background', 'gradient');
 * @include content-type-color('border-color', 'medium');
 */
/**
 * Quick Content Type Color Functions
 * Shorthand mixins for common use cases
 */
/**
 * Content Type Search Icon Mixin
 * Applies different search icons based on body class fot-page--{slug}
 * @param {Number} $width - Width of the icon (default: 20px)
 * @param {Number} $height - Height of the icon (default: 20px)
 * 
 * Usage:
 * @include content-type-search-icon();
 * @include content-type-search-icon(toRem(24px), toRem(24px));
 */
.fot-bundle-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.fot-bundle-modal--open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.fot-bundle-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.fot-bundle-modal__overlay--open {
  opacity: 1;
  visibility: visible;
}
.fot-bundle-modal__inner {
  position: relative;
  background: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  max-width: 50rem;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  overflow: hidden;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.85, 0.64, 1), opacity 0.3s ease-out;
}
.fot-bundle-modal--open .fot-bundle-modal__inner {
  transform: scale(1);
  opacity: 1;
}
.fot-bundle-modal__title {
  margin: 0;
  padding: 1.25rem 1.5rem 0;
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  font-style: italic;
  line-height: 1.3;
  color: #FFFFFF;
  background: linear-gradient(165deg, #00A5FF 0%, #01B8FF 100%);
  padding-bottom: 1.25rem;
}
.fot-bundle-modal__list {
  padding: 1rem 1.5rem;
  overflow-y: auto;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(11.25rem, 1fr) 4.375rem repeat(auto-fill, minmax(11.25rem, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 767.98px) {
  .fot-bundle-modal__list {
    grid-template-columns: 1fr;
  }
}
.fot-bundle-modal__plus {
  display: inline-block;
  transform: translateY(-50%);
  font-size: 6.25rem;
  font-weight: bold;
  line-height: 1;
  color: #002C87;
  align-self: center;
  justify-self: center;
  width: min-content;
  max-width: 6.25rem;
}
.fot-bundle-modal__card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.fot-bundle-modal__card:first-child > .fot-bundle-modal__card-selection--checked {
  border: 0.1875rem solid #FF7D00;
}
.fot-bundle-modal__card:first-child > .fot-bundle-modal__card-selection--checked .fot-bundle-modal__label-text {
  color: #FF7D00;
}
.fot-bundle-modal__card:not(:first-child) > .fot-bundle-modal__card-selection--checked {
  border: 0.1875rem solid #002C87;
}
.fot-bundle-modal__card:not(:first-child) > .fot-bundle-modal__card-selection--checked .fot-bundle-modal__checkbox {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 4L11 1' stroke='%23002684' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.375rem;
  height: 18px;
  background-size: 1rem;
}
.fot-bundle-modal__card:not(:first-child) > .fot-bundle-modal__card-selection--checked .fot-bundle-modal__label-text {
  color: #002C87;
}
.fot-bundle-modal__card-container {
  border: 1px solid #ECEDEE;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #FFFFFF;
  position: relative;
}
.fot-bundle-modal__card-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5625rem;
  background-color: #01013D;
  z-index: 0;
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
}
.fot-bundle-modal__card-container > * {
  position: relative;
  z-index: 1;
}
.fot-bundle-modal__card-selection {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.3125rem;
  border-radius: 1.875rem;
  transition: border 0.2s ease;
}
.fot-bundle-modal__card-selection--checked {
  border: 0.1875rem solid #FF7D00;
}
.fot-bundle-modal__card-selection--checked .fot-bundle-modal__label-text {
  color: #FF7D00;
}
.fot-bundle-modal__card-selection:not(.fot-bundle-modal__card-selection--checked) {
  border: 0.1875rem solid #ECEDEE;
}
.fot-bundle-modal__card-image {
  position: relative;
  width: calc(100% - 1.25rem);
  aspect-ratio: 16/10;
  max-height: 7.5rem;
  background: #F6F6F6;
  border-radius: 1.25rem;
  overflow: hidden;
  margin: 0.625rem;
}
.fot-bundle-modal__card-image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.fot-bundle-modal__card-image .fot-training-card__logo-overlay {
  position: absolute;
  bottom: 0.625rem;
  left: 0.625rem;
  background-image: url("../../images/fot-atf-tech-button-background-small.png");
  background-size: cover;
  backdrop-filter: blur(10px);
  height: 3.75rem;
  width: 5.8125rem;
  border-radius: 0.625rem;
  padding: 0.4375rem 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transform: scale(0.75);
  transform-origin: bottom left;
}
.fot-bundle-modal__card-image .fot-training-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fot-bundle-modal__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fot-bundle-modal__card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #002C87 0%, #01013D 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.5rem;
  line-height: 1.2;
}
.fot-bundle-modal__card-content {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fot-bundle-modal__card-categories {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 0.375rem;
  line-height: 1.2;
}
.fot-bundle-modal__card-title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.fot-bundle-modal__card-title-link {
  color: #002C87;
  text-decoration: none;
  min-height: 3.7rem;
  display: block;
}
.fot-bundle-modal__card-title-link:hover {
  text-decoration: underline;
}
.fot-bundle-modal__card-price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #232325;
  margin-bottom: 0.75rem;
}
.fot-bundle-modal__card-price-currency {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #232325;
  opacity: 0.85;
}
.fot-bundle-modal__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0;
  margin-top: auto;
}
.fot-bundle-modal__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #D9D9D9;
  border-radius: 0.25rem;
  background: #ECEDEE;
  cursor: pointer;
  transition: none;
}
.fot-bundle-modal__checkbox:checked {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 4L11 1' stroke='%23FF6403' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 1.375rem;
  height: 18px;
  background-size: 1rem;
}
.fot-bundle-modal__checkbox:disabled {
  opacity: 1;
  cursor: default;
}
.fot-bundle-modal__label-text {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.fot-bundle-modal__footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid #ECEDEE;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}
.fot-bundle-modal__footer > :first-child {
  flex: 7;
  min-width: 0;
}
.fot-bundle-modal__footer > :last-child {
  flex: 3;
}
@media (max-width: 767.98px) {
  .fot-bundle-modal__footer {
    flex-direction: column;
  }
}
.fot-bundle-modal__discount-summary {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #232325;
}
.fot-bundle-modal__discount-summary-line {
  display: block;
}
.fot-bundle-modal__discount-summary-line--first + .fot-bundle-modal__discount-summary-line--all {
  margin-top: 0.35em;
}
.fot-bundle-modal__discount-summary-discounted {
  font-weight: bold;
  font-size: medium;
}
.fot-bundle-modal__discount-summary-discounted > span {
  font-size: x-small;
}
.fot-bundle-modal__discount-summary-original {
  text-decoration: line-through;
  color: #232325;
  margin-left: 0.25em;
  font-size: small;
}
.fot-bundle-modal__discount-summary-savings {
  margin-left: 0.25em;
  font-size: small;
  font-weight: bold;
  color: #BC0000;
}
.fot-bundle-modal__total-wrap {
  text-align: right;
  padding-right: 0.9375rem;
}
.fot-bundle-modal__total-original {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #232325;
  text-decoration: line-through;
}
.fot-bundle-modal__total {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: right;
}
.fot-bundle-modal__total--discounted {
  color: #c00;
}
.fot-bundle-modal__submit {
  width: 100%;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #FF7900 0%, #FF5600 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 1.25rem;
  font-weight: 600;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.3125rem;
}
.fot-bundle-modal__submit:hover:not(:disabled) {
  opacity: 0.95;
  box-shadow: 0 2px 12px rgba(255, 86, 0, 0.35);
}
.fot-bundle-modal__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.fot-bundle-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}
.fot-bundle-modal__close:hover {
  color: #232325;
  background: #ECEDEE;
}
.fot-bundle-modal__close svg {
  width: 24px;
  height: 24px;
}

.woocommerce .add_to_cart_button.loading,
.add_to_cart_button.loading {
  opacity: 0.75;
  cursor: wait;
  pointer-events: none;
  position: relative;
}
.woocommerce .add_to_cart_button.loading .btn-loading,
.add_to_cart_button.loading .btn-loading {
  display: inline !important;
}
.woocommerce .add_to_cart_button.loading .btn-text,
.add_to_cart_button.loading .btn-text {
  display: none !important;
}
.woocommerce .add_to_cart_button.loading::after,
.add_to_cart_button.loading::after {
  content: "" !important;
  font-family: inherit !important;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  vertical-align: middle;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: fot-bundle-button-spin 0.6s linear infinite;
}

@keyframes fot-bundle-button-spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=bundle-modal.css.map */
