:root {
      --sand: #F4EDE4;
      --terracotta: #D4846A;
      --eucalyptus: #7FA99B;
      --deep-green: #2F4538;
      --warm-gold: #C9A86A;
      --cream: #FFF9F1;
      --charcoal: #2A2A2A;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Jost', sans-serif;
      background: var(--sand);
      color: var(--charcoal);
      line-height: 1.6;
    }
    
    /* Header */
    .site-header {
      background: var(--cream);
      border-bottom: 3px solid var(--warm-gold);
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .header-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--deep-green);
      letter-spacing: -0.02em;
    }
    
    .subheader {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--terracotta);
      margin-top: 0.3rem;
      letter-spacing: 0.02em;
    }
    
    .header-actions {
      display: flex;
      gap: 1rem;
    }
    
    .header-icon {
      font-size: 1.5rem;
      text-decoration: none;
      transition: transform 0.3s ease;
    }
    
    .header-icon:hover {
      transform: scale(1.2);
    }
    
    /* Breadcrumb */
    .breadcrumb {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem 5%;
      font-size: 0.9rem;
      color: var(--eucalyptus);
    }
    
    .breadcrumb a {
      color: var(--eucalyptus);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .breadcrumb a:hover {
      color: var(--terracotta);
    }
    
    /* Container */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem 5% 4rem;
    }
    
    /* Product Detail */
    .product-detail {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }
    
    .product-images {
      position: sticky;
      top: 120px;
      height: fit-content;
    }
    
    .product-images img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    
    .thumbnail-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .thumbnail {
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }
    
    .thumbnail:hover {
      border-color: var(--eucalyptus);
    }
    
    .thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Product Info */
    .product-info h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--deep-green);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .product-meta {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    
    .rating {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--warm-gold);
    }
    
    .reviews {
      color: var(--eucalyptus);
      font-size: 0.95rem;
    }
    
    .badge {
      background: var(--terracotta);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .price {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--terracotta);
      margin-bottom: 1.5rem;
    }
    
    .product-info > p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      color: var(--charcoal);
      opacity: 0.9;
    }
    
    /* Tabs */
    .tabs {
      display: flex;
      gap: 1rem;
      border-bottom: 2px solid rgba(47, 69, 56, 0.1);
      margin-bottom: 2rem;
    }
    
    .tab {
      padding: 1rem 1.5rem;
      background: none;
      border: none;
      font-family: 'Jost', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--eucalyptus);
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
    }
    
    .tab.active {
      color: var(--deep-green);
      border-bottom-color: var(--warm-gold);
    }
    
    .tab-content {
      display: none;
    }
    
    .tab-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    /* Product List */
    .product-list {
      list-style: none;
      margin-bottom: 2rem;
    }
    
    .product-list li {
      padding: 1rem;
      margin-bottom: 0.8rem;
      background: var(--cream);
      border-radius: 8px;
      border-left: 4px solid var(--eucalyptus);
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .product-list li:hover {
      background: white;
      transform: translateX(5px);
    }

    .plain-list li::before {
      display: none;
    }
    
    /* Details Table */
    .details-table {
      background: var(--cream);
      border-radius: 8px;
      padding: 2rem;
      margin-bottom: 2rem;
    }
    
    .details-table table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .details-table td {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(47, 69, 56, 0.1);
    }
    
    .details-table td:first-child {
      font-weight: 600;
      color: var(--deep-green);
      width: 40%;
    }
    
    .details-table tr:last-child td {
      border-bottom: none;
    }
    
    /* Add to Cart Section */
    .add-to-cart-section {
      background: var(--cream);
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    
    .quantity-selector {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .quantity-selector label {
      font-weight: 600;
      color: var(--deep-green);
    }
    
    .qty-control {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      border-radius: 8px;
      padding: 0.5rem;
    }
    
    .qty-btn {
      width: 35px;
      height: 35px;
      border: none;
      background: var(--eucalyptus);
      color: white;
      border-radius: 6px;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .qty-btn:hover {
      background: var(--deep-green);
    }
    
    .qty-input {
      width: 60px;
      text-align: center;
      border: none;
      font-size: 1.1rem;
      font-weight: 600;
    }
    
    .button {
      display: block;
      width: 100%;
      padding: 1.2rem 2rem;
      background: var(--deep-green);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      text-align: center;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
    }
    
    .button:hover {
      background: var(--eucalyptus);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(127, 169, 155, 0.3);
    }
    
    .button-secondary {
      background: white;
      color: var(--deep-green);
      border: 2px solid var(--deep-green);
    }
    
    .button-secondary:hover {
      background: var(--deep-green);
      color: white;
    }
    
    /* Features */
    .muted {
      background: white;
      padding: 1.5rem;
      border-radius: 8px;
      margin-top: 1.5rem;
      font-size: 0.95rem;
      line-height: 2;
    }
    
    .muted strong {
      color: var(--deep-green);
    }
    
    /* Info Sections */
    .info-section {
      background: var(--cream);
      border-radius: 12px;
      padding: 2.5rem;
      margin-bottom: 3rem;
    }
    
    .info-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--deep-green);
      margin-bottom: 1.5rem;
    }
    
    .info-section p {
      line-height: 1.8;
      margin-bottom: 1rem;
      opacity: 0.9;
    }
    
    .info-section ul {
      list-style: none;
      padding-left: 0;
    }
    
    .info-section ul li {
      padding: 0.8rem 0;
      padding-left: 2rem;
      position: relative;
    }
    
    .info-section ul li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--eucalyptus);
      font-weight: bold;
      font-size: 1.2rem;
    }
    
    /* Delivery Info */
    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .delivery-card {
      background: white;
      padding: 1.5rem;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    
    .delivery-card:hover {
      transform: translateY(-5px);
    }
    
    .delivery-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .delivery-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--deep-green);
      margin-bottom: 0.5rem;
    }
    
    .delivery-card p {
      font-size: 0.9rem;
      opacity: 0.8;
    }
    
    /* Related Products */
    .related-products {
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 3px solid var(--warm-gold);
    }
    
    .related-products h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--deep-green);
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    
    .product-card {
      background: var(--cream);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
    }
    
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }
    
    .product-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    
    .product-card-content {
      padding: 1.5rem;
    }
    
    .product-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--deep-green);
      margin-bottom: 0.5rem;
    }
    
    .product-card .price {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    
    /* Footer */
    footer {
      background: var(--deep-green);
      color: var(--cream);
      padding: 3rem 5%;
      text-align: center;
      margin-top: 4rem;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 2rem;
      text-align: left;
    }
    
    .footer-column h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 0.5rem;
    }
    
    .footer-column a {
      color: var(--cream);
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }
    
    .footer-column a:hover {
      opacity: 1;
    }
    
    .copyright {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 249, 241, 0.2);
      opacity: 0.6;
    }
    .heading-link {
      text-decoration: none;
      color: inherit;
    }

    .image-link {
      text-decoration: none;
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Responsive */
    @media (max-width: 968px) {
      .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .product-images {
        position: static;
      }
      
      .product-info h1 {
        font-size: 2.2rem;
      }
      
      .tabs {
        overflow-x: auto;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
      }
            /* clickable h2 link — inherit all styles, no browser defaults */
      .heading-link {
        text-decoration: none;
        color: inherit;
        font: inherit;
        transition: color 0.2s;
      }
      .heading-link:hover { color: var(--accent-warm); }

      .image-link {
        text-decoration: none;
        color: inherit;
      }

      .heading-link {
        text-decoration: none;
        color: inherit;
      }
    
    }