/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Header Styles */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    font-size: 18px;
    padding: 5px;
    color: #1a1a1a;
    background: transparent;
    border: none;
    cursor: pointer;
}

.store-selector {
    display: flex;
    gap: 15px;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.currency {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency i {
    font-size: 9px;
}

/* Logo */
.logo {
    text-align: center;
    display: flex;
}
/* Logo layout: icon left, texts stacked on right */
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,97,0.08);
  font-size: 20px;
  color: #c9a961;
}

.logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c9a961;
}

.logo-subtext {
  font-size: 9px;
  color: #999;
  letter-spacing: 3px;
}


.header-link {
    font-size: 11px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    color: #1a1a1a;
}

.header-link:hover {
    color: #c9a961;
}

.cart-icon {
    position: relative;
    font-size: 20px;
    cursor: pointer;
    color: #1a1a1a;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
    position: relative;
}

.nav-close {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 22px;
    color: #1a1a1a;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-overlay {
    display: none;
}

.nav-item {
    font-size: 12px;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
    color: #1a1a1a;
}

.nav-item:hover {
    color: #c9a961;
}

.nav-offers {
    background: #c9a961;
    color: #fff;
    padding: 8px 20px;
    border-radius: 3px;
}

.nav-new {
    position: relative;
}

.badge {
    background: #c9a961;
    color: #fff;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 2px;
    position: absolute;
    top: -10px;
    right: -30px;
}

/* Page Title */
.page-title {
    text-align: center;
    padding: 40px 0 25px;
    background: #fff;
}

.page-title h1 {
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #555;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #c9a961;
}

.breadcrumb span {
    color: #1a1a1a;
    font-weight: 600;
}

.breadcrumb i {
    font-size: 9px;
    color: #999;
}

/* Main Content Layout */
.main-content {
    padding: 20px 0 60px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

/* Sidebar Filter */
.sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    height: fit-content;
    position: sticky;
    top: 150px;
}

.filter-title {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.filter-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.filter-heading {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-options label {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.filter-options input[type="checkbox"] {
    cursor: pointer;
}

/* Products Section */
.products-section {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s;
    color: #1a1a1a;
}

.view-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 11px;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a1a;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Product Image Carousel */
.product-image-carousel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots-product {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot-product {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dot-product.active {
    background: #fff;
    width: 8px;
}

.dot-product:hover {
    background: rgba(255, 255, 255, 0.8);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 3;
    color: #1a1a1a;
}

.wishlist-btn:hover {
    background: #c9a961;
    color: #fff;
}

.wishlist-btn.active {
    color: #c9a961;
}

.wishlist-btn.active i {
    font-weight: 900;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    display: block;
    transition: color 0.3s;
    color: #1a1a1a;
    text-transform: uppercase;
}

.product-title:hover {
    color: #c9a961;
}

.product-desc {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

.product-sizes {
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffa500;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.review-count {
    font-size: 11px;
    color: #555;
}

.select-size-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #1a1a1a;
    background: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.3s;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.select-size-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.select-size-btn i {
    font-size: 10px;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #1a1a1a;
}

.per-page-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    background: #fff;
}

/* Product Detail Page */
.product-detail {
    padding: 30px 0 60px;
    background: #fff;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.wishlist-btn-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s;
}

.wishlist-btn-detail:hover {
    background: #c9a961;
    color: #fff;
}

.main-image-container {
    margin-bottom: 20px;
    position: relative;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-item {
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    border-radius: 8px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #c9a961;
    width: 24px;
    border-radius: 4px;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail.active {
    border-color: #c9a961;
}

.thumbnail:hover {
    opacity: 0.8;
}

.disclaimer {
    font-size: 11px;
    color: #999;
    margin-top: 15px;
    font-style: italic;
}

/* Product Info Detail */
.product-info-detail {
    padding: 20px 0;
}

.product-title-detail {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-meta {
    margin-bottom: 15px;
}

.sku {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.5px;
}

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.ask-question {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.ask-question:hover {
    color: #c9a961;
}

.product-price-detail {
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 600;
    margin-right: 10px;
}

.price-note {
    font-size: 11px;
    color: #999;
}

.product-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background: #f5f5f5;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    color: #666;
    letter-spacing: 0.5px;
}

.size-selector {
    margin-bottom: 25px;
}

.size-selector > label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 15px;
}

.size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.size-option {
    position: relative;
}

.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.size-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-height: 100px;
}

.size-option input[type="radio"]:checked + label {
    border-color: #c9a961;
    background: #fafafa;
}

.size-option label:hover {
    border-color: #c9a961;
}

.size-name {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.size-price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.wishlist-circle {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.wishlist-circle:hover {
    background: #c9a961;
    color: #fff;
    border-color: #c9a961;
}

.notify-btn {
    flex: 1;
    height: 50px;
    background: #fff;
    border: 1px solid #333;
    color: #333;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notify-btn:hover {
    background: #333;
    color: #fff;
}

.add-to-bag-btn {
    flex: 1;
    height: 50px;
    background: #000;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s;
}

.add-to-bag-btn:hover {
    background: #c9a961;
}

.description-section,
.benefits-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.description-section h3,
.benefits-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.description-section p,
.benefits-section ul {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.benefits-section ul {
    padding-left: 20px;
}

.benefits-section li {
    margin-bottom: 8px;
}

.read-more {
    font-size: 13px;
    color: #c9a961;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.read-more:hover {
    color: #333;
}

.delivery-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.delivery-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.delivery-check {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.pincode-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
}

.check-btn {
    padding: 12px 30px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.check-btn:hover {
    background: #333;
    color: #fff;
}

.delivery-info {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* Ingredients Section */
.ingredients-section {
    padding: 60px 0;
    background: #fff;
}

.ingredients-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

.ingredients-left {
    position: sticky;
    top: 120px;
}

.ingredients-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.ingredients-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    color: #333;
    margin-bottom: 30px;
}

.view-full-list {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.view-full-list:hover {
    color: #c9a961;
    border-color: #c9a961;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.ingredient-card {
    text-align: left;
}

.ingredient-image {
    width: 160px;
    height: 160px;
    margin: 0 0 25px 0;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.ingredient-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive for Ingredients Section */
@media (max-width: 1024px) {
    .ingredients-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .ingredients-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ingredients-left {
        position: static;
        text-align: center;
    }
    
    .ingredients-title {
        font-size: 32px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .ingredient-card {
        text-align: center;
    }
    
    .ingredient-image {
        margin: 0 auto 25px;
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .ingredients-title {
        font-size: 28px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .ingredient-image {
        width: 120px;
        height: 120px;
    }
    
    .ingredient-card h4 {
        font-size: 16px;
    }
    
    .ingredient-card p {
        font-size: 13px;
    }
}

/* How to Use Section */
.how-to-use-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.how-to-use-banner {
    background: #e8d5bf;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
}

.how-to-use-banner p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: #fff;
}

.section-header-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-header-reviews h2 {
    font-size: 32px;
    font-weight: 400;
    color: #333;
}

.pipe {
    font-size: 24px;
    color: #ddd;
}

.review-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.review-stats-left h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.star-label {
    font-size: 13px;
    min-width: 40px;
    color: #666;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #ffa500;
    transition: width 0.3s;
}

.rating-count {
    font-size: 13px;
    min-width: 30px;
    text-align: right;
    color: #666;
}

.review-stats-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overall-rating {
    margin-bottom: 25px;
}

.rating-number {
    font-size: 64px;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars-large {
    font-size: 28px;
    color: #ffa500;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.total-reviews {
    font-size: 13px;
    color: #666;
}

.write-review-btn {
    padding: 15px 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.write-review-btn:hover {
    background: #c9a961;
}

.review-filters {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.review-item {
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-rating {
    color: #ffa500;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.reviewer-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.helpful-btn {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 3px;
    transition: all 0.3s;
}

.helpful-btn:hover {
    background: #e0e0e0;
}

.load-more-btn {
    display: block;
    margin: 0 auto;
    padding: 15px 50px;
    background: #fff;
    border: 1px solid #333;
    color: #333;
    border-radius: 3px;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: #333;
    color: #fff;
}

/* Related Products Section */
.related-products {
    padding: 60px 0;
    background: #f9f9f9;
}

.related-products h2 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Latest Reads Section */
.latest-reads {
    padding: 60px 0;
    background: #fff;
}

.latest-reads h2 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.read-more-link {
    font-size: 13px;
    color: #c9a961;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: #333;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 60px 0 100px;
    text-align: center;
}

.about-section h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-section p {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.read-more-btn {
    padding: 12px 35px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.read-more-btn:hover {
    background: #c9a961;
}
.newsletter-section {
    background: #f0f0f0;
    padding: 60px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.newsletter-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 20px;
    display: flex;
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-size: 13px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn {
    padding: 15px 40px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.subscribe-btn:hover {
    background: #c9a961;
}

.newsletter-terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 11px;
    color: #555;
}

.newsletter-terms input[type="checkbox"] {
    cursor: pointer;
}

.newsletter-terms label {
    cursor: pointer;
}

.newsletter-terms a {
    color: #1a1a1a;
    text-decoration: underline;
}

.newsletter-terms a:hover {
    color: #c9a961;
}

.store-locator {
    font-size: 15px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.store-locator i {
    font-size: 16px;
    color: #c9a961;
}

.store-locator a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.store-locator a:hover {
    color: #c9a961;
}

/* Footer Styles */
.footer {
    background: #fff;
    color: #333;
    padding: 50px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #c9a961;
}

.hiring-link {
    position: relative;
}

.hiring-badge {
    background: #4CAF50;
    color: #fff;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.contact-info strong {
    color: #333;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #c9a961;
}

.social-section {
    margin-top: 30px;
}

.social-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 3px;
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #c9a961;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-methods > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 30px;
    width: auto;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
}

.copyright {
    font-size: 13px;
    color: #666;
}

.bottom-sheet-container{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(95%);
    transition: transform 0.3s ease;
}

/* Newsletter and Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-section h2 {
        font-size: 28px;
    }

    .newsletter-desc br {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 5px;
    }

    .newsletter-input {
        border-bottom: 1px solid #e0e0e0;
    }

    .subscribe-btn {
        border-radius: 0;
    }

    .newsletter-terms {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .newsletter-section h2 {
        font-size: 24px;
    }

    .newsletter-desc {
        font-size: 13px;
    }

    .payment-icons {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 220px 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 25px;
    }

    .product-detail-wrapper {
        gap: 40px;
    }

    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        order: -1;
        width: 100%;
        margin-bottom: 15px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
    }

    .header-link {
        display: none;
    }

    /* Mobile Navigation */
    .main-nav {
       position: fixed;

        top: 0;
        left: -100%;
    
        width: 280px;
    
        height: 100vh;   /* ✅ iPhone fix */
    
        background: #fff;
    
        flex-direction: column;
        align-items: flex-start;
    
        /* ❌ Remove top padding */
        padding: 0 15px 20px;
    
        gap: 0;
    
        border-top: none;
    
        z-index: 10007;
    
        transition: left 0.3s ease;
    
        overflow-y: auto;

    }

    .main-nav.active {
        left: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: #1a1a1a;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .nav-item {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
    }

    .nav-offers {
        width: auto;
        display: inline-block;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Show Mobile Filter Bar */
    .mobile-filter-bar {
        display: flex;
    }

    /* Hide Desktop Sidebar and Header on Mobile */
    .sidebar {
        display: none;
    }

    .products-header {
        display: none;
    }

    /* Adjust content for mobile filter bar */
    .main-content {
        padding-bottom: 80px;
    }

    .badge {
        font-size: 7px;
        padding: 1px 4px;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-title-detail {
        font-size: 26px;
    }

    .size-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-wrap: wrap;
    }

    .notify-btn,
    .add-to-bag-btn {
        flex: 1 1 100%;
    }

    .ingredients-section h2 {
        font-size: 28px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-summary {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .review-filters {
        flex-direction: column;
        gap: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-left,
    .header-right {
        gap: 10px;
        flex-direction: column;
    }

    .store-selector {
        flex-direction: column;
        gap: 5px;
    }

    .page-title h1 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 100%;
    }

    .product-title-detail {
        font-size: 22px;
    }

    .price {
        font-size: 24px;
    }

    .delivery-check {
        flex-direction: column;
    }

    .thumbnail-gallery {
        gap: 8px;
    }

    .thumbnail {
        width: 60px;
        height: 80px;
    }

    .ingredients-section h2 {
        font-size: 24px;
    }

    .rating-number {
        font-size: 48px;
    }

    .section-header-reviews h2 {
        font-size: 24px;
    }

    .review-item {
        padding: 20px;
    }
}

/* Accessibility */
button:focus,
input:focus,
select:focus {
    outline: 2px solid #c9a961;
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid #c9a961;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .sidebar,
    .products-header {
        display: none;
    }
}
/* Mobile Filter Bar - Add this to your style.css */

/* Mobile Filter Bar (hidden on desktop) */
.mobile-filter-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-filter-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    border-right: 1px solid #e0e0e0;
}

.mobile-filter-btn:last-child {
    border-right: none;
}

.mobile-filter-btn i {
    font-size: 20px;
    color: #333;
    margin-bottom: 4px;
}

.mobile-filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-current {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

.mobile-filter-count {
    position: absolute;
    top: 8px;
    right: 50%;
    transform: translateX(20px);
    background: #c9a961;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

/* Bottom Sheet Overlay */
.bottom-sheet-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.active {
    display: block;
    opacity: 1;
}

/* Bottom Sheet Container */
.bottom-sheet-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
}

.bottom-sheet-container.active {
    transform: translateY(0);
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 12px auto 8px;
}

/* Bottom Sheet Tabs */
.bottom-sheet-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
}

.sheet-tab {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.sheet-tab i {
    font-size: 16px;
}

.sheet-tab.active {
    color: #c9a961;
    background: #fff;
    border-bottom: 2px solid #c9a961;
}

.filter-badge {
    background: #c9a961;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: 4px;
}

/* Bottom Sheet Content */
.bottom-sheet-content {
    display: none;
    padding: 0;
}

.bottom-sheet-content.active {
    display: block;
}

.sheet-inner-pad {
    padding: 20px;
}

/* Filter Options in Bottom Sheet */
#filterContent .filter-section {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 16px;
}

#filterContent .filter-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0 0 12px 0;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

#filterContent .filter-heading .toggle-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

#filterContent .filter-heading.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

#filterContent .filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 14px 0;
}

#filterContent .filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    padding: 4px 0;
}

#filterContent .filter-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#filterContent .filter-heading-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

#filterContent .price-range {
    margin-top: 12px;
}

#filterContent .price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

#filterContent .price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #c9a961;
    cursor: pointer;
}

#filterContent .price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #c9a961;
    cursor: pointer;
    border: none;
}

#filterContent .price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

/* Bottom Sheet Actions */
.bottom-sheet-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.bottom-clear,
.bottom-apply {
    flex: 1;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.bottom-clear {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
}

.bottom-clear:hover {
    background: #f5f5f5;
}

.bottom-apply {
    background: #c9a961;
    color: #fff;
    border: none;
}

.bottom-apply:hover {
    background: #b8935a;
}

/* Sort Select in Bottom Sheet */
#sortContent .sort-select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
    color: #333;
}

/* Show mobile filter bar on mobile only */
@media (max-width: 768px) {
    .mobile-filter-bar {
        display: flex;
    }
    
    /* Ensure products section has padding for the fixed bar */
    .products-section {
        padding-bottom: 80px;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-filter-bar,
    .bottom-sheet-container,
    .bottom-sheet-overlay {
        display: none !important;
    }
}

/* Related Products - You May Also Like Section - Add to style.css */

/* Fix for Related Products Section */
.related-products .product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.related-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.related-products .product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.related-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

.related-products .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 3;
    color: #1a1a1a;
    cursor: pointer;
}

.related-products .wishlist-btn:hover {
    background: #c9a961;
    color: #fff;
}

.related-products .wishlist-btn.active {
    color: #c9a961;
}

.related-products .wishlist-btn.active i {
    font-weight: 900;
}

.related-products .product-info {
    padding: 20px;
}

.related-products .product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    display: block;
    transition: color 0.3s;
    color: #1a1a1a;
    text-transform: uppercase;
}

.related-products .product-title:hover {
    color: #c9a961;
}

.related-products .product-price {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.related-products .select-size-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #1a1a1a;
    background: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.3s;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    text-transform: uppercase;
}

.related-products .select-size-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Responsive for Related Products */
@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}