/* ========================================
   EESAGO Sports Uniforms — Global Styles
   Colors matched from EESAGO logo:
   Black: #000000 | Gold: #D1A242
   Gold highlight: #FEF9B6 | Gold shadow: #7B541A
   ======================================== */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000;
  color: #D1A242;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section titles centered site-wide for consistency */
section h2 {
  text-align: center;
}

/* Text directly under a section headline defaults to centered; everything else stays left.
   Scoped to h1/h2 (section titles) only — h3 (card/item titles) keep their own left-aligned
   body text for readability inside narrow cards. */
h1 + p,
h2 + p {
  text-align: center;
}

/* Header */
header {
  background-color: #000000;
  padding: 20px 0;
  border-bottom: 2px solid #D1A242;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 141px;
  width: auto;
  display: block;
  vertical-align: middle;
  animation: logo-wave 3s ease-in-out infinite;
  transform-origin: center center;
}

.footer-logo-img {
  height: 141px;
  width: auto;
  display: block;
  margin-bottom: 10px;
  animation: logo-wave 3s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes logo-wave {
  0%, 100% {
    transform: scale(1) rotate(0deg) translateY(0);
    filter: brightness(1) drop-shadow(0 0 0px rgba(209, 162, 66, 0));
  }
  25% {
    transform: scale(1.04) rotate(-1deg) translateY(-2px);
    filter: brightness(1.15) drop-shadow(0 0 8px rgba(209, 162, 66, 0.3));
  }
  50% {
    transform: scale(1.06) rotate(0deg) translateY(-3px);
    filter: brightness(1.25) drop-shadow(0 0 12px rgba(209, 162, 66, 0.5));
  }
  75% {
    transform: scale(1.04) rotate(1deg) translateY(-2px);
    filter: brightness(1.15) drop-shadow(0 0 8px rgba(209, 162, 66, 0.3));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-img,
  .footer-logo-img {
    animation: none;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 102px;
  }
  .footer-logo-img {
    height: 102px;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  color: #D1A242;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  color: #FEF9B6;
  transform: translateY(-2px);
}

/* Active nav link — current page */
nav a.active {
  color: #FEF9B6;
  position: relative;
  padding-bottom: 4px;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #D1A242, #FEF9B6, #D1A242);
}

/* Sections */
section {
  padding: 60px 0;
}

section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #D1A242;
}

section h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: #D1A242;
}

section p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 40%, #1a1505 70%, #000000 100%),
              radial-gradient(ellipse at 30% 50%, rgba(209, 162, 66, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(209, 162, 66, 0.05) 0%, transparent 50%);
  background-color: #000000;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle gold diagonal pattern overlay on hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(209, 162, 66, 0.02) 20px,
    rgba(209, 162, 66, 0.02) 21px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #D1A242;
  color: #000000;
}

.btn-primary:hover {
  background-color: #FEF9B6;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #D1A242;
  border: 2px solid #D1A242;
  margin-left: 15px;
}

.btn-secondary:hover {
  background-color: #D1A242;
  color: #000000;
}

/* Product Grid */
/* ---- Disclaimer note ---- */
.disclaimer-note {
  background-color: #0a0a0a;
  border: 1px solid #7B541A;
  border-left: 4px solid #D1A242;
  border-radius: 4px;
  padding: 14px 18px;
  margin: 20px 0 10px;
  color: transparent;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.disclaimer-note:hover,
.disclaimer-note:focus-within,
.disclaimer-note:active {
  color: #D1A242;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ---- Contact page layout: enquiry form left, social media right ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- About Us / Why Choose EESAGO side-by-side layout ---- */
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 900px) {
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- Product Card ---- */
.product-card {
  background-color: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

/* Hover: lift + gold border + gold glow */
.product-card:hover {
  transform: translateY(-8px);
  border-color: #D1A242;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(209, 162, 66, 0.25);
}

/* ---- Gallery image zoom on hover ---- */
.product-gallery {
  position: relative;
  overflow: hidden;
}

.gallery-main {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.4s ease;
}

/* Slight zoom + brightness boost on card hover */
.product-card:hover .gallery-main {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Gallery overlay removed to fix image overlap */

/* ---- Thumbnail strip ---- */
.gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  background-color: #000000;
  overflow-x: auto;
  border-top: 1px solid #1a1a1a;
  transition: border-color 0.4s ease;
}

.product-card:hover .gallery-thumbs {
  border-color: #D1A242;
}

.gallery-thumbs img:hover {
  border-color: #D1A242 !important;
}

/* ---- Card text area ---- */
.product-card h3 {
  padding: 15px 15px 5px;
  font-size: 1.3rem;
  color: #D1A242;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: #FEF9B6;
}

.product-card p {
  padding: 0 15px;
  margin-bottom: 0;
}

/* ---- Enquire button slide-in ---- */
.product-card .btn {
  margin: 0 15px 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.product-card .btn-primary {
  transform: translateY(0);
}

.product-card:hover .btn-primary {
  background-color: #D1A242;
  box-shadow: 0 4px 15px rgba(209, 162, 66, 0.4);
}

.product-card .btn-primary:hover {
  background-color: #FEF9B6;
  transform: translateY(-2px);
}

/* ---- Top gold accent line (slides in on hover) ---- */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #D1A242, #FEF9B6, #D1A242);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

.product-card:hover::before {
  width: 100%;
}

/* Form Styles */
form {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
}

form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form select,
form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #2a2a2a;
  border-radius: 5px;
  background-color: #000000;
  color: #D1A242;
  font-family: inherit;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #D1A242;
  box-shadow: 0 0 5px rgba(209, 162, 66, 0.4);
}

form textarea {
  resize: vertical;
}

form input[type="file"] {
  padding: 10px 0;
}

form input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #D1A242;
}

/* ========================================
   Index Page: Feature Cards & Sport Tiles
   ======================================== */

/* ---- Feature cards (Why Choose EESAGO) ---- */
.feature-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #D1A242, #FEF9B6, #D1A242);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #D1A242;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(209, 162, 66, 0.25);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-card h3 {
  color: #D1A242;
  margin-bottom: 15px;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

/* Compact variant for short numbered-step labels (e.g. See Your Kit process) */
.feature-card-compact {
  padding: 20px 12px;
}

.feature-card-compact h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.feature-card:hover h3 {
  color: #FEF9B6;
}

.feature-card p {
  color: #D1A242;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #FEF9B6;
}

/* ---- Sport tiles (Our Sports) ---- */
.sport-tile {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.sport-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #D1A242, #FEF9B6, #D1A242);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

.sport-tile:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #D1A242;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(209, 162, 66, 0.25);
}

.sport-tile:hover::before {
  width: 100%;
}

.sport-tile h3 {
  color: #D1A242;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.sport-tile:hover h3 {
  color: #FEF9B6;
}

/* ---- CTA cards (Ready to Get Started) ---- */
.cta-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.cta-card:hover {
  border-color: #D1A242;
  box-shadow: 0 0 20px rgba(209, 162, 66, 0.2);
}

/* ========================================
   Contact Page: Enhanced Brand Icons
   ======================================== */

.brand-icon-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.brand-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-color: #0a0a0a;
  border: 1px solid #2a2a2a;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.brand-icon-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #D1A242, #FEF9B6, #D1A242);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

.brand-icon-link:hover {
  transform: translateY(-5px) scale(1.08);
  border-color: #D1A242;
  background-color: #000000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5),
              0 0 15px rgba(209, 162, 66, 0.3);
}

.brand-icon-link:hover::before {
  width: 100%;
}

.brand-icon {
  display: block;
  transition: filter 0.4s ease;
}

.brand-icon-link:hover .brand-icon {
  filter: brightness(1.15);
}

/* Footer */
footer {
  background-color: #000000;
  padding: 50px 0 20px;
  border-top: 2px solid #D1A242;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

footer h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #D1A242;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 10px;
}

footer a {
  color: #D1A242;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #FEF9B6;
  text-decoration: underline;
}

/* ========================================
   WhatsApp Buttons
   ======================================== */

/* Floating WhatsApp button (bottom-right, always visible) */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000000;
  color: #D1A242;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.wa-float:hover {
  background: #D1A242;
  color: #000000;
  box-shadow: 0 6px 20px rgba(209, 162, 66, 0.5);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #D1A242;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0;   }
}

/* Inline WhatsApp icon (next to phone number) */
.wa-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000;
  color: #D1A242;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}

.wa-inline svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.wa-inline:hover {
  background: #D1A242;
  color: #000000;
  box-shadow: 0 4px 14px rgba(209, 162, 66, 0.5);
}

/* ========================================
   Catalogue: Filter & Lightbox
   ======================================== */

/* Filter button active state */
.filter-btn {
  font-size: 0.95rem !important;
  padding: 8px 18px !important;
}

/* Lightbox */
#lightbox img {
  box-shadow: 0 0 40px rgba(209, 162, 66, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  nav ul {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }

  .btn-secondary {
    margin-left: auto;
  }

  .filter-btn {
    font-size: 0.85rem !important;
    padding: 6px 14px !important;
  }

  .gallery-main {
    height: 200px;
  }

  /* Smaller WhatsApp button on mobile to avoid overlapping content */
  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  /* Add bottom padding so floating button doesn't cover content */
  body {
    padding-bottom: 70px;
  }

  /* Full-width form inputs on mobile */
  form input[type="text"],
  form input[type="email"],
  form input[type="tel"],
  form input[type="number"],
  form select,
  form textarea,
  form input[type="file"] {
    width: 100%;
    box-sizing: border-box;
  }

  /* Full-width newsletter input and button on mobile */
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form .btn {
    width: 100%;
    max-width: none;
  }

  /* Prevent WhatsApp button overlapping catalogue filter buttons */
  .filter-bar,
  .filters,
  .product-filters {
    padding-right: 64px;
  }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #D1A242;
  box-shadow: 0 8px 25px rgba(209, 162, 66, 0.15);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: #D1A242;
  opacity: 0.3;
  position: absolute;
  top: 5px;
  left: 15px;
  line-height: 1;
}

.testimonial-text {
  color: #D1A242;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: #FEF9B6;
  font-weight: 600;
  margin-top: 20px;
  font-size: 0.95rem;
}

.testimonial-role {
  color: #7B541A;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ========================================
   Newsletter Section
   ======================================== */
.newsletter {
  background-color: #0a0a0a;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 30px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 12px 20px;
  font-size: 1rem;
  border: 1px solid #D1A242;
  border-radius: 6px;
  background-color: #000000;
  color: #D1A242;
}

.newsletter-form input[type="email"]::placeholder {
  color: #7B541A;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #FEF9B6;
  box-shadow: 0 0 10px rgba(254, 249, 182, 0.2);
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: #D1A242;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #D1A242;
  background-color: #0a0a0a;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #111111;
}

.faq-question .faq-icon {
  font-size: 1.5rem;
  color: #D1A242;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: #D1A242;
  line-height: 1.7;
  font-size: 1rem;
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  border-top: 2px solid #D1A242;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: #D1A242;
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-banner p a {
  color: #FEF9B6;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 12px 20px;
  font-size: 0.95rem;
}

/* ========================================
   Mobile Hamburger Menu
   ======================================== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #D1A242;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  header {
    position: relative;
    z-index: 1002;
  }

  header .container {
    position: relative;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    overflow-y: auto;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    padding-top: 220px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  nav.open {
    visibility: visible;
    opacity: 1;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  nav a.active::after {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ========================================
   Print Styles (Sizing Guide)
   ======================================== */
@media print {
  header, footer, .wa-float, .cookie-banner, .hamburger, nav,
  .btn, .print-hide {
    display: none !important;
  }

  body {
    background-color: #ffffff !important;
    color: #000000 !important;
  }

  section {
    padding: 10px 0;
  }

  section * {
    color: #000000 !important;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }

  table th, table td {
    border: 1px solid #000000;
    padding: 8px;
    color: #000000 !important;
    background-color: #ffffff !important;
  }

  .container {
    max-width: 100%;
  }

  .sizing-table {
    page-break-inside: avoid;
    margin-bottom: 15px;
  }

  h2, h3 {
    color: #000000 !important;
  }
}

.print-button {
  background-color: #D1A242;
  color: #000000;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.print-button:hover {
  background-color: #FEF9B6;
  transform: translateY(-2px);
}

/* ========================================
   Product Enquire Button (Catalogue)
   ======================================== */
.product-enquire {
  display: inline-block;
  background: transparent;
  color: #D1A242;
  border: 1px solid #D1A242;
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.product-enquire:hover {
  background-color: #D1A242;
  color: #000000;
  border-color: #FEF9B6;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */


















@media (max-width: 768px) {
  
  
}

/* ============================================================
   NEWS & UPDATES SECTION
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.news-card {
  background-color: #0a0a0a;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #D1A242, #FEF9B6, #D1A242);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: #D1A242;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5),
              0 0 15px rgba(209, 162, 66, 0.2);
}

.news-card:hover::before {
  width: 100%;
}

.news-card-date {
  display: inline-block;
  background-color: #1a1a1a;
  color: #D1A242;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #D1A242;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.news-card-tag {
  display: inline-block;
  color: #7B541A;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.news-card h3 {
  color: #D1A242;
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-card:hover h3 {
  color: #FEF9B6;
}

.news-card p {
  color: #D1A242;
  font-size: 0.95rem;
  line-height: 1.7;
}

.news-card-body {
  padding: 25px;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ---- Gallery image caption ---- */
.gallery-caption {
  padding: 0 15px;
  margin-top: 6px !important;
  margin-bottom: 0;
  text-align: center;
  min-height: 1.2em;
}

/* ---- Text Logo ---- */






@media (max-width: 768px) {
  
  
}
