
    body {
      margin: 0;
      font-family: 'Playfair Display', serif;
      background-color: #fdf3ea;
    }

    /* Navbar */
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 80px;
      background: #fff;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
    }
    
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      height: 80px;
      margin-right : 175px;
      position: relative;
    }
    
    .logo {
      display: flex;
      align-items: center;
      height: 80px;
      margin-right: 32px;
    }
    .navbar-logo {
      width: 81px;
      height: 50px;
      object-fit: contain;
    }
    
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
      flex: 1 1 auto;
    }
    .nav-links li a {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-style: normal;
      font-size: 20px;
      line-height: 100%;
      letter-spacing: 0;
      color: #68462F;
      text-decoration: none;
      transition: color 0.2s;
      padding: 8px 0;
      position: relative;
    }
    
    .nav-links li a:hover,
    .nav-links li a:focus {
      color: #d2691e!important ;
    }
    .right-icons {
      display: flex;
      align-items: center;
      gap: 30px;
      height: 80px;
      margin-left: auto;
    }
    .right-icons a {
      width: 41px;
      height: 41px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 11px;
      border-radius: 50%;
      color: #fff;
      font-size: 24px;
      transition: background 0.2s;
      margin-left: 0;
      box-sizing: border-box;
      text-decoration: none;
      opacity: 1;
      border: none;
      box-shadow: none;
    }
    .right-icons a img.nav-icon {
      width: 24px;
      height: 24px;
    }
    .nav-icon:hover {
      transform: scale(1.1) !important;
    }
    .right-icons a:hover,
    .right-icons a:focus {

      color: #fff !important;
      outline: none !important;
      border: none !important;
      box-shadow: none !important;
    }
    
    /* Responsive */
    @media (max-width: 900px) {
      .navbar {
        padding: 0 20px;
        height: auto;
        min-height: 80px;
      }
      
      .navbar-inner {
        flex-direction: column;
        height: auto;
        padding: 12px 8px;
        margin-right: 0;
      }
      
      .nav-links {
        flex-direction: column;
        gap: 18px;
        width: 100%;
        margin: 12px 0;
      }
      
      .nav-links li a {
        font-size: 18px;
        padding: 10px 0;
      }
      
      .logo, .right-icons {
        height: auto;
      }
      
      .right-icons {
        gap: 20px;
        margin-top: 10px;
        right: 0;
        width: auto;
        height: auto;
      }
      
      .right-icons a {
        width: 41px;
        height: 41px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 24px;
        transition: background 0.2s;
        margin-left: 0;
        box-sizing: border-box;
        text-decoration: none;
        opacity: 1;
        border: none;
        box-shadow: none;
      }
      
      .logo img {
        height: 40px;
      }
    }
    
    .product-page {
      display: flex;
      padding: 70px;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .product-gallery {
      display: flex;
      gap: 20px;
      flex: 1;
    }

    .thumbnail-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .thumbnail-list img,
    .main-image img {
      border-radius: 0px;
      object-fit: cover;
    }

    .thumbnail-list img {
        width: 169px;
        height: 157px;
    }

    .main-image img {
        width: 473px;
        height: 673px;
        position: relative;
        left: 4px;
    }

    .product-details {
      flex: 1;
      max-width: 500px;
    }

    .product-details h1 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .price {
      font-size: 24px;
      color: #0c0c0c;
      margin-bottom: 5px;
    }

    .rating {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .description {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .label {
      font-weight: bold;
      margin-top: 20px;
      margin-bottom: 5px;
    }

    .color-name {
      margin-bottom: 10px;
    }

    .sizes button {
      padding: 8px 12px;
      margin-right: 10px;
      background-color: #f0eae4;
      border: 1px solid #ccc;
      cursor: pointer;
    }

    .quantity {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .quantity button {
      padding: 5px 10px;
      background-color: #8b1e00;
      color: white;
      border: none;
      font-size: 18px;
      cursor: pointer;
    }

    .quantity span {
      font-size: 18px;
    }

    .add-to-bag {
      width: 100%;
      padding: 12px;
      background-color: #8b1e00;
      color: white;
      border: none;
      font-size: 16px;
      margin-bottom: 20px;
      cursor: pointer;
    }

    .details-section details {
      margin-bottom: 10px;
      background-color: #fff;
      padding: 10px;
      border: 1px solid #eee;
      border-radius: 4px;
    }

    .details-section summary {
      cursor: pointer;
      font-weight: bold;
    }
/* Responsive styles for mobile */
@media (max-width: 600px) {
  /* CART SECTION */
  .cart-container {
    max-width: 98vw;
    margin: 70px 1vw 20px 1vw;
    padding: 10px;
    border-radius: 6px;
  }
  .cart-badge {
    position: absolute;
    top: -26px;
    right: -25px;
    width: 8px;
    height: 8px;
    background: #ffffff; /* Red badge */
    color: #881C27;
    font-weight: bold;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #881C27; /* Updated to your desired color */
    z-index: 2;
  }
  

  .cart-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .cart-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    gap: 10px;
  }

  .cart-item img {
    width: 80vw;
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
  }

  .item-info {
    padding-left: 0;
    width: 100%;
  }

  .total {
    font-size: 16px;
    margin-top: 12px;
  }

  .checkout-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    float: none;
    margin-top: 16px;
  }

  /* NAVBAR SECTION */
  /* NAVBAR SECTION */
  @media (max-width: 600px) {
    .navbar {
      width: 100%;
      background-color: #fff;
      padding: 6px 10px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  
    .navbar-inner {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 10px;
    }
  
    .logo {
      display: flex;
      align-items: center;
    }
  
    .logo img {
      width: 35px;
      height: auto;
      margin: 0;
    }
  
    .nav-links {
      display: flex;
      flex-direction: row;
      gap: 5px;
      margin: 0;
      margin-left: -65px;
      padding: 0;
      list-style: none;
      overflow-x: auto;
      flex: 1;
      justify-content: center;
    }
    
  
    .nav-links li a {
      font-size: 13px;
      padding: 4px 6px;
      text-decoration: none;
      color: #68462F;
      white-space: nowrap;
    }
  
    .right-icons {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }
  
    .right-icons a {
      font-size: 10px;
      width: 10px;
      height: 10px;
      margin-left: 10px;
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  
}
@media (min-width: 601px) and (max-width: 1024px) {
  .navbar {
    width: 100%;
    background-color: #fff;
    padding: 10px 16px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }
  .nav-links li a:hover,
    .nav-links li a:focus {
      color: #d2691e;
    }

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

  .logo img {
    width: 45px;
    height: auto;
    margin: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    flex: 1;
    justify-content: center;
  }

  .nav-links li a {
    font-size: 15px;
    padding: 6px 8px;
    text-decoration: none;
    color: #68462F;
    white-space: nowrap;
  }

  

  .right-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .right-icons a {
    font-size: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


/* Enhanced mobile responsive styles for product page */
@media (max-width: 768px) {
  .product-page {
    flex-direction: column;
    padding: 20px 15px;
    gap: 30px;
    margin-top: 60px;
  }

  .product-gallery {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 25px;
  }

  .thumbnail-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .thumbnail-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .thumbnail-list img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
  }

  .main-image {
    width: 100%;
    text-align: center;
  }

  .main-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    left: 0;
  }

  .product-details {
    max-width: 100%;
    padding: 0;
  }

  .product-details h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .price {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .rating {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .label {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 8px;
  }

  .color-name {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
  }

  .sizes button {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
  }

  .quantity {
    gap: 15px;
    margin-bottom: 25px;
  }

  .quantity button {
    padding: 12px 16px;
    font-size: 20px;
    border-radius: 6px;
    min-width: 45px;
  }

  .quantity span {
    font-size: 18px;
    min-width: 30px;
    text-align: center;
  }

  .add-to-bag {
    padding: 16px;
    font-size: 18px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
  }

  .details-section details {
    margin-bottom: 12px;
    border-radius: 8px;
  }

  .details-section summary {
    padding: 12px;
    font-size: 16px;
  }

  .details-section p {
    padding: 0 12px 12px;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .product-page {
    padding: 15px 10px;
    gap: 25px;
  }

  .product-details h1 {
    font-size: 24px;
  }

  .price {
    font-size: 20px;
  }

  .description {
    font-size: 14px;
  }

  .sizes button {
    padding: 10px 14px;
    font-size: 14px;
    min-width: 45px;
  }

  .quantity button {
    padding: 10px 14px;
    font-size: 18px;
    min-width: 40px;
  }

  .add-to-bag {
    padding: 14px;
    font-size: 16px;
  }

  .thumbnail-list img {
    width: 70px;
    height: 70px;
  }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .product-page {
    padding: 40px;
    gap: 30px;
  }

  .main-image img {
    width: 400px;
    height: auto;
  }

  .thumbnail-list img {
    width: 120px;
    height: 120px;
  }

  .product-details {
    max-width: 450px;
  }
}
    .right-icons{
      width: 30px;
      height: 30px;
      position: relative;
      right: 49px;
    }
    
    .nav-links{
      font-family:'Playfair Display', serif;
    }

    .amber{
      color: #8b1e00;
    }

    .nav-links li a:focus {
      text-decoration: none;
    }

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -15px;
  width: 22px;
  height: 22px;
  background: #ffffff; /* Red badge */
  color: #881C27;
  font-weight: bold;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #881C27; /* Updated to your desired color */
  z-index: 2;
}

.size-selection.selected-size {
  background-color: #881C27 !important;
  color: #fff !important;
  border: 2px solid #881C27 !important;
}
/* Very small mobile devices */
@media (max-width: 360px) {
  .navbar {
    padding: 0 10px;
  }
  
  .navbar-inner {
    padding: 8px 4px;
  }
  
  .nav-links li a {
    font-size: 16px;
  }
  
  .product-page {
    padding: 10px 8px;
    gap: 20px;
  }
  
  .product-details h1 {
    font-size: 22px;
  }
  
  .price {
    font-size: 18px;
  }
  
  .description {
    font-size: 13px;
  }
  
  .sizes button {
    padding: 8px 12px;
    font-size: 13px;
    min-width: 40px;
  }
  
  .quantity button {
    padding: 8px 12px;
    font-size: 16px;
    min-width: 35px;
  }
  
  .add-to-bag {
    padding: 1px;
    font-size: 15px;
  }
  
  .thumbnail-list img {
    width: 60px;
    height: 60px;
  }
  
  .main-image img {
    max-width: 100%;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .product-page {
    flex-direction: row;
    gap: 20px;
    padding: 15px;
  }
  
  .product-gallery {
    flex: 0 0 50%;
  }
  
  .product-details {
    flex: 0 0 50%;
  }
  
  .thumbnail-list {
    flex-direction: column;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .thumbnail-list img {
    width: 60px;
    height: 60px;
  }
  /* Mobile Navbar Styles */
 
}
