﻿  :root {
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --primary: #0f172a;
    --accent: #e11d48;
    --accent-hover: #be123c;
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #881337 100%);
    --gradient-accent: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.1);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
    --nav-height: 80px;
  }

  /* Dark Mode Variables */
  body.dark-mode {
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --text-main: #cbd5e1;
    --text-dark: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #334155;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.3);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.5);
  }
  
  body.dark-mode .navbar, body.dark-mode .dropdown-menu {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(255, 255, 255, 0.05);
  }
  body.dark-mode .product-card .label {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
  }
  body.dark-mode .tag, body.dark-mode .service-card, body.dark-mode .product-card, body.dark-mode .country, body.dark-mode .why-item {
    border-color: rgba(255, 255, 255, 0.05);
  }
  body.dark-mode section:nth-child(even) {
    border-color: rgba(255, 255, 255, 0.02);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
  body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-main); 
    background: var(--bg-white); 
    line-height: 1.6;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; color: var(--text-dark); }
  a { color: var(--accent); text-decoration: none; transition: all 0.3s ease; }

  /* Navigation Bar */
  .navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  .navbar.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.98);
  }
  .nav-container {
    max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-img { height: 48px; width: auto; border-radius: 8%; object-fit: contain; }
  .logo-text { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
  .logo-text span { color: var(--accent); }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { color: var(--text-main); font-weight: 500; font-size: 1rem; }
  .nav-links a:hover, .nav-links a.active { color: var(--accent); }
  
  /* Dropdown Menu */
  .nav-item-dropdown { position: relative; }
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 250px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.25s ease;
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
  }
  .dropdown-menu a:last-child {
    margin-bottom: 0;
  }
  .dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    border-radius: 4px;
  }
  .dropdown-menu a:hover, .dropdown-menu a.active {
    background: var(--bg-light);
    color: var(--accent);
    padding-left: 22px;
  }
  .dropdown-menu a:hover::before, .dropdown-menu a.active::before {
    transform: scaleY(0.6);
  }

  .theme-toggle { 
    background: none; border: none; cursor: pointer; color: var(--text-main); 
    padding: 8px; display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; transition: background 0.3s;
  }
  .theme-toggle:hover { background: var(--bg-light); color: var(--accent); }
  .theme-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  body.dark-mode .moon-icon { display: none; }
  body.dark-mode .sun-icon { display: block; }
  body:not(.dark-mode) .moon-icon { display: block; }
  body:not(.dark-mode) .sun-icon { display: none; }

  /* Back to Top Button */
  .back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px;
    background: var(--gradient-accent); color: #fff; border: none; border-radius: 50%;
    cursor: pointer; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; z-index: 999;
  }
  .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .back-to-top:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .back-to-top svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
  }
  .nav-cta:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(225,29,72,0.3); }

  /* Utilities */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
  .section-title span { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .section-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; font-weight: 400; max-width: 600px; }
  .divider { width: 60px; height: 6px; background: var(--gradient-accent); margin: 16px 0 32px; border-radius: 4px; }
  
  /* Scroll Reveal Animation */
  .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
  .reveal.active { opacity: 1; transform: translateY(0); }

  /* Header / Hero */
  .hero {
    position: relative;
    background: var(--gradient-hero);
    color: #fff;
    padding: calc(120px + var(--nav-height)) 20px 120px;
    text-align: center;
    overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.08) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(225,29,72,0.15) 0%, transparent 40%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #fff;
  }
  .hero h1 { 
    font-size: 3.8rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 24px; color: #fff; line-height: 1.1; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .hero p { font-size: 1.25rem; font-weight: 300; opacity: 0.9; max-width: 750px; margin: 0 auto 36px; }
  .hero .cta { 
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gradient-accent); color: #fff; padding: 18px 42px; 
    border-radius: var(--radius-pill); font-weight: 700; font-size: 1.1rem; 
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3); transition: all 0.3s ease;
  }
  .hero .cta:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(225, 29, 72, 0.4); }

  /* Factory photos marquee */
  .marquee-container {
    width: 100%;
    background: var(--bg-white);
    padding: 60px 0;
    margin-top: -60px; /* Pull up over hero */
    position: relative;
    z-index: 10;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
    border-radius: 40px 40px 0 0;
  }
  .marquee-mask {
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
  .marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 40s linear infinite;
  }
  .marquee-track:hover {
    animation-play-state: paused;
  }
  .marquee-track img {
    height: 280px;
    width: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    filter: brightness(0.9) grayscale(10%);
    transition: filter 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  }
  .marquee-track img:hover {
    filter: brightness(1.05) grayscale(0);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
  }

  /* Section common */
  section { padding: 90px 0; }
  section:nth-child(even) { background: var(--bg-light); border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }

  /* Tags */
  .tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
  .tag { 
    background: var(--bg-white); color: var(--text-dark); padding: 10px 20px; 
    border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 500;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  .tag:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(0,0,0,0.1); }

  /* Services */
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-card { 
    background: var(--bg-white); border: 1px solid rgba(0,0,0,0.04); 
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(225,29,72,0.1); }
  .service-card h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;}
  .service-card ul { list-style: none; }
  .service-card ul li { padding: 10px 0; color: var(--text-muted); font-size: 1.05rem; display: flex; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.03); }
  .service-card ul li:last-child { border-bottom: none; }
  .service-card ul li::before { 
    content: "✓"; display: inline-flex; justify-content: center; align-items: center;
    width: 20px; height: 20px; background: rgba(225,29,72,0.1); color: var(--accent); 
    border-radius: 50%; font-weight: bold; margin-right: 12px; font-size: 0.8rem;
  }

  /* Product grid */
  .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
  .product-card { 
    border-radius: var(--radius-md); overflow: hidden; background: var(--bg-white);
    box-shadow: var(--shadow-md); position: relative; transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
  .product-img-wrapper { overflow: hidden; height: 320px; }
  .product-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
  .product-card:hover img { transform: scale(1.08); }
  .product-card .label { 
    padding: 20px; background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); position: absolute; bottom: 0; width: 100%;
    border-top: 1px solid rgba(255,255,255,0.5);
  }
  .product-card .label-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 4px; }
  .product-card .label-desc { color: var(--accent); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

  /* Premium Product Card UI */
  .card-badge {
    position: absolute; top: 16px; left: 16px; z-index: 10;
    background: rgba(0, 0, 0, 0.65); color: white;
    padding: 6px 14px; border-radius: 20px; font-size: 0.75rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    pointer-events: none; border: 1px solid rgba(255,255,255,0.1);
  }
  .product-link { display: block; text-decoration: none; color: inherit; }
  .hover-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25); opacity: 0; transition: opacity 0.4s ease;
    display: flex; justify-content: center; align-items: center; z-index: 5;
  }
  .product-card:hover .hover-overlay { opacity: 1; }
  .hover-overlay span {
    background: white; color: var(--text-dark); padding: 12px 28px;
    border-radius: 30px; font-weight: 700; font-size: 0.95rem; font-family: 'Outfit', sans-serif;
    transform: translateY(20px); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .product-card:hover .hover-overlay span { transform: translateY(0); }

  /* Export countries */
  .export-countries { display: flex; flex-wrap: wrap; gap: 12px; }
  .country { 
    background: var(--bg-white); border: 1px solid rgba(0,0,0,0.06); 
    padding: 10px 20px; border-radius: var(--radius-md); font-size: 0.95rem; 
    color: var(--text-main); font-weight: 500; display: flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-sm); transition: all 0.3s ease;
  }
  .country:hover { background: var(--bg-light); border-color: rgba(0,0,0,0.1); transform: translateY(-2px); }

  /* Why choose */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-item { 
    background: var(--bg-white); padding: 30px; border-radius: var(--radius-lg); 
    border-left: 5px solid var(--accent); box-shadow: var(--shadow-sm); 
    font-size: 1rem; color: var(--text-muted); transition: all 0.3s ease;
  }
  .why-item:hover { box-shadow: var(--shadow-md); transform: translateX(5px); }
  .why-item strong { display: block; color: var(--text-dark); margin-bottom: 8px; font-size: 1.2rem; font-family: 'Outfit', sans-serif;}

  /* Partners / clients */
  .clients-list { display: flex; flex-wrap: wrap; gap: 16px; }
  .client-tag { 
    background: var(--primary); color: #fff; padding: 12px 24px; 
    border-radius: var(--radius-md); font-size: 1rem; font-weight: 500;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2); transition: all 0.3s ease;
  }
  .client-tag:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 15px rgba(225, 29, 72, 0.3); }

  /* Contact */
  section.contact-section { background: var(--primary) !important; color: #fff; position: relative; overflow: hidden; }
  .contact-section::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 70%; height: 150%;
    background: radial-gradient(ellipse, rgba(225,29,72,0.15) 0%, transparent 60%);
    pointer-events: none;
  }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1;}
  .contact-info h2 { font-size: 2.5rem; margin-bottom: 24px; color: #fff; }
  .contact-info p { margin-bottom: 16px; color: #cbd5e1; font-size: 1.1rem; }
  .contact-info strong { color: #fff; font-family: 'Outfit', sans-serif;}
  .contact-photo { position: relative; }
  .contact-photo::after { content: ''; position: absolute; inset: -15px; border: 2px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); z-index: 0; }
  .contact-photo img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 400px; position: relative; z-index: 1; box-shadow: var(--shadow-lg); }
  .contact-btn { 
    display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; 
    border-radius: var(--radius-pill); font-weight: 600; transition: all 0.3s ease;
    text-decoration: none; color: #fff; font-family: 'Inter', sans-serif;
    background: var(--primary);
  }
  .contact-btn:hover { filter: brightness(1.1); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

  .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .mobile-menu-btn svg { width: 28px; height: 28px; stroke: var(--primary); }

  /* Responsive */
  @media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .hero { padding: calc(80px + var(--nav-height)) 20px 80px; }
    .hero h1 { font-size: 2.5rem; }
    /* Marquee mobile styling */
    .marquee-container { padding: 30px 0; border-radius: 20px 20px 0 0; margin-top: -30px; }
    .marquee-track { gap: 16px; }
    .marquee-track img {
      height: 180px; 
      width: 280px; 
      border-radius: 12px; 
      filter: none; /* Keep it bright since no hover */
    }
    .services-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .contact-photo img { height: 300px; }
    
    .mobile-menu-btn { display: block; }
    .nav-links {
      position: absolute; top: var(--nav-height); left: 0; width: 100%;
      background: #fff; flex-direction: column; gap: 0; padding: 0;
      box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
      display: none;
    }
    .nav-links.active { display: flex; }
    .nav-item-dropdown { width: 100%; }
    .nav-links > a, .nav-item-dropdown > a { 
      padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.05); width: 100%; 
    }
    .nav-cta { border-radius: 0 !important; text-align: center; }
    .dropdown-menu {
      position: static; box-shadow: none; border: none; opacity: 1; visibility: visible;
      transform: none; display: none; background: var(--bg-light);
    }
    .nav-item-dropdown.active .dropdown-menu { display: block; }
    .nav-item-dropdown:hover .dropdown-menu { display: none; } /* Disable hover on mobile */
    .nav-item-dropdown.active:hover .dropdown-menu { display: block; }
  }
  @media (max-width: 500px) {
    .products-grid { grid-template-columns: 1fr; }
  }

  /* Footer */
  .footer {
    background: var(--primary);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
  }
  .footer a {
    color: var(--accent);
    font-weight: 500;
  }
  .footer a:hover {
    text-decoration: underline;
  }

  /* Preloader */
  #preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #preloader.loaded {
    opacity: 0;
    visibility: hidden;
  }
  .loader {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(225, 29, 72, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Category Filters */
  .category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
  }
  .cat-btn {
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
  }
  .cat-btn:hover {
    background: rgba(0,0,0,0.05);
  }
  .cat-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .product-card.hidden {
    display: none !important;
  }
  
  @keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .product-card.fade-in {
    animation: fadeInSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  }

  /* Creative Liquid Load More Button */
  .creative-load-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(225, 29, 72, 0.4);
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .creative-load-btn .creative-text {
    position: relative;
    z-index: 2;
    transition: color 0.5s ease;
  }

  .creative-load-btn .liquid-bg {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50% 50% 0 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
  }

  .creative-load-btn:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
  }

  .creative-load-btn:hover .creative-text {
    color: #fff;
  }

  .creative-load-btn:hover .liquid-bg {
    top: 0;
    border-radius: 0;
  }

  body.dark-mode .creative-load-btn { border-color: rgba(255,255,255,0.2); color: #fff; }
  body.dark-mode .creative-load-btn:hover { border-color: var(--primary); }

  /* Footer */
  .footer {
    background: var(--primary);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
  }
  .footer a {
    color: var(--accent);
    font-weight: 500;
  }
  .footer a:hover {
    text-decoration: underline;
  }

  /* Preloader */
  #preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #preloader.loaded {
    opacity: 0;
    visibility: hidden;
  }
  .loader {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(225, 29, 72, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Flag Icons */
  .flag-icon {
    border-radius: 2px;
    vertical-align: -3px;
    margin-right: 4px;
    box-shadow: 0 0 1px rgba(0,0,0,0.2);
  }

  /* Product Card Label Overrides for /products page */
  .product-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .product-card .label {
    position: relative !important;
    padding: 20px !important;
    background: var(--bg-white) !important;
    backdrop-filter: none !important;
    border-top: 1px solid rgba(0,0,0,0.05) !important;
  }
  .product-img-wrapper {
    height: 280px;
  }
  .product-card .label-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
  .product-card .label-desc {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Native Custom SVG Cursors - Premium Star Shape */
  body, input, textarea {
      cursor: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M16 2 C16 12, 20 16, 30 16 C20 16, 16 20, 16 30 C16 20, 12 16, 2 16 C12 16, 16 12, 16 2 Z" fill="%23E11D48"/></svg>') 16 16, auto !important;
  }
  
  a, button, .product-card, .cat-btn, .creative-load-btn {
      cursor: url('data:image/svg+xml;utf8,<svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><path d="M24 4 C24 18, 30 24, 44 24 C30 24, 24 30, 24 44 C24 30, 18 24, 4 24 C18 24, 24 18, 24 4 Z" fill="rgba(225,29,72,0.2)" stroke="%23E11D48" stroke-width="1"/><path d="M24 10 C24 19, 29 24, 38 24 C29 24, 24 29, 24 38 C24 29, 19 24, 10 24 C19 24, 24 19, 24 10 Z" fill="%23E11D48"/></svg>') 24 24, pointer !important;
  }

  body.dark-mode, body.dark-mode input, body.dark-mode textarea {
      cursor: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M16 2 C16 12, 20 16, 30 16 C20 16, 16 20, 16 30 C16 20, 12 16, 2 16 C12 16, 16 12, 16 2 Z" fill="white"/></svg>') 16 16, auto !important;
  }

  body.dark-mode a, body.dark-mode button, body.dark-mode .product-card, body.dark-mode .cat-btn, body.dark-mode .creative-load-btn {
      cursor: url('data:image/svg+xml;utf8,<svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><path d="M24 4 C24 18, 30 24, 44 24 C30 24, 24 30, 24 44 C24 30, 18 24, 4 24 C18 24, 24 18, 24 4 Z" fill="rgba(255,255,255,0.2)" stroke="white" stroke-width="1"/><path d="M24 10 C24 19, 29 24, 38 24 C29 24, 24 29, 24 38 C24 29, 19 24, 10 24 C19 24, 24 19, 24 10 Z" fill="white"/></svg>') 24 24, pointer !important;
  }
