/* ===== CSS Custom Properties ===== */
    :root {
      --primary: #2A9D8F;
      --primary-dark: #264653;
      --primary-light: #e8f5f3;
      --accent: #e76f51;
      --white: #ffffff;
      --off-white: #f8f9fa;
      --gray-100: #f1f3f5;
      --gray-200: #e9ecef;
      --gray-300: #dee2e6;
      --gray-400: #ced4da;
      --gray-500: #adb5bd;
      --gray-600: #6c757d;
      --gray-700: #495057;
      --gray-800: #343a40;
      --gray-900: #212529;
      --gold: #f4a261;
      --sale-red: #e63946;
      --font-heading: 'Playfair Display', Georgia, serif;
      --font-body: 'Poppins', 'Segoe UI', sans-serif;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
      --radius: 12px;
      --radius-sm: 8px;
      --transition: 0.3s ease;
    }

    /* ===== Reset & Base ===== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--gray-800);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ul { list-style: none; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ===== Scroll Animations ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== Header ===== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--transition);
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--primary-dark);
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon svg {
      width: 32px;
      height: 32px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--gray-700);
      position: relative;
      padding: 4px 0;
    }

    .nav a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width var(--transition);
    }

    .nav a:hover {
      color: var(--primary);
    }

    .nav a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-actions button {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--gray-700);
      font-size: 1.2rem;
      padding: 6px;
      border-radius: 50%;
      transition: all var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .header-actions button:hover {
      color: var(--primary);
      background: var(--primary-light);
    }

    .cart-count {
      position: absolute;
      top: -2px;
      right: -2px;
      background: var(--accent);
      color: var(--white);
      font-size: 0.65rem;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--gray-700);
      font-size: 1.5rem;
      padding: 4px;
    }

    /* ===== Hero Section ===== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      max-height: 900px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-top: 72px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(38,70,83,0.7) 0%, rgba(42,157,143,0.4) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      max-width: 700px;
      padding: 0 20px;
    }

    .hero-content h1 {
      font-family: var(--font-heading);
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    }

    .hero-content p {
      font-size: 1.15rem;
      font-weight: 300;
      margin-bottom: 32px;
      opacity: 0.95;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all var(--transition);
      border: 2px solid transparent;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    .btn-primary:hover {
      background: #238b7e;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(42,157,143,0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--primary-dark);
      transform: translateY(-2px);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--white);
      opacity: 0.8;
      animation: bounce 2s infinite;
    }

    .scroll-indicator span {
      font-size: 0.75rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
      40% { transform: translateX(-50%) translateY(-8px); }
      60% { transform: translateX(-50%) translateY(-4px); }
    }

    /* ===== Section Styles ===== */
    .section {
      padding: 80px 0;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      text-align: center;
      margin-bottom: 12px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--gray-600);
      font-size: 1rem;
      margin-bottom: 48px;
    }

    /* ===== Shop by Category ===== */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .category-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition);
      background: var(--white);
    }

    .category-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .category-card-img {
      width: 100%;
      height: 280px;
      overflow: hidden;
    }

    .category-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .category-card:hover .category-card-img img {
      transform: scale(1.08);
    }

    .category-card-body {
      padding: 20px;
      text-align: center;
    }

    .category-card-body h3 {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      color: var(--primary-dark);
      margin-bottom: 4px;
    }

    .category-card-body .item-count {
      font-size: 0.85rem;
      color: var(--gray-500);
      margin-bottom: 14px;
    }

    .btn-sm {
      padding: 10px 24px;
      font-size: 0.8rem;
      border-radius: 50px;
      background: var(--primary);
      color: var(--white);
      border: none;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all var(--transition);
    }

    .btn-sm:hover {
      background: #238b7e;
      transform: translateY(-1px);
    }

    /* ===== Best Sellers ===== */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .product-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 2;
    }

    .badge-bestseller {
      background: var(--gold);
      color: var(--white);
    }

    .badge-sale {
      background: var(--sale-red);
      color: var(--white);
    }

    .badge-new {
      background: var(--primary);
      color: var(--white);
    }

    .product-img {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-img img {
      transform: scale(1.05);
    }

    .product-info {
      padding: 18px;
    }

    .product-info h3 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      color: var(--primary-dark);
      margin-bottom: 8px;
    }

    .product-price {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .product-price .current {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary);
    }

    .product-price .original {
      font-size: 0.9rem;
      color: var(--gray-500);
      text-decoration: line-through;
    }

    .btn-add-cart {
      width: 100%;
      padding: 11px;
      background: var(--primary-dark);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all var(--transition);
    }

    .btn-add-cart:hover {
      background: var(--primary);
      transform: translateY(-1px);
    }

    /* ===== Delivery Banner ===== */
    .delivery-banner {
      background: linear-gradient(135deg, var(--primary) 0%, #238b7e 100%);
      padding: 60px 0;
      text-align: center;
      color: var(--white);
    }

    .delivery-banner h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .delivery-banner p {
      font-size: 1.05rem;
      opacity: 0.9;
      margin-bottom: 24px;
    }

    .btn-white {
      background: var(--white);
      color: var(--primary-dark);
      border-color: var(--white);
      padding: 14px 36px;
    }

    .btn-white:hover {
      background: var(--off-white);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    /* ===== Testimonials ===== */
    .testimonials {
      background: var(--off-white);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .testimonial-quote {
      font-size: 0.95rem;
      color: var(--gray-700);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
      position: relative;
      padding-left: 20px;
      border-left: 3px solid var(--primary);
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
      color: var(--gold);
      font-size: 1rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary);
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--primary-dark);
    }

    .testimonial-role {
      font-size: 0.8rem;
      color: var(--gray-500);
    }

    /* ===== Instagram Section ===== */
    .instagram-section {
      text-align: center;
    }

    .instagram-handle {
      font-size: 1rem;
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 32px;
    }

    .instagram-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }

    .instagram-item {
      position: relative;
      aspect-ratio: 1;
      border-radius: var(--radius-sm);
      overflow: hidden;
      cursor: pointer;
    }

    .instagram-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .instagram-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(42,157,143,0);
      transition: background var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .instagram-item:hover img {
      transform: scale(1.1);
    }

    .instagram-item:hover::after {
      background: rgba(42,157,143,0.3);
    }

    /* ===== Footer ===== */
    .footer {
      background: var(--primary-dark);
      color: rgba(255,255,255,0.85);
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-brand .logo {
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      opacity: 0.8;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 0.95rem;
      transition: all var(--transition);
    }

    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }

    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      font-size: 0.9rem;
      opacity: 0.75;
      transition: all var(--transition);
    }

    .footer-col ul li a:hover {
      opacity: 1;
      color: var(--primary);
      padding-left: 4px;
    }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px !important;
      font-size: 0.9rem;
      opacity: 0.8;
    }

    .footer-contact li svg {
      flex-shrink: 0;
      margin-top: 3px;
      opacity: 0.7;
    }

    .footer-bottom {
      text-align: center;
      padding: 20px 0;
      font-size: 0.85rem;
      opacity: 0.6;
    }

    /* ===== Responsive 1024px ===== */
    @media (max-width: 1024px) {
      .hero-content h1 {
        font-size: 2.6rem;
      }

      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
      }

      .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ===== Responsive 768px ===== */
    @media (max-width: 768px) {
      .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-md);
      }

      .nav.active {
        display: flex;
      }

      .mobile-toggle {
        display: block;
      }

      .hero {
        min-height: 500px;
        max-height: 700px;
      }

      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .category-card-img {
        height: 200px;
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid .testimonial-card:last-child {
        max-width: none;
      }

      .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .delivery-banner h2 {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.7rem;
      }

      .categories-grid {
        grid-template-columns: 1fr;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
    }