/* Premium tabs styling */
.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tabs .tab {
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.tabs .tab.active {
  color: #111827;
  border-color: #111827;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Reviews premium layout */
.reviews-header.premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.reviews-header .score { display: flex; align-items: center; gap: .75rem; }
.reviews-header .avg { font-size: 1.125rem; font-weight: 700; color: #111827; }
.reviews-header .count { color: #6b7280; }

.reviews-grid.premium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .reviews-grid.premium { grid-template-columns: 1fr; }
}

.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.review-card .review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.review-card .meta { color: #6b7280; display: flex; align-items: center; gap: .5rem; }
.review-card .title { margin: 0 0 .25rem; font-size: 1rem; color: #111827; }
.review-card .text { margin: 0; color: #374151; line-height: 1.6; }
.review-card .dot { color: #d1d5db; }

.stars { color: #f59e0b; letter-spacing: 1px; }
.star { opacity: .3; }
.star.filled, .star.half { opacity: 1; }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-900: #111827;
    --color-red: #dc2626;
    --color-green: #16a34a;
  }
  
a{
  text-decoration: none;
  color: var(--color-gray-900);
}

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--color-gray-900);
    line-height: 1.6;
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Promo Banner */
    .promo-banner {
      background-color: var(--color-black);
      color: var(--color-white);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      font-size: 0.875rem;
      padding: 0.8rem 0;
    }
  

  
    .close-banner {
      position: absolute;
      right: 1rem;
      background: none;
      border: none;
      color: var(--color-white);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0;
      width: 1.5rem;
      height: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    /* Header */
    .header {
      border-bottom: 1px solid var(--color-gray-200);
      padding: 0.75rem 0;
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
  
    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
  
    .logo {
      display: flex;
      align-items: center;
    }
    .logo a {
      line-height: 0;
    }
  
    .nav {
      display: flex;
      gap: 1.5rem;
      flex: 1;
    }
  
    .nav-link {
      color: var(--color-gray-900);
      text-decoration: none;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
  
    .dropdown-icon {
      font-size: 0.75rem;
    }
  
    .search-bar {
      display: flex;
      align-items: center;
      background-color: var(--color-gray-100);
      border-radius: 62px;
      padding: 0.75rem 1rem;
      gap: 0.75rem;
      width: 100%;
      max-width: 400px;
    }
  
    .search-icon {
      color: var(--color-gray-400);
    }
  
    .search-input {
      border: none;
      background: none;
      outline: none;
      width: 100%;
      font-size: 1rem;
    }  
  
  .icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .icon-btn:hover{
    text-decoration: underline;
    transition: all 0.5s;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-600);
  }
  
  .breadcrumb a {
    color: var(--color-gray-600);
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    color: var(--color-gray-900);
  }
  
  .breadcrumb .separator {
    color: var(--color-gray-400);
  }
  
  .breadcrumb .current {
    color: var(--color-gray-900);
    font-weight: 500;
  }
  
  /* Product Layout */
    .product-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-bottom: 4rem;
    }
  
    /* Gallery */
    .gallery {
      display: flex;
      gap: 1rem;
    }
  
    .thumbnails {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
  
    .thumbnail {
      width: 7.5rem;
      height: 7.5rem;
      border: 2px solid transparent;
      border-radius: 0.75rem;
      overflow: hidden;
      cursor: pointer;
      background: var(--color-gray-100);
      padding: 0;
      transition: border-color 0.2s;
    }
  
    .thumbnail.active {
      border-color: var(--color-black);
    }
  
    .thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
   
  /* Product Info */
    .product-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
  
    .product-title {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
  
    .rating {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
  
    .stars {
      display: flex;
      gap: 0.25rem;
    }
  
    .star {
      color: var(--color-gray-300);
      font-size: 1.25rem;
    }
  
    .star.filled {
      color: #ffc107;
    }
  
    .star.half {
      background: linear-gradient(90deg, #ffc107 50%, var(--color-gray-300) 50%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
  
    .rating-text {
      font-size: 0.875rem;
      color: var(--color-gray-600);
    }
  
    .price-section {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
  
    .current-price {
      font-size: 1.5rem;
      font-weight: 700;
    }
  
    .original-price {
      font-size: 1.5rem;
      color: var(--color-gray-400);
      text-decoration: line-through;
    }
  
    .discount {
      background-color: rgba(255, 0, 0, 0.1);
      color: var(--color-red);
      padding: 0.375rem 0.875rem;
      border-radius: 62px;
      font-size: 0.875rem;
      font-weight: 500;
    }
  
    .product-description {
      color: var(--color-gray-600);
      line-height: 1.6;
    }
  
    .option-group {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding-top: 0.5rem;
      border-top: 1px solid var(--color-gray-200);
    }
  
    .option-label {
      font-size: 1rem;
      color: var(--color-gray-600);
      font-weight: 400;
    }
  
    .color-options {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
    }
  
    .color-option {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      border: 2px solid transparent;
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
  
    .color-option:hover {
      transform: scale(1.1);
    }
  
    .color-option.active {
      border-color: var(--color-gray-900);
    }
  
    .checkmark {
      display: none;
    }
  
    .color-option.active .checkmark {
      display: block;
    }
  
    .size-options {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
  
    .size-option {
      padding: 0.5rem 1rem;
      border: 1px solid var(--color-gray-300);
      background: var(--color-gray-50);
      border-radius: 62px;
      cursor: pointer;
      font-size: 1rem;
      transition: all 0.2s;
    }
  
    .size-option:hover {
      border-color: var(--color-gray-900);
    }
  
    .size-option.active {
      background: var(--color-black);
      color: var(--color-white);
      border-color: var(--color-black);
    }  
    .cart-section {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: baseline;
      padding-top: 0.5rem;
      border-top: 1px solid var(--color-gray-200);
      margin-top: 1rem;
    }
  
    .quantity-selector {
      display: flex;
      align-items: center;
      background: var(--color-gray-100);
      border-radius: 62px;
      padding: 0.25rem; /* Reduced from 0.5rem */
    }
  
    .quantity-btn {
      width: 2.5rem;
      height: 2.5rem;
      border: none;
      background: none;
      cursor: pointer;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-gray-900);
      transition: background 0.2s;
      border-radius: 50%;
    }
  
    .quantity-btn:hover {
      background: var(--color-gray-200);
    }
  
    #quantity {
      width: 3.75rem;
      text-align: center;
      border: none;
      background: none;
      font-size: 1rem;
      font-weight: 500;
    }
  
    .add-to-cart-btn {
      flex: 1;
      background: var(--color-black);
      color: var(--color-white);
      border: none;
      border-radius: 62px;
      padding: 0.75rem 1.5rem; /* Reduced from 1rem 2rem */
      font-size: 0.875rem; /* Reduced from 1rem */
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s;
    }
  
    .add-to-cart-btn:hover {
      background: var(--color-gray-900);
    }
  
  
    /* Tabs 2 */
    .tabbed {
      overflow-x: hidden; /* so we could easily hide the radio inputs */
  
    }
  
    .tabbed [type="radio"] {
      /* hiding the inputs */
      display: none;
    }
  
    .tabs {
      display: flex;
      align-items: stretch;
      list-style: none;
      padding: 0;
    }
    .tab > label {
      display: block;
      border-bottom: 1px solid var(--color-gray-200);
      color: var(--color-gray-600);
      font-size: 0.75rem; 
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;	
      transition: all 0.3s;
    }
    .tab:hover label {
      border-bottom-color: var(--color-black);
    }  
  .tab-content {
    display: none;
  }
  
  /* As we cannot replace the numbers with variables or calls to element properties, the number of this selector parts is our tab count limit */
  .tabbed [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
  .tabbed [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label,
  .tabbed [type="radio"]:nth-of-type(3):checked ~ .tabs .tab:nth-of-type(3) label,
  .tabbed [type="radio"]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(4) label,
  .tabbed [type="radio"]:nth-of-type(5):checked ~ .tabs .tab:nth-of-type(5) label {
    border-bottom-color: var(--color-black);
    color: #222;
  }
  
  .tabbed [type="radio"]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
  .tabbed [type="radio"]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
  .tabbed [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
  .tabbed [type="radio"]:nth-of-type(4):checked ~ .tab-content:nth-of-type(4) {
    display: block;
  }


  /* Contact Page */
  .container > h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 2rem 0 1.5rem 0;
  }

  
  /* Contact form */
  #form {
    display: grid;
    gap: 1rem;
    max-width: 40rem;
  }

  /* Contact grid */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2rem 0 3rem 0;
    padding-top: 10rem;
    min-height: 80vh;
  }

  .contact-left h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
  }

  .contact-copy {
    color: var(--color-gray-700);
    max-width: 560px;
    margin-bottom: 2rem;
  }

  .info-list {
    list-style: none;
    display: grid;
    gap: 1rem;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-900);
  }

  .info-icon {
    color: --color-black;
    display: inline-flex;
  }

  .info-text {
    font-size: 1rem;
  }

  .contact-right .contact-card {
    display: grid;
    gap: 1rem;
  }

  .contact-right input[type="text"],
  .contact-right input[type="email"],
  .contact-right textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    background: var(--color-white);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .contact-right textarea { min-height: 10.625rem; resize: vertical; }

  .contact-right input:focus,
  .contact-right textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
  }

  .btn-gradient {
    border: none;
    border-radius: 0.875rem;
    padding: 1rem 1.25rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, #6d28d9, #d946ef, #fb923c);
  }

  .btn-gradient:hover { filter: brightness(0.95); }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 1024px) {
    .contact-grid { 
      grid-template-columns: 1fr; 
      padding-top: 4rem;
    }
    .contact-left h1{
      font-size: 2.5rem;
    }

  }

  @media (max-width: 768px) {
    .contact-right .btn-gradient {
      width: 100%;
      display: block;
    }
  }

  #form input[type="text"],
  #form input[type="email"],
  #form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    background: var(--color-gray-50);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  #form textarea {
    min-height: 8.75rem;
    resize: vertical;
  }

  #form input[type="text"]:focus,
  #form input[type="email"]:focus,
  #form textarea:focus {
    outline: none;
    border: #000000 solid 1px;
    background: var(--color-white);
  }

  #form button[type="submit"] {
    justify-self: start;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 62px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }

  #form button[type="submit"]:hover {
    background: var(--color-gray-900);
  }

  #result {
    font-size: 1rem;
    color: var(--color-gray-700);
    min-height: 1.25rem;
  }

  /* Footer */
  .site-footer {
    margin-top: 4rem;
    background: var(--color-gray-50);
    padding: 3rem 0 2rem 0;
    border-top: 1px solid var(--color-gray-200);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand .logo {
    margin-bottom: 0.75rem;
  }

  .footer-tagline {
    color: var(--color-gray-600);
    margin-bottom: 1rem;
  }

  .newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.75rem;
    font-size: 1rem;
    background: var(--color-white);
  }

  .newsletter-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  .newsletter-btn {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }

  .newsletter-btn:hover {
    background: var(--color-gray-900);
  }

  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-col ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
  }

  .footer-col a {
    color: var(--color-gray-600);
    text-decoration: none;
  }

  .footer-col a:hover {
    color: var(--color-gray-900);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--color-gray-200);
    padding-top: 1rem;
    color: var(--color-gray-600);
  }

  .payments {
    display: flex;
    gap: 0.5rem;
  }

  .payment-badge {
    border: 1px solid var(--color-gray-300);
    background: var(--color-white);
    color: var(--color-gray-700);
    border-radius: 999px;
    padding: 0.25rem 0.625rem;
    font-size: 0.8125rem;
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
  }

  .modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .modal-content {
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 37.5rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--color-black);
    animation: slideUp 0.3s ease-out;
  }

  @keyframes slideUp {
    from { 
      opacity: 0;
      transform: translateY(20px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-gray-200);
  }

  .modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-900);
  }

  .close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-gray-400);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
  }

  .close-modal:hover {
    background: var(--color-gray-100);
    color: var(--color-gray-900);
  }

  .modal-body {
    padding: 2rem;
  }

  /* Product Selection */
  .product-selection {
    margin-bottom: 2rem;
  }

  .product-option {
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s;
  }

  .product-option:hover {
    border-color: var(--color-gray-300);
  }

  .product-option.active {
    border-color: #3b82f6;
    background-color: #eff6ff;
  }

  .option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .option-header h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-gray-900);
  }

  .save-badge {
    background: var(--color-gray-200);
    color: var(--color-gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
  }

  .save-badge.blue {
    background: #3b82f6;
    color: white;
  }

  .product-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .product-preview img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
  }

  .product-details {
    flex: 1;
  }

  .product-details .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
  }

  .product-details .price .original-price {
    text-decoration: line-through;
    color: var(--color-gray-400);
    font-size: 1rem;
    margin-right: 0.5rem;
  }

  .product-details .price .discounted-price {
    color: var(--color-red);
    font-weight: 700;
  }

  .dropdowns {
    display: flex;
    gap: 0.75rem;
  }

  .color-select,
  .size-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    background: white;
    font-size: 0.875rem;
    cursor: pointer;
  }

  /* Styles pour les articles multiples */
  .product-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    background: white;
  }

  .product-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
  }

  .product-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .item-number {
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .item-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
  }

  .item-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .item-options select {
    padding: 0.5rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 6px;
    font-size: 0.875rem;
    background: white;
    min-width: 100px;
  }

  /* Order Summary */
  .order-summary {
    background: var(--color-gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .order-summary h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
  }

  .summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
  }

  .summary-line.total {
    font-weight: 600;
    font-size: 1.125rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-gray-200);
    margin-top: 0.75rem;
  }

  /* Promo Section */
  .promo-section {
    margin-bottom: 2rem;
  }

  .promo-input-group {
    display: flex;
    gap: 0.75rem;
  }

  .promo-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    font-size: 0.9375rem;
  }

  .promo-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  .apply-btn {
    background: var(--color-black);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
  }

  .apply-btn:hover {
    background: var(--color-gray-900);
  }

  /* Delivery Info */
  .delivery-info {
    margin-bottom: 2rem;
  }

  .delivery-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
  }

  .input-icon {
    position: absolute;
    left: 1rem;
    color: var(--color-gray-400);
    z-index: 1;
  }

  .form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.2s;
  }

  .form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  /* Complete Order Button */
  .complete-order-btn {
    width: 100%;
    background: var(--color-black);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }

  .complete-order-btn:hover {
    background: var(--color-gray-900);
  }

  /* Responsive */
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-black);
    margin: 5px 0;
    transition: 0.4s;
  }
  .whatsapp-link{
    display: none;
  }
  @media (max-width: 1024px) {
    .product-layout {
      grid-template-columns: 1fr;
    }
    .whatsapp-link{
      display: block;
    }

    .nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--color-white);
      padding: 1rem;
      border-top: 1px solid var(--color-gray-200);
    }

    .nav.active {
      display: flex;
    }

    .hamburger {
      display: block;
    }
    .header-actions {
      display: none;
    }

    .search-bar {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .header-actions {
      display: none;
    }

    .search-bar {
      display: none;
    }

    .product-title {
      font-size: 2rem;
    }

    .gallery {
      flex-direction: column-reverse;
    }

    .thumbnails {
      flex-direction: row;
      justify-content: center;
    }

    .thumbnail {
      width: 5rem;
      height: 5rem;
    }

    .modal-content {
      width: 95%;
      margin: 1rem;
    }

    .modal-header,
    .modal-body {
      padding: 1rem;
    }

    .product-preview {
      flex-direction: column;
      align-items: flex-start;
    }

    .dropdowns {
      flex-direction: column;
      width: 100%;
    }

    .promo-input-group {
      flex-direction: column;
    }

    .cart-section {
      margin-top: 1.5rem;
    }

  }
  
  /* Footer */
  .site-footer {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand .logo {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
  }
  
  .footer-tagline {
    color: var(--color-gray-600);
    margin-bottom: 1rem;
  }
  
  .newsletter {
    display: flex;
    gap: 0.5rem;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
  }
  
  .newsletter-btn {
    background: var(--color-black);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col li {
    margin: 0.5rem 0;
  }
  
  .footer-col a {
    color: var(--color-gray-700);
    text-decoration: none;
  }
  
  .footer-col a:hover {
    color: var(--color-gray-900);
  }
  
  .footer-bottom {
    display: block;
    text-align: center; /* Added for explicit centering */
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
    color: var(--color-gray-600);
  }
  
  .payments {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .payment-badge {
    border: 1px solid var(--color-gray-300);
    color: var(--color-gray-700);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    background: white;
  }
  
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .newsletter {
      flex-direction: column;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }

/* Desktop view adjustments */
@media (min-width: 1280px) {
  body {
    padding: 0;
  }
  html {
    font-size: 1.2rem;
  }
}

/* Phone view adjustments */
@media (max-width: 1024px) {
    .contact-left h1{
      font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 1.6rem;
  }
  .container > h1 {
    font-size: 1.5rem;
  }
}

.btn-black {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 62px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-black:hover {
  background: var(--color-gray-900);
  color: var(--color-white);
}

/* About Us Page */
.about-section {
    margin-bottom: 30px;
}

.about-section h2 {
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #333;
}

.center-btn-container {
    text-align: center;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}
  
 