/* ===================================================== */
/* KCTCS GLOBAL STORE STYLES - Version 9 */
/* Consolidated: All shared styles from store blocks */
/* Last Updated: October 31, 2025 */
/* ===================================================== */

/* ===================================================== */
/* 1. BASE THEME VARIABLES */
/* ===================================================== */
:root {
    /* === Theme Primary Colors === */
    --sc-color-primary-h: 207;
    --sc-color-primary-s: 100.0%;
    --sc-color-primary-l: 25%;
    --sc-color-primary-a: 1;
    --sc-color-primary: #00467f;

    --sc-color-secondary-h: 42;
    --sc-color-secondary-s: 84%;
    --sc-color-secondary-l: 49%;
    --sc-color-secondary-a: 1;

    /* === Global Site Styling === */
    --sc-header-bg: #00467F;
    --sc-header-color: white;

    --sc-font-family: 'Century Gothic', sans-serif !important;

    --sc-menu-link-color-hover: #00467f;
    --sc-color-sale: #ff0040;
    --sc-color-sale-h: 344.9;
    --sc-color-sale-s: 100%;
    --sc-color-sale-l: 50%;

    --sc-color-error: #ff0040;

    --sc-shade-darkest: #3c4766;
    --sc-shade-dark: #66708a;
    --sc-shade-neutral: #a4aab9;
    --sc-shade-light: #d2d6e0;
    --sc-shade-lightest: #f1f3f7;

    --sc-border-radius: 5px;
    --sc-spacing-micro: 4px;
    --sc-spacing-tiny: 8px;
    --sc-spacing-small: 12px;
    --sc-spacing-medium: 20px;
    --sc-spacing-base: 24px;
    --sc-spacing-large: 32px;
    --sc-spacing-xlarge: 48px;
    --sc-spacing-xxlarge: 72px;
    --sc-spacing-huge: 96px;

    --sc-border-width-md: 720px;
    --sc-max-width-lg: calc(1220px + 60px);
    --sc-max-width: calc(1190px + 60px);
    --sc-max-width-skinny: 760px;

    --sc-footer-bg: white;
    --sc-footer-color: var(--sc-shade-darkest);
}


/* ===================================================== */
/* 2. GLOBAL ELEMENT HIDING */
/* ===================================================== */
#SC-PreFooter {
  display: none !important;
}

.SC-ExcludesTax,
.SC-OrderTotal_reorder { 
  display: none !important; 
}


/* ===================================================== */
/* 3. HEADER & NAVIGATION */
/* ===================================================== */

/* Logo hover effect */
.SC-Header .SC-Logo {
  transition: all .2s ease-in-out;
}

.SC-Header .SC-Logo:hover {
  transform: scale(1.05);
}

/* Logo sizing */
.SC-Logo_image {
  height: auto;
  max-height: 100px;
  max-width: 150px;
  width: auto;
}

@media only screen and (min-width: 768px) {
  .Logo_image, .SC-Logo_image {
    max-height: 100px;
    max-width: 150px;
  }
}

/* Header link hover color */
#SC-Header .SC-Header_inner_right .SC-Menu_link:hover {
  color: #e7a614 !important;
}

/* Header icon hover animations (login & cart) */
#SC-Header .SC-Header_inner_right .SC-Menu_link svg,
#SC-Header .SC-Header_inner_right .SC-Icon-button svg {
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

#SC-Header .SC-Header_inner_right .SC-Menu_link:hover svg,
#SC-Header .SC-Header_inner_right .SC-Icon-button:hover svg {
  transform: scale(1.05);
  color: hsla(var(--sc-color-secondary-h),
    var(--sc-color-secondary-s),
    var(--sc-color-secondary-l), 1);
}

#SC-Header .SC-Header_inner_right .SC-Menu_link:focus-visible svg,
#SC-Header .SC-Header_inner_right .SC-Icon-button:focus-visible svg {
  outline: 2px solid hsla(var(--sc-color-secondary-h),
    var(--sc-color-secondary-s),
    var(--sc-color-secondary-l), 1);
  outline-offset: 3px;
  border-radius: 50%;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  #SC-Header .SC-Header_inner_right .SC-Menu_link svg,
  #SC-Header .SC-Header_inner_right .SC-Icon-button svg {
    transition: none !important;
    transform: none !important;
  }
}


/* ===================================================== */
/* SECOND-TIER NAVIGATION BAR – Blue + Gold (ADA Safe) */
/* ===================================================== */
@media only screen and (min-width: 768px) {
  .SC-Navbar {
    background-color: var(--sc-color-primary) !important;
    color: #ffffff !important;
    border-top: 4px solid hsla(var(--sc-color-secondary-h),
      var(--sc-color-secondary-s),
      var(--sc-color-secondary-l), 1) !important;
    transition: background-color 0.3s ease;
  }

  .SC-Navbar_inner {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
  }

  .SC-Navbar .SC-Menu_link {
    position: relative;
    color: #ffffff !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.25rem !important;
    text-decoration: none !important;
    overflow: hidden;
    letter-spacing: 0.25px;
    transition: color 0.3s ease;
  }

  .SC-Navbar .SC-Menu_link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: -100%;
    width: 100%;
    height: 3px;
    background-color: hsla(var(--sc-color-secondary-h),
      var(--sc-color-secondary-s),
      var(--sc-color-secondary-l), 1);
    transition: left 0.3s ease;
  }

  .SC-Navbar .SC-Menu_link:hover::after,
  .SC-Navbar .SC-Menu_link:focus::after {
    left: 0;
  }

  .SC-Navbar .SC-Menu_link:hover,
  .SC-Navbar .SC-Menu_link:focus {
    color: hsla(var(--sc-color-secondary-h),
      var(--sc-color-secondary-s),
      var(--sc-color-secondary-l), 1) !important;
    outline: none;
  }

  .SC-Navbar .SC-Menu_link.is-active {
    color: hsla(var(--sc-color-secondary-h),
      var(--sc-color-secondary-s),
      var(--sc-color-secondary-l), 1) !important;
    font-weight: 700 !important;
  }

  .SC-Navbar .SC-Menu_link.is-active::after {
    left: 0;
  }

  .SC-Navbar .SC-Menu_link:focus-visible {
    outline: 3px solid hsla(var(--sc-color-secondary-h),
      var(--sc-color-secondary-s),
      var(--sc-color-secondary-l), 1);
    outline-offset: 4px;
    border-radius: 4px;
  }
}

@media only screen and (max-width: 767px) {
  /* Main burger menu dropdown */
  .SC-Menu.tier1.dropdown {
    background-color: var(--sc-color-primary) !important;
    color: #ffffff !important;
  }

  .SC-Menu.tier1.dropdown .SC-Menu_link {
    font-size: 1rem !important;
  }

  .SC-Menu.tier1.dropdown .SC-Menu_link:hover,
  .SC-Menu.tier1.dropdown .SC-Menu_link:focus {
    background-color: hsla(var(--sc-color-secondary-h),
      var(--sc-color-secondary-s),
      var(--sc-color-secondary-l), 1) !important;
    color: var(--sc-shade-darkest) !important;
  }

  /* Make close button (X) visible with secondary color */
  .SC-Menu_button[data-menu-x],
  .SC-Menu_button[data-menu-x] svg {
    color: hsla(var(--sc-color-secondary-h),
      var(--sc-color-secondary-s),
      var(--sc-color-secondary-l), 1) !important;
    stroke: hsla(var(--sc-color-secondary-h),
      var(--sc-color-secondary-s),
      var(--sc-color-secondary-l), 1) !important;
  }
}


/* ===================================================== */
/* 4. HERO SECTIONS */
/* Homepage Hero (template: image_text_overlay_homepage_hero) */
/* Global baseline for all hero banners */
/* ===================================================== */

.SC-ContentBlock.homepage-hero-image {
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
}

/* Banner setup */
.SC-ContentBlock.homepage-hero-image .SC-Banner {
  position: relative;
  display: block;
  min-height: 85vh;
  height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay tint behind text */
.SC-ContentBlock.homepage-hero-image .SC-Banner_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  background-color: #000; /* fallback for older browsers */
  z-index: 1;
}

/* Text container (bottom-left alignment) */
.SC-ContentBlock.homepage-hero-image .SC-Banner_container {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: auto;
  top: auto;
  z-index: 2;
  max-width: 720px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  min-height: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Text content area */
.SC-ContentBlock.homepage-hero-image .SC-Banner_content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: auto;
  margin: 0;
  padding: 0;
  background: none;
  text-align: left;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

/* Heading with gold underline */
.SC-ContentBlock.homepage-hero-image .SC-Banner_heading {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid #e7a514;
  color: #fff;
  max-width: 380px;
}

/* Subheading (optional content) */
.SC-ContentBlock.homepage-hero-image .SC-Banner_subheading {
  margin-top: 0.25rem;
  color: #fff;
  line-height: 1.5;
}

/* CTA button */
.SC-ContentBlock.homepage-hero-image .SC-Banner_cta {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: var(--sc-color-primary);
  border: 0.125rem solid var(--sc-color-primary);
  border-radius: 6px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
  padding: 0.78125rem 2rem;
  width: 18.75rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s,
              border-color 0.3s, box-shadow 0.3s;
}

.SC-ContentBlock.homepage-hero-image .SC-Banner_cta:hover,
.SC-ContentBlock.homepage-hero-image .SC-Banner_cta:focus {
  background-color: #fff;
  color: var(--sc-color-primary);
  border-color: var(--sc-color-primary);
  box-shadow: 0 0 12px rgba(231, 166, 20, 0.75);
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  60% { opacity: 0.8; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .SC-ContentBlock.homepage-hero-image .SC-Banner {
    min-height: 75vh;
    height: 75vh;
  }

  .SC-ContentBlock.homepage-hero-image .SC-Banner_container {
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    width: 100%;
    align-items: center;
    padding: 0 1rem;
  }

  .SC-ContentBlock.homepage-hero-image .SC-Banner_content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .SC-ContentBlock.homepage-hero-image .SC-Banner_heading {
    font-size: 2.5rem;
    max-width: 400px;
  }

  .SC-ContentBlock.homepage-hero-image .SC-Banner_cta {
    width: auto;
    min-width: 280px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
  }
}


/* ===================================================== */
/* 5. BUTTONS & CTAs */
/* ===================================================== */

/* Base button glow effect */
.sc-button,
.SC-Button-primary,
.SC-Banner_cta {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-out;
}

.sc-button:hover,
.SC-Button-primary:hover,
.SC-Banner_cta:hover {
  box-shadow: 0 0 14px rgba(231, 166, 20, 0.75);
}

/* Product Card & Product Detail CTA Buttons */
/* Unified styling for all product action buttons (enabled only) */
.SC-ProductCard_actions .SC-Button-secondary:not(:disabled),
.SC-ProductCard_actions input[type="submit"]:not(:disabled),
#SC-ProductDisplayDetails input[type="submit"].SC-Button-add:not(:disabled),
#SC-ProductDisplayDetails .SC-Button.SC-Button-add:not(:disabled) {
  background-color: var(--sc-color-primary, #00467f) !important;
  border: 0.125rem solid var(--sc-color-primary, #00467f) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
  padding: 0.78125rem 2rem !important;
  text-align: center !important;
  text-decoration: none !important;
  display: inline-block !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease-out !important;
}

/* Hover state with yellow glow - only for enabled buttons */
.SC-ProductCard_actions .SC-Button-secondary:not(:disabled):hover,
.SC-ProductCard_actions .SC-Button-secondary:not(:disabled):focus,
.SC-ProductCard_actions input[type="submit"]:not(:disabled):hover,
.SC-ProductCard_actions input[type="submit"]:not(:disabled):focus,
#SC-ProductDisplayDetails input[type="submit"].SC-Button-add:not(:disabled):hover,
#SC-ProductDisplayDetails input[type="submit"].SC-Button-add:not(:disabled):focus,
#SC-ProductDisplayDetails .SC-Button.SC-Button-add:not(:disabled):hover,
#SC-ProductDisplayDetails .SC-Button.SC-Button-add:not(:disabled):focus {
  background-color: #ffffff !important;
  color: var(--sc-color-primary, #00467f) !important;
  border-color: var(--sc-color-primary, #00467f) !important;
  box-shadow: 0 0 14px rgba(231, 166, 20, 0.75) !important;
}

/* Mobile optimization - only for enabled buttons */
@media screen and (max-width: 768px) {
  .SC-ProductCard_actions .SC-Button-secondary:not(:disabled),
  .SC-ProductCard_actions input[type="submit"]:not(:disabled),
  #SC-ProductDisplayDetails input[type="submit"].SC-Button-add:not(:disabled),
  #SC-ProductDisplayDetails .SC-Button.SC-Button-add:not(:disabled) {
    font-size: 1rem !important;
    padding: 0.65rem 1.5rem !important;
  }
}


/* ===================================================== */
/* 6. CARDS & PRODUCT DISPLAYS */
/* ===================================================== */

/* Product/Category card hover effects */
.SC-CardGrid_item .SC-ImageLink {
  display: block;
  border: 4px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.SC-CardGrid_item .SC-ImageLink:hover {
  transform: scale(1.03);
  border-color: hsla(var(--sc-color-secondary-h),
    var(--sc-color-secondary-s),
    var(--sc-color-secondary-l), 1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


/* ===================================================== */
/* 7. IMAGES & MEDIA */
/* ===================================================== */

/* Image beside text hover effects */
img.SC-ImageBesideText_image {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img.SC-ImageBesideText_image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 14px rgba(231, 166, 20, 0.75);
}


/* ===================================================== */
/* 8. FOOTER */
/* ===================================================== */

.sc-bg-primary {
  background-color: var(--sc-color-primary);
}

.Menu_image img,
.SC-Menu_image img {
  width: 32px;
  height: 32px;
}

.SC-Menu_item {
  text-align: center;
}

.SC-Menu.tier1 {
  column-gap: 0px;
}

.SC-Menu_image {
  padding: 0px 10px;
}

.SC-Logo {
  padding: 0px;
}

/* Hide social media link text (show icons only) */
.social-media-menu-items ul li a.SC-Menu_link {
  display: none;
}

/* Remove background on social icon hover */
.SC-Menu_image:hover:after {
  background-color: transparent;
}

/* Footer CTA button styling */
.footer-cta-button > .SC-Menu_link {
  background-color: var(--sc-color-primary);
  border: 0.125rem solid var(--sc-color-primary);
  border-radius: 6px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.78125rem 2rem;
  display: inline-block;
  width: 18.75rem;
  transition: background-color 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.footer-cta-button > .SC-Menu_link:hover,
.footer-cta-button > .SC-Menu_link:focus {
  background-color: #ffffff;
  color: var(--sc-color-primary);
  border-color: var(--sc-color-primary);
  box-shadow: 0 0 14px rgba(231, 166, 20, 0.75);
}


/* ===================================================== */
/* 9. FORMS & VALIDATION */
/* ===================================================== */

/* Refund form validation */
.refund-amount-error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.refund-amount-error.show {
  opacity: 1;
}

.refund-amount-invalid {
  border-color: #e74c3c !important;
  background-color: #fdf2f2 !important;
  box-shadow: 0 0 5px rgba(231, 76, 60, 0.3) !important;
  animation: shake 0.5s ease-in-out;
}

.refund-amount-valid {
  border-color: #27ae60 !important;
  background-color: #f8fff8 !important;
}

@keyframes shake {
  0%,100%{transform:translateX(0);}
  25%{transform:translateX(-5px);}
  75%{transform:translateX(5px);}
}


/* ===================================================== */
/* 10. ADA COMPLIANCE */
/* ===================================================== */

/* Screen Reader Only Utility Class */
/* Visually hides content while keeping it accessible to screen readers */
.sc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Search Placeholder High Contrast */
/* Higher contrast placeholder text for better           */
/* readability per KCTCS accessibility standards         */

/* Default state - when search box is not focused */
#SC-GlobalSearch input[type="search"]::placeholder {
  color: #00467F !important;
  opacity: 1 !important;
}

/* Focused state - when user clicks on search box */
#SC-GlobalSearch input[type="search"]:focus::placeholder {
  color: #00467F !important;
  opacity: 1 !important;
}

/* Browser-specific placeholder selectors for compatibility */
#SC-GlobalSearch input[type="search"]::-webkit-input-placeholder {
  color: #00467F !important;
  opacity: 1 !important;
}

#SC-GlobalSearch input[type="search"]::-moz-placeholder {
  color: #00467F !important;
  opacity: 1 !important;
}

#SC-GlobalSearch input[type="search"]:-ms-input-placeholder {
  color: #00467F !important;
  opacity: 1 !important;
}

/* ===================================================== */
/* 11. STORECONNECT OVERRIDES & UTILITY CLASSES */
/* ===================================================== */

.SC-Article_content {
    font-size: var(--sc-font-medium);
    line-height: 29px;
}

.SC-Banner_overlay {
    background-color: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.SC-ContentBlockContainer_body.sc-none {
    display: flex;
    flex-direction: column;
    gap: var(--sc-spacing-base);
}

.SC-FeaturedCategoryProducts_grid {
    display: grid;
    gap: var(--sc-spacing-base);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media only screen and (min-width: 768px) {
    .SC-FeaturedCategoryProducts_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 992px) {
    .SC-FeaturedCategoryProducts_grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

#SC-HeaderMenuSecondary {
    gap: var(--sc-spacing-large);
}

#SC-HeaderMenuSecondary svg {
    fill: none;
}

@media only screen and (max-width: 991.98px) {
    .SC-Count {
        position: absolute;
        right: -5px;
        top: 1px;
    }
}

@media only screen and (min-width: 992px) {
    .SC-Count {
        align-self: start;
        height: 20px;
        width: 20px;
        line-height: 19px;
    }
}

.SC-Booking_availabilities {
    height: auto;
    overflow-y: auto;
    max-height: 300px;
}

.SC-Booking_availabilities .sc-notice {
    min-height: 100px;
    padding: var(--sc-spacing-base);
    text-align: center;
}

.SC-BookingTimeSlot button {
    border-radius: 50px;
}

.SC-Menu.tier1.dropdown {
    font-weight: 600;
    font-size: var(--sc-font-small);
}

.SC-QuantityPicker_trigger {
    border-radius: 50px;
    font-size: var(--sc-font-tiny);
    font-weight: var(--sc-font-bold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.SC-Breadcrumb a {
    color: var(--sc-shade-dark);
    font-size: var(--sc-font-tiny);
}

@media only screen and (min-width: 768px) {
    .SC-Grid_sidebar {
        grid-column: sidebar;
        margin-right: var(--sc-spacing-large);
        width: 220px;
    }
}

.SC-Card-floating {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

#SC-accounts-show article {
    background-color: var(--sc-shade-lightest);
}

#SC-AccountNav {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: var(--sc-spacing-base);
}

/* Utility classes */
.sc-icon-map {
    fill: none;
}

.sc-icon-no-fill {
    fill: none;
}

.sc-color-white {
    color: white;
}

.litepicker .container__months .month-item-weekdays-row {
    gap: var(--sc-spacing-small);
}

.tns-nav button.tns-nav-active {
    background: white;
}

.sc-bg-transparent {
    background-color: transparent;
}

.sc-max-width:not(.sc-expand),
.sc-max-width:not(.sc-expanded) {
    max-width: var(--sc-max-width-md);
}

@media screen and (min-width: 992px) {
    .sc-max-width:not(.sc-expand),
    .sc-max-width:not(.sc-expanded) {
        max-width: var(--sc-max-width-lg);
    }
}

.sc-max-width-skinny {
    max-width: var(--sc-max-width-skinny);
}

.sc-grid {
    display: grid;
}

.sc-two-to-five-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (min-width: 768px) {
    .sc-two-to-five-column {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (min-width: 992px) {
    .sc-two-to-five-column {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media screen and (min-width: 1700px) {
    .sc-two-to-five-column {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .sc-one-third-two-thirds {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .sc-two-thirds-one-third {
        grid-template-columns: 1fr;
    }
}

.sc-two-to-three-column {
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 768px) {
    .sc-two-to-three-column {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .sc-lg\:ps-none {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (min-width: 1440px) {
    .sc-xxlg\:ps-none {
        padding-left: 0;
        padding-right: 0;
    }
}

.tns-controls button {
    width: 40px;
    height: 40px;
    border-radius: var(--sc-border-radius);
    background-size: 35%;
}

.tns-controls button:hover {
    background-color: transparent;
}

.tns-cards .tns-controls button {
    background-color: white;
    box-shadow: var(--sc-shadow);
}

.sc-rotate-270 {
    transform: rotate(270deg);
}

/* Custom Classes */
.video-container {
    min-height: 55vh;
}


/* ===================================================== */
/* 12. MOBILE RESPONSIVE STYLES */
/* Applied globally across all stores */
/* ===================================================== */

@media screen and (max-width: 768px) {
  /* Mobile menu adjustments */
  .SC-Menu_button {
    padding: .5rem .75rem;
  }

  /* Kill menu scale animation on mobile for account panel */
  ul.SC-Menu.dropdown.is-active[data-nav="account"],
  ul.SC-Menu.dropdown[data-nav="account"] {
    transform: none !important;
    transition: opacity .12s ease !important;
  }

  /* Hide footer login element on mobile */
  #SC-Footer .SC-Loginhidefootermobile {
    display: none;
  }
}