.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 24px;
    box-sizing: border-box;
    background: #fff;
    color: #1d1d1f;
    position: fixed;
    top: 0;
    left: 0;
    transition: top 0.3s ease, box-shadow 0.3s ease;
    z-index: 1200;
}
.navbar-left{
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-brand{
    font-size: 30px;
    font-weight: bold;
    color: #1d1d1f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.logo{
    height: 40px;
    width: auto;
}

.nav-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(17,17,17,.12);
    background: rgba(255,255,255,0.92);
    cursor: pointer;
    transition: box-shadow .2s ease, background .2s ease;
}
.nav-toggle:hover{
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    background: rgba(255,255,255,1);
}
.nav-toggle-bar{
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #111;
    transition: transform .2s ease, opacity .2s ease;
}
.header.mobile-open .nav-toggle-bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.header.mobile-open .nav-toggle-bar:nth-child(2){ opacity: 0; }
.header.mobile-open .nav-toggle-bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

#navbar-menu{
    display: flex;
    align-items: center;
    gap: 32px;
}
.navbar-links{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
}
.navbar-links.primary-links{ gap: 18px; }
.navbar-links.secondary-links{ margin-left: auto; gap: 12px; }
.navbar-links li{
    position: relative;
    display: inline-flex;
    align-items: center;
}
.navbar-links a,
.navbar-links button{
    color: #1d1d1f;
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    transition: color .2s ease;
    pointer-events: auto;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
    font-family: inherit;
}
.navbar-links button:hover,
.navbar-links a:hover,
.menu-trigger:hover{ color: #00bcd4; }
.navbar-links button:focus-visible,
.menu-trigger:focus-visible{ outline: 2px solid #0071e3; outline-offset: 2px; }

.menu-item{ position: relative; display: inline-block; }
.menu-trigger{
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: color .2s ease;
}

.navbar-links button::after,
.navbar-links a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #e74c3c;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.navbar-links button:hover::after,
.navbar-links button[aria-current="page"]::after,
.navbar-links a:hover::after,
.navbar-links a.active::after,
.navbar-links a[aria-current="page"]::after{
    transform: scaleX(1);
}

.navbar-brand a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #e74c3c;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.navbar-brand a:hover::after{
    transform: scaleX(1);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
}
body.no-scroll{ overflow: hidden; }

.video-container {
    position: relative;
    width: 100%;
}

.video-overlay {
    position: absolute;
    top: 100px; /* Lower the video logo */
    left: 10px;
    z-index: 10;
    text-align: center;
    will-change: transform;
}

.video-overlay img {
    width: 200px; /* Make the video logo bigger */
    height: auto;
}

.logo-description {
    display: block;
    margin-top: 3px; /* Adjust the space above the text */
    font-size: 24px; /* Increase font size */
    color: #1d1d1f; /* Green text */
    background-color: white; /* Black button background */
    padding: 15px 30px; /* Increase padding for a bigger button */
    border-radius: 15px; /* Rounded corners */
    width: fit-content; /* Adjust width to text */
    margin: 0 auto; /* Center align the button */
    cursor: default; /* Make it unclickable */
}

.event-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../imgs/metal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; /* Set to row to place elements side by side */
    align-items: center;
    justify-content: flex-start;
    color: white;
    text-align: center;

}

  /* Optional: Add a semi-transparent overlay to improve text readability */
  .event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Places the overlay behind the content */

  }

  /* Ensure content is above the overlay */
  .event-section > * {
    position: relative;
    z-index: 2; /* Places content above the overlay */
  }

  /* Styling for content elements */
  .content-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 20px; /* Space between this row and the marquee */
}

  .text-container {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px #000000; /* Add black outline effect */
    max-width: 600px; /* Ensure text doesn't stretch too wide */
    width: 100%; /* Allow text container to take full width */
    line-height: 1.5; /* Adjust line height for better readability */
    text-align: center; /* Centtexter align text */
    margin: 0 auto; /* Center the text container horizontally */
    display: flex;
    flex: 1;
    justify-content: flex-start; /* Align text to the left */
    align-items: center; /* Center the content vertically */
    margin-right: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;

}

.text-container.visible {
    opacity: 1;
    transform: scale(1);
  }
.text-with-outline h2{
    outline: 10px solid black;
    color: white; /* Ensures visibility */
    text-shadow:
        -2px -2px 0 black,
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black; /* Creates an outline effect */
}


.text-background-image {
    position: absolute;
    top: -20px;
    left: -70px;
    width: 130%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container area */
    z-index: -1; /* Ensures the image stays behind the text */
}

.video-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
}

.video-button {
    background-color: #27ae60;
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.video-button:hover {
    background-color: #fff; /* Background turns white on hover */
    color: #28a745; /* Text color turns green on hover */
}

.video-button:hover a {
    color: #28a745; /* Text inside link turns green */
}

.video-button a {
    color: white;
    text-decoration: none;
    display: inline-block;
}

.event-image-container {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .event-image {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
  }

  .event-image.visible {
    opacity: 1;
    transform: translateX(0);
  }

 .marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 10px;


}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    width: auto;
    align-items: center;
}

.marquee-container_2 {
    width: 100%;
    overflow: hidden;
    padding: 10px 10;

}

.marquee-content_2 {
    display: flex;
    white-space: nowrap;
    animation: scrollReverse 30s linear infinite;
    width: auto;
    align-items: center;
}
.marquee-image {
    flex-shrink: 0; /* Prevent images from shrinking */
    display: flex; /* Ensure the image div behaves as expected */
    align-items: center; /* Center the image inside the div */
    justify-content: center;
    padding-right: 25px;
    padding-bottom: 20px;
    overflow: hidden; /* Clip child image to border radius */
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    padding: 0 20px; /* Padding between items */
}

/* ===== Product Quick-View Modal (unified across site) ===== */
.product-modal {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: min(960px, 96vw);
    width: 100%;
    margin: 8vh auto;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,.28);
    transform: translateY(10px);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
}
.product-modal[open] { opacity: 1; transform: translateY(0); }
.product-modal::backdrop {
    background: rgba(17,17,17,.45);
    backdrop-filter: blur(4px);
}

.product-modal__container { position: relative; }
.product-modal__content {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.product-modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 0;
}
@media (max-width: 860px) {
    .product-modal__layout { grid-template-columns: 1fr; }
}

.product-modal__media {
    background: linear-gradient(180deg,#f6f7f8,#eceef1);
    display: grid;
    place-items: center;
    min-height: 420px;
}
.product-modal__media img { width: 100%; height: auto; object-fit: contain; }

.product-modal__details { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.product-modal__header { display: grid; gap: 10px; }
.product-modal__vendor { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #6b7280; }
.product-modal__title { font-size: clamp(20px, 2.4vw, 28px); line-height: 1.15; margin: 0; color: #111; }
.product-modal__price-container { display: flex; align-items: baseline; gap: 10px; font-size: 20px; font-weight: 700; }
.product-modal__compare-price { font-weight: 500; font-size: 16px; color: #9ca3af; text-decoration: line-through; }

.product-modal__description { max-height: 160px; overflow: auto; border-top: 1px solid #f0f0f0; padding-top: 12px; }
.product-modal__description-text { color: #4b5563; font-size: 14px; line-height: 1.5; }
.product-modal__description-text p { margin: 0 0 .6rem; }

shopify-variant-selector { display: block; border: 1px solid #eee; border-radius: 12px; padding: 12px; }

.product-modal__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
@media (max-width: 520px) { .product-modal__buttons { grid-template-columns: 1fr; } }
.product-modal__add-button,
.product-modal__buy-button {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #111;
}
.product-modal__add-button { background: #111; color: #fff; }
.product-modal__add-button:hover { background: #222; }
.product-modal__buy-button { background: #fff; color: #111; }
.product-modal__buy-button:hover { background: #f6f6f6; }
.product-modal__add-button:disabled,
.product-modal__buy-button:disabled { opacity: .4; cursor: not-allowed; }

.product-modal__close-container { position: absolute; right: 10px; top: 10px; z-index: 2; }
.product-modal__close {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 10px;
    width: 36px; height: 36px; display: grid; place-items: center; cursor: pointer;
    color: #111;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.product-modal__close:hover { background: #fff; }

.marquee-image img {
    width: 150px;
    height: auto;
    display: block;
    border-radius: 10px;
}

@keyframes scroll {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50%) translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-with-outline {
        font-size: 1.5rem;
    }

    .marquee-content span {
        font-size: 1rem;
    }
}

@keyframes scrollReverse {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(0) translateY(0); }
}

@media (max-width: 768px) {
    .marquee-content_2 span {
        font-size: 1rem;
    }
}

.product-module_content {
    background-image: url('../imgs/green_fields.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

:root { --nav-h: 60px; --ease: cubic-bezier(.25,.1,.25,1); --mega-bg: rgba(255,255,255,.97); }

/* Backdrop to dim + blur the page when menu is open */
.nav-backdrop{
  position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 220ms var(--ease);
  z-index: 1100;
}
.nav-open .nav-backdrop,
.header.mobile-open .nav-backdrop{ opacity: 1; pointer-events: auto; }

/* Mega panel container */
.mega{
  position: fixed; left: 0; right: 0; top: var(--nav-h);
  display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 48px; max-width: none; margin: 0; width: 100%; padding: 28px clamp(16px, 6vw, 64px) 40px;
  background: var(--mega-bg);
  border-bottom: 1px solid #e6e6e6;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  z-index: 1205; /* above backdrop and navbar */
}
.mega[hidden]{ display: grid; }/* keep grid metrics but hidden toggled via attribute */
.nav-open .mega[aria-current="open"]{ transform: translateY(0); opacity: 1; pointer-events: auto; }

.mega .kicker{ color:#6e6e73; font-size:13px; margin:0 0 12px; }
.mega a{ display:block; padding:6px 0; font-size:18px; font-weight:600; color:#1d1d1f; text-decoration:none; }
.mega.mega-search a{ color: inherit; }
.mega a:hover{ text-decoration: underline; }

@media (max-width: 900px){
  .navbar{ padding: 10px 18px; }
  .nav-toggle{ display: flex; }
  #navbar-menu{
    position: fixed;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    padding: 24px 20px 40px;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-120%);
    transition: transform .26s var(--ease);
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
    z-index: 1204;
  }
  .header.mobile-open #navbar-menu{ transform: translateY(0); }
  .navbar-links{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .navbar-links.secondary-links{
    margin-left: 0;
    gap: 6px;
  }
  .navbar-links li{ width: 100%; }
  .navbar-links button,
  .navbar-links a{
    width: 100%;
    text-align: left;
    padding: 12px 0;
  }
  .mega{
    position: static;
    grid-template-columns: 1fr;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    gap: 12px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .mega[hidden]{ display: none; }
  .mega[aria-current="open"]{
    display: block;
    padding: 12px 4px 0;
  }
}

/* === Sleek Apple‑style search panel === */
.mega.mega-search{
  background: rgba(255,255,255,0.97);
  color:#1d1d1f;
  border-bottom: 1px solid #e6e6e6;
}
/* center column width for search */
.mega-search .search-row,
.mega-search .quick-links{
  width: min(900px, 92vw);
  margin: 0 auto;
}
.mega-search .search-row{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}
/* subtle underline instead of a box */
.mega-search .search-row::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:1px; background: rgba(0,0,0,0.12);
}
.mega-search .search-icon{
  width:22px; height:22px; opacity:.7; flex: 0 0 auto;
}
.mega-search input[type="search"]{
  flex:1;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  color: #1d1d1f;
  caret-color: #1d1d1f;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: .1px;
}
.mega-search input[type="search"]::placeholder{ color: rgba(0,0,0,.45); }
/* remove webkit search decorations */
.mega-search input[type="search"]::-webkit-search-decoration,
.mega-search input[type="search"]::-webkit-search-cancel-button,
.mega-search input[type="search"]::-webkit-search-results-button,
.mega-search input[type="search"]::-webkit-search-results-decoration{ -webkit-appearance: none; }

.mega-search .quick-links{
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.mega-search .quick-links .kicker{
  color: rgba(0,0,0,.55);
  font-size: 13px;
  margin: 0 0 4px;
}
.mega-search .quick-links a{
  color:#1d1d1f;
  text-decoration: none;
  opacity:.9;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.mega-search .quick-links a::before{
  content:"↘";
  font-size: 14px;
  opacity:.6;
  transform: translateY(-1px);
}
/* Make Quick Links buttons look like links */
.mega-search .quick-links button{
  background: none;
  border: 0;
  padding: 4px 0;
  margin: 0;
  color:#1d1d1f;
  opacity:.9;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}
.mega-search .quick-links button::before{
  content:"↘";
  font-size: 14px;
  opacity:.6;
  transform: translateY(-1px);
}
.mega-search .quick-links button:hover{ opacity:1; text-decoration: underline; }
.mega-search .quick-links a:hover{ opacity:1; text-decoration: underline; }

/* === Homepage Product Grid (Adidas-style) === */
.product-grid{
  width: min(1600px, 98vw);
  margin: 96px auto 48px; /* top | sides | bottom */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid { scroll-margin-top: 80px; }
.product-card{ text-align: left; }
.product-media{
  display: block;
  border-radius: 6px;
  overflow: hidden;
  line-height: 0;
  position: relative;
}
/* Hover border on product */
.product-media::after{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid #1d1d1f;          /* border color */
  border-radius: 6px;                 /* match image radius */
  opacity:0;
  transform: scale(0.98);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;               /* don't block clicks */
}
.product-card:hover .product-media::after{
  opacity:1;
  transform: scale(1);
}
.product-card img{
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.product-media:hover img{ transform: scale(1.02); }
.product-card:hover .product-media{
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.product-title{
  margin: 12px 0 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #000000;
}
.product-desc{
  margin: 0 0 12px;
  font-size: 14px;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-link{
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
}


.product-link:hover{ color: #0071e3; }

/* Section title bar (like screenshot) */
.section-bar{
  width: min(1600px, 98vw);
  margin: 24px auto 8px;
  background: transparent;         /* remove the heavy black bar */
  color: inherit;
  border-radius: 0;
  padding: 0 4px;                   /* small horizontal breathing room */
  position: relative;
}
.section-title{
  margin: 0;
  color: #1d1d1f;                  /* match site heading color */
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: .2px;
}
.section-title::after{
  content:"";
  display:block;
  height:1px;
  background: rgba(0,0,0,.08);
  margin-top: 10px;
}

/* === Category grid under product grid === */
.category-grid{
  width: min(1600px, 98vw);
  margin: 12px auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card{
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4; /* taller portrait-like tiles */
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.category-card::after{
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.45) 100%);
  opacity: .85; pointer-events: none;
  transition: opacity .25s ease;
}
.category-title{
  position: absolute; left: 14px; bottom: 12px;
  color: #000000; font-size: clamp(16px, 2vw, 22px); font-weight: 800; letter-spacing: .3px;
  z-index: 1;
}
.category-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
}
.category-card:hover img{ transform: scale(1.03); }
.category-card:hover::after{ opacity: 1; }

/* Reuse hover border style */
.category-card::before{
  content:"";
  position:absolute; inset:0;
  border: 2px solid #1d1d1f;
  border-radius: 6px;
  opacity:0; transform: scale(.985);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events:none;
}
.category-card:hover::before{ opacity:1; transform: scale(1); }

/* Responsive */
@media (max-width: 900px){
  .category-grid{ grid-template-columns: 1fr; }
  .category-card{ aspect-ratio: 3 / 4; }
}

/* ======= Footer ======= */
.site-footer{
  background: #121212;
  color: #d6d6d6;
  padding: 40px 16px 24px;
  margin-top: 0;
}
.site-footer a{ color: #d6d6d6; text-decoration: none; }
.site-footer a:hover{ text-decoration: underline; }
.footer-inner{ width: min(1200px, 92vw); margin: 0 auto; }
.footer-cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 24px;
}
.footer-col h4{
  color: #fff;
  font-size: 14px;
  letter-spacing: .4px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; }
.footer-col li{ margin: 8px 0; font-size: 14px; }
.footer-small{ margin: 0 0 8px; font-size: 14px; }

.app-badges{ display: flex; gap: 12px; }
.app-badge{
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px 12px; border-radius: 8px;
  font-size: 13px; color: #fff;
  background: rgba(255,255,255,.04);
}
.app-icon{ font-size: 14px; opacity: .8; }
.footer-space-top{ margin-top: 14px; }

.footer-divider{
  border: 0; height: 1px;
  background: rgba(255,255,255,.08);
  margin: 18px 0;
}

.footer-bottom{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.footer-social{ display: flex; gap: 16px; }
.social-link{ width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; color:#cfcfcf; }
.social-link:hover{ color: #fff; }
.footer-country{ display: flex; justify-content: center; }
.country-pill{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04); color:#fff; cursor: default;
}
.flag{ width: 18px; height: 18px; border-radius: 50%; display: inline-block; background: radial-gradient(circle at 50% 50%, #d32f2f 0 40%, #fff 42%); box-shadow: 0 0 0 1px rgba(0,0,0,.3) inset; }

.footer-legal{ text-align: right; font-size: 12px; }
.footer-legal a{ margin-left: 12px; }

@media (max-width: 900px){
  .footer-cols{ grid-template-columns: 1fr; }
  .footer-bottom{ grid-template-columns: 1fr; text-align: center; }
  .footer-legal{ text-align: center; }
  .footer-country{ justify-content: center; }
}
/* === About / Company Description Band === */
.about-band{
    background: #121212;
    color: #e9e9e9;
    padding: 56px 16px 40px;
}
.about-inner{
    width: min(900px, 92vw);
    margin: 0 auto;
    text-align: left;
}
.about-title{
    margin: 0 0 18px;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}
.about-paragraph{
    margin: 0 0 14px;
    line-height: 1.7;
    font-size: 15px;
    color: #d6d6d6;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}
.about-logo{
    display: block;
    margin: 22px auto 0;
    width: 44px;
    height: auto;
    opacity: .95;
}

/* === CTA Join Band === */
.cta-band{
    background: #0f73b6; /* blue bar like the screenshot */
    color: #fff;
    padding: 18px 16px;
    margin-bottom: 0;
}
.cta-inner{
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}
.cta-text{
    font-size: clamp(16px, 1.6vw, 18px);
    letter-spacing: .08em;
    font-weight: 800;
}
.cta-button{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    color: #0f151a;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 0 rgba(0,0,0,.15) inset;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.cta-button:hover{
    transform: translateY(-1px);
    box-shadow: 0 3px 0 rgba(0,0,0,.18) inset;
    opacity: .95;
}

/* === Scroll-in animations for hero video overlay === */
:root{
  --reveal-duration: .6s;
  --reveal-ease: cubic-bezier(.22,.61,.36,1);
}
.video-overlay .logo-small,
.video-overlay .logo-description{
  opacity: 0;
  transform: translateY(var(--reveal-translate,24px));
  transition: transform var(--reveal-duration) var(--reveal-ease), opacity var(--reveal-duration) var(--reveal-ease);
  will-change: transform, opacity;
}
@media (max-width: 600px){
  .video-overlay .logo-small,
  .video-overlay .logo-description{
    --reveal-translate: 16px;
  }
}

/* When overlay is toggled visible by JS (IntersectionObserver), reveal with a slight stagger */
.video-overlay.visible .logo-small{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .05s;
}
.video-overlay.visible .logo-description{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .18s;
}

/* Accessibility: respect user Reduced Motion preference */
@media (prefers-reduced-motion: reduce){
  .video-overlay .logo-small,
  .video-overlay .logo-description{
    transition: none;
    transform: none;
    opacity: 1;
  }
  .video-overlay{ transform: none !important; }
}

/* === Generic scroll-reveal utilities (sections) === */
[data-reveal] { --stagger-step: 90ms; --base-delay: 60ms; }
[data-reveal] .reveal-item{
  opacity: 0;
  transform: translateY(var(--reveal-distance,18px));
  transition: opacity var(--reveal-duration,.6s) var(--reveal-ease,var(--ease)), transform var(--reveal-duration,.6s) var(--reveal-ease,var(--ease));
  will-change: transform, opacity;
}
[data-reveal].is-visible .reveal-item{
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * var(--stagger-step) + var(--base-delay));
}

/* Variants */
[data-reveal][data-variant="scale"] .reveal-item{ transform: scale(.98); }
[data-reveal][data-variant="scale"].is-visible .reveal-item{ transform: none; }
[data-reveal][data-variant="fade"] .reveal-item{ transform: none; }

/* Mobile: reduce travel distance */
@media (max-width: 600px){
  [data-reveal]{ --reveal-distance: 12px; }
}

/* Optional variants: add `data-reveal="left"` or "right" on a section for directional motion */
[data-reveal="left"] .reveal-item{ transform: translateX(-24px); }
[data-reveal="right"] .reveal-item{ transform: translateX(24px); }
[data-reveal="left"].is-visible .reveal-item,
[data-reveal="right"].is-visible .reveal-item{ transform: none; }

@media (prefers-reduced-motion: reduce){
  [data-reveal] .reveal-item{ opacity: 1; transform: none; transition: none; }
}


/* === Nike‑style Categories Carousel (non-destructive) === */
.category-carousel{ position: relative; width: min(1600px, 98vw); margin: 12px auto 64px; overflow: hidden; }
.category-carousel.is-dark{ background: transparent; padding: 18px 12px 24px; border-radius: 10px; }
.category-track{ display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 0 6px 6px; }
.category-track::-webkit-scrollbar{ height: 10px; }
.category-track::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.18); border-radius: 6px; }

/* Each item contains the image link and a caption below */
.category-item{ flex: 0 0 calc((100% - 48px)/3); scroll-snap-align: start; color: #fff; }
@media (max-width: 900px){ .category-item{ flex-basis: 100%; } }

/* Make the category cards wide like the screenshot */
.category-item .category-card{
  display:block; border-radius: 8px; overflow:hidden;
  aspect-ratio: var(--cat-aspect, 3/4); position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.category-item .category-card::after{ content:""; position:absolute; inset:0; background: none; }
.category-item .category-card:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.28); }
/* hide the in-card overlay title so we can show it as a caption below */
.category-item .category-card .category-title{ display: none; }

/* Below-image caption */
.category-caption{ margin-top: 12px; font-size: clamp(16px, 1.6vw, 22px); font-weight: 800; color: #1d1d1f; letter-spacing: .02em; }

/* Circular arrow controls overlayed on the right */
.cat-controls{ position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: inline-flex; gap: 10px; z-index: 2; }
.cat-controls .cat-prev, .cat-controls .cat-next{
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(0,0,0,.5);
  color: #fff; font-size: 22px; line-height: 1; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
}
.cat-controls .cat-prev:hover, .cat-controls .cat-next:hover{ transform: translateY(-1px); background: rgba(0,0,0,.64); border-color: rgba(255,255,255,.34); }
.cat-controls .cat-prev:disabled, .cat-controls .cat-next:disabled{ opacity: .4; cursor: default; transform: none; }
/* === Partners Page (logo grid with clickable tiles) === */
.partners-page{ padding-top: calc(var(--nav-h, 60px) + 20px); }

.partners-grid{
    width: min(1600px, 98vw);
    margin: 12px auto 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1100px){ .partners-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px){ .partners-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .partners-grid{ grid-template-columns: 1fr; } }

.partner-card{ text-decoration: none; color: inherit; display: block; }

.partner-media{
    position: relative;
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 3 / 2; /* roomy tile for varied logo shapes */
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 18px; /* ensures logos aren’t cramped */
    overflow: hidden;
    transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
/* Hover border effect consistent with product cards */
.partner-media::after{
    content: ""; position: absolute; inset: 0; border: 2px solid #1d1d1f; border-radius: 10px;
    opacity: 0; transform: scale(.985); pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}
.partner-card:hover .partner-media{ box-shadow: 0 10px 24px rgba(0,0,0,.12); transform: translateY(-2px); border-color: #d9d9d9; }
.partner-card:hover .partner-media::after{ opacity: 1; transform: scale(1); }

.partner-media img{
    max-width: 90%;
    max-height: 90%;
    width: auto; height: auto;
    object-fit: contain; /* preserve logo aspect ratio */
    display: block;
}

.partner-caption{
    margin: 10px 2px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #444;
}
