



/* Header Styles */





/* Logo */










/* Collection Page */
.collection-page {
    padding-top: 40px;
    padding-bottom: 80px;
}

.collection-header {
    text-align: left;
    margin-bottom: 30px;
}

/* Category Hero Banner */
.category-hero {
    background-color: #f6f7f6; /* Soft green-grey */
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.category-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.collection-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    color: #111;
    margin-bottom: 15px;
}

.collection-desc {
    color: #444;
    font-weight: 300;
    line-height: 1.6;
}

.collection-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 40px 0;
}

/* Filters Bar */
.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.filters-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-dropdown {
    font-size: 0.95rem;
    color: #234229;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.filter-dropdown:hover {
    color: #313232;
}

.filter-dropdown i {
    font-size: 0.75rem;
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.sort-dropdown {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-dropdown i {
    font-size: 0.75rem;
    color: #999;
}

.product-count {
    font-size: 0.85rem;
    color: #888;
    font-weight: 300;
    margin-left: 20px;
}

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

/* Free Shipping Progress */
.cart-progress-container {
    padding: 15px 25px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.progress-text {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #e5e5e5;
    border-radius: 4px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background-color: #234229;
    border-radius: 4px;
}

.progress-icon {
    position: absolute;
    right: -5px;
    top: -6px;
    color: #234229;
    background-color: #fff;
    border-radius: 50%;
    padding: 2px;
    font-size: 1.1rem;
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.cart-item {
    display: flex;
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.item-image {
    width: 90px;
    height: 110px;
    margin-right: 20px;
    background-color: #f7f5f2;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.item-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.item-price {
    font-size: 0.95rem;
    color: var(--text-color);
}

.item-variant {
    font-size: 0.8rem;
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.item-actions {
    display: flex;
    align-items: center;
    margin-top: auto;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    height: 36px;
}

.qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 100%;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
}

.quantity-selector input {
    width: 30px;
    height: 100%;
    border: none;
    text-align: center;
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    font-size: 0.9rem;
    color: var(--text-color);
    outline: none;
}

.item-remove {
    font-size: 0.75rem;
    text-decoration: underline;
    color: #666;
    font-style: italic;
}

/* Upsell Section */
.cart-upsell {
    background-color: #eaf1ed;
    padding: 20px 25px;
}

.upsell-title {
    font-size: 0.75rem;
    color: #234229;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.upsell-desc {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.upsell-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
}

.upsell-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
}

.upsell-details {
    flex: 1;
}

.upsell-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 3px 0;
}

.upsell-item-desc {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
}

.upsell-add-btn {
    background: none;
    border: 1px solid #234229;
    color: #234229;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.upsell-add-btn:hover {
    background-color: #234229;
    color: #fff;
}

/* Cart Footer */
.cart-footer {
    padding: 25px;
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
}

.gift-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.gift-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
}

.gift-checkbox input {
    margin-right: 8px;
}

.happiness-link {
    color: #234229;
    text-decoration: underline;
}

.ship-toggle {
    display: flex;
    background-color: #f7f5f2;
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 15px;
}

.ship-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 10px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
}

.ship-btn.active {
    background-color: #234229;
    color: #fff;
}

.delivery-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 20px;
}

.delivery-info .ship-date {
    color: #234229;
    font-weight: 500;
}

.cart-summary {
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.total-row {
    font-weight: 600;
    color: #000;
    font-size: 1rem;
    margin-top: 10px;
}

.taxes-note {
    font-size: 0.8rem;
    font-style: italic;
    color: #777;
    text-align: right;
    margin-bottom: 20px;
}

/* Product Page Styles */
.breadcrumb-container {
    padding: 20px 5%;
    font-size: 0.85rem;
    color: #666;
}

.breadcrumb-container a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-container a:hover {
    color: #234229;
}

.breadcrumb-container span {
    color: #000;
}

/* Product Top Section */
.product-top-section {
    display: flex;
    padding: 0 5% 60px 5%;
    gap: 40px;
    align-items: flex-start;
}

.product-gallery {
    flex: 1.5;
    display: flex;
    gap: 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    align-self: flex-start;
    max-height: calc(100vh - 80px);
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 111px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding-right: 5px;
}

.gallery-thumbnails::-webkit-scrollbar {
    width: 4px;
}
.gallery-thumbnails::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 111px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.gallery-thumbnails img.active,
.gallery-thumbnails img:hover {
    border: 1px solid #234229;
}

.gallery-main {
    flex: 1;
    overflow: hidden;
    aspect-ratio: 1200 / 1553;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Product Details */
.product-details {
    flex: 1;
    max-width: none;
    margin-right: 0;
}

.pdp-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 8px;
    font-weight: 400;
    line-height: 1.1;
}

.pdp-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
}

.pdp-reviews .stars {
    color: #234229;
    font-size: 0.95rem;
}

.pdp-desc {
    font-size: 0.9rem;
    color: #111;
    font-style: italic;
    font-weight: 200;
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
    margin-bottom: 15px;
}

.pdp-price-row {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.pdp-price-row .promo-text {
    font-size: clamp(0.6rem, 2.5vw, 0.85rem);
    margin-top: 0;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
}

.price-new {
    font-weight: 400;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}
.pdp-selector {
    margin-bottom: 25px;
}

.selector-title {
    font-size: 0.9rem;
    color: #111;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selector-title-left {
    display: flex;
    gap: 5px;
}

.guide-link {
    font-size: 0.8rem;
    color: #027B5F;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}

.selected-val {
    font-style: italic;
    color: #111;
    font-weight: 400;
}

.options-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.option-btn {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    padding: 15px 25px;
    min-width: 150px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.option-btn.active {
    border-color: #111;
    border-width: 1px;
    background-color: #e6e6e6;
}

.option-btn:hover {
    border-color: #888;
}

.planter-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.planter-btn img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    opacity: 0.8;
}

.planter-btn.active img {
    opacity: 1;
}

.color-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 5px;
}

.pdp-add-row {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.btn-add-to-cart {
    flex: 1;
    height: 52px;
    background-color: #234229;
    color: #fff;
    border: none;
    padding: 0 16px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-add-to-cart:hover {
    background-color: #027B5F;
}

.btn-wishlist {
    width: 52px;
    height: 52px;
    background-color: #fff;
    border: 2px solid #234229;
    color: #234229;
    border-radius: 50% !important; /* Override global button border-radius: 0 */
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-wishlist:hover {
    background-color: #234229;
    color: #fff;
}

.promo-text {
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
}
.promo-text a {
    color: #333;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .product-top-section {
        flex-direction: column;
    }
    .product-gallery {
        flex-direction: column-reverse;
        width: 100%;
    }
    .gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
    .gallery-thumbnails img {
        width: 80px;
        height: 80px;
    }
    .product-details {
        max-width: 100%;
    }
}

.pdp-afterpay {
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.pdp-afterpay a {
    color: #555;
    text-decoration: underline;
}

.pdp-upsells {
    background-color: #faf9f7;
    padding: 25px;
    border-radius: 12px;
}

.upsells-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.freq-bought-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.fb-checkbox-wrap {
    margin-right: 15px;
}

.freq-bought-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 0;
    margin-right: 15px;
}

.fb-info {
    flex: 1;
}

.fb-info label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
}

.fb-info p {
    font-size: 0.75rem;
    color: #666;
    margin: 2px 0 0 0;
}

.fb-price {
    font-size: 0.85rem;
    color: #234229;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.fb-add-btn {
    background-color: #234229;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

/* PDP Info Section */
.pdp-info-section {
    background-color: #faf9f7;
    padding: 60px 5%;
}

.pdp-tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 40px;
}

.pdp-tabs {
    display: flex;
    gap: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn.active {
    color: #000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #234229;
}

.tab-care-btn {
    background-color: #eaf1ed;
    color: #234229;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-info-content {
    display: flex;
    gap: 60px;
}

.info-image {
    flex: 1;
    max-width: 450px;
}

.info-image img {
    width: 100%;
    border-radius: 12px;
}

.info-text {
    flex: 1;
}

.care-level {
    font-size: 0.8rem;
    color: #234229;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.info-desc {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.care-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 40px;
}

.care-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.size-guide-title {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.size-guide-icons {
    display: flex;
    gap: 30px;
}

.size-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.size-icon-col p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 10px 0 5px;
    color: var(--text-color);
}

.size-icon-col span {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.size-icon {
    color: #234229;
}

/* Resources Section */
.pdp-resources-section {
    padding: 60px 5%;
    background-color: #fff;
}

.resources-grid {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

.resources-list {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #faf9f7;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.resource-link:hover {
    background-color: #f0f7f4;
    color: #234229;
}

.resource-link i {
    color: #234229;
    font-size: 1.2rem;
}

.resources-video {
    flex: 1;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
    display: flex;
    padding: 60px 5%;
    gap: 60px;
    background-color: #fff;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
}

.why-content {
    flex: 1;
}

.why-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.why-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
}

.comparison-table {
    display: flex;
    flex-direction: column;
}

.comp-row, .comp-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}

.comp-header {
    border-bottom: none;
    padding-bottom: 10px;
}

.comp-col {
    text-align: center;
}

.comp-feature {
    flex: 2;
    text-align: left;
}

.comp-feature h4 {
    font-size: 1rem;
    margin: 0 0 5px 0;
    color: var(--text-color);
}

.comp-feature p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.comp-sill {
    flex: 1;
    background-color: #eaf1ed;
    padding: 15px;
    border-radius: 8px;
    color: #234229;
}

.comp-other {
    flex: 1;
    color: #999;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-left: 10px;
}

.comp-row .comp-sill, .comp-row .comp-other {
    font-size: 1.2rem;
    padding: 20px 15px;
}

.plant-guarantee-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 30px;
    float: right;
}

/* Mobile Accordion Defaults */
.mobile-accordion-header {
    cursor: default;
    display: block;
}
.accordion-icon {
    display: none !important;
}
.mobile-accordion-content {
    display: block !important;
}

@media (max-width: 1024px) {
    .header-top {
        padding: 15px 20px;
    }
    .header-search {
        margin: 0 20px;
    }
    .main-nav {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none; /* Mobile search usually moves or toggles */
    }
    .header-bottom {
        display: none; /* Hide full menu on mobile */
    }
    .growing-zone {
        display: none;
    }
}


/* Guide Drawers (Size/Style) */
.guide-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.guide-overlay.open {
    visibility: visible;
    opacity: 1;
}
.guide-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 550px;
    max-width: 550px;
    background: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}
.guide-drawer.open {
    transform: translateX(0);
}
.guide-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}
.guide-header h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #111;
}
.guide-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
}
.guide-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}
.guide-intro {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}
.guide-section-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    margin-top: 25px;
}
.guide-section-title:first-child {
    margin-top: 0;
}
.guide-item {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    align-items: center;
}
.guide-icon {
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    flex-shrink: 0;
}
.guide-icon i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.guide-icon span {
    font-size: 0.7rem;
    font-style: italic;
}
.guide-text h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 5px 0;
}
.guide-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* PDP Extra Info Sections */
.pdp-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 15px;
    margin-bottom: 40px;
}

.extra-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 400;
}

.extra-text-block p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.extra-text-block ul {
    margin-bottom: 40px;
    padding-left: 20px;
}

.extra-text-block li {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
    list-style-type: disc;
}

.care-card {
    background-color: #F7F5F2;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    padding: 60px 30px 30px;
    position: relative;
    margin: 65px 0 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.care-card-img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.care-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-accordion-icon {
    display: none !important;
}

.care-card-header h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: #111;
    margin-bottom: 5px;
}

.care-card-header p {
    font-size: 0.85rem;
    color: #111;
    font-style: italic;
    margin-bottom: 30px;
}

.care-row {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 25px;
    gap: 12px;
}

.care-icon {
    font-size: 1.1rem;
    color: #234229;
    width: 22px;
    flex-shrink: 0;
    text-align: center;
    margin-top: 8px;
}

.care-desc h5 {
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 6px;
    margin-top: 0;
}

.care-desc p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.btn-care-guide {
    display: block;
    width: 100%;
    background-color: #234229;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
    font-family: 'Outfit', sans-serif;
}

.btn-care-guide:hover {
    background-color: #027B5F;
}

.why-choose-list h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 400;
}

.why-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    font-size: 1.2rem;
    color: #007b5f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #c2ded7;
    background-color: #f6faf9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.pdp-upsells {
    background-color: #faf9f7;
    padding: 25px;
    border-radius: 0;
}

.upsells-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.freq-bought-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 0;
    margin-bottom: 12px;
    box-shadow: none;
}

.why-choose-list .why-desc {
    margin-bottom: 0;
}

.why-desc h5 {
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 8px;
}

.why-desc p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.why-desc a {
    color: #007b5f;
    text-decoration: none;
    font-weight: 500;
    background-image: linear-gradient(#007b5f, #007b5f);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1.5px;
    transition: background-size 0.3s ease-in-out;
}

.why-desc a:hover {
    background-size: 100% 1.5px;
}

/* --- REVIEWS SECTION --- */
.reviews-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Outfit', sans-serif;
    color: #111;
    scroll-margin-top: 160px;
    min-height: 50vh;
}
.reviews-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
.reviews-summary-left {
    display: flex;
    gap: 30px;
    align-items: center;
}
.reviews-rating-big {
    text-align: center;
}
.reviews-rating-big h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin: 0 0 5px 0;
    line-height: 1;
}
.reviews-stars-big {
    color: #234229;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.reviews-rating-big p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}
.reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.review-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #234229;
}
.bar-track {
    width: 150px;
    height: 10px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: #234229;
}
.bar-count {
    color: #666;
    min-width: 15px;
}

.reviews-summary-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}
.recommend-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
}
.recommend-percent {
    background: #234229;
    color: white;
    padding: 4px 8px;
    font-weight: 600;
    border-radius: 4px;
}
.btn-write-review {
    border: 1px solid #d1d5db;
    background: white;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.btn-write-review:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Reviews Tabs & Filter */
.reviews-tabs {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-tab {
    padding: 10px 0;
    border-bottom: 3px solid #234229;
    color: #234229;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.review-tab-count {
    background: #f3f4f6;
    color: #374151;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.8rem;
}
/* Custom Dropdown */
.custom-dropdown {
    position: relative;
    font-family: 'Outfit', sans-serif;
    user-select: none;
}
.custom-dropdown .dropdown-selected {
    padding: 8px 30px 8px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: white;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.custom-dropdown .dropdown-selected i {
    font-size: 0.8rem;
    color: #666;
}
.custom-dropdown .dropdown-options {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    width: max-content;
    min-width: 100%;
    display: none;
    z-index: 100;
}
.custom-dropdown.active .dropdown-options {
    display: block;
}
.custom-dropdown .dropdown-options li {
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}
.custom-dropdown .dropdown-options li:hover {
    background: #f3f4f6;
}

/* Review Item */
.review-item {
    padding: 30px 0;
    border-bottom: 1px solid #f3f4f6;
}
.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.review-author {
    font-size: 0.95rem;
    color: #333;
}
.verified-buyer {
    color: #234229;
    margin-left: 10px;
    font-size: 0.9rem;
}
.review-date {
    color: #666;
    font-size: 0.9rem;
}
.review-recommended {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.review-recommended i {
    color: #234229;
}
.review-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.review-stars {
    color: #234229;
    font-size: 1rem;
}
.review-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}
.review-content {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}
.review-photos {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.review-photos img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

/* Write Review Form */
.write-review-form {
    display: none;
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.write-review-form.active {
    display: block;
}


.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.interactive-stars {
    font-size: 1.5rem;
    color: #d1d5db;
    cursor: pointer;
}
.interactive-stars i.active {
    color: #234229;
}
.interactive-stars i:hover,
.interactive-stars i:hover ~ i {
    color: #234229;
}
.recommend-radios {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.recommend-radios label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    cursor: pointer;
}
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}
.btn-submit-review {
    background: #234229;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}
.btn-submit-review:hover {
    background: #027B5F;
}
.photo-upload-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn-add-photos {
    border: 1px solid #d1d5db;
    background: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.photo-preview {
    display: flex;
    gap: 10px;
}
.photo-preview img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

/* Two-Column Layout */
.collection-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Filter */
.collection-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.sidebar-block {
    margin-bottom: 35px;
}

.sidebar-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-list a:hover {
    color: #234229;
}

.sidebar-list a.active {
    color: #234229;
    font-weight: 600;
}

.sidebar-list a.active::before {
    content: '\f054';
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 8px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4b5563;
    cursor: pointer;
}

.custom-checkbox input {
    accent-color: #234229;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Main Content Area */
.collection-main {
    flex-grow: 1;
    min-width: 0; /* Prevents overflow */
}

/* Toolbar */
.collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.toolbar-results {
    font-size: 0.95rem;
    color: #6b7280;
}

.toolbar-sort {
    display: flex;
    align-items: center;
}

.toolbar-sort label {
    font-size: 0.95rem;
    color: #4b5563;
    margin-right: 10px;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select-wrapper select {
    appearance: none;
    background: transparent;
    border: 1px solid #d1d5db;
    padding: 8px 35px 8px 15px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #111;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.custom-select-wrapper select:focus {
    border-color: #234229;
}

.custom-select-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    font-size: 0.8rem;
}



@media (max-width: 768px) {
    .collection-layout {
        flex-direction: column;
    }
    
    .collection-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
    
    .collection-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}





.profile-section { display: none; background: #fff; padding: 30px; border-radius: 0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.profile-section.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; color: #1e293b; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #cbd5e1; border-radius: 0 !important; font-family: 'Outfit', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.form-control:focus { border-color: #234229; }
.btn-save { background: #234229; color: #fff; padding: 12px 25px; border: none; border-radius: 0; font-weight: 600; cursor: pointer; font-size: 0.95rem; transition: background 0.2s; }
.btn-save:hover { background: #027B5F; }
.btn-cancel { background: transparent; color: #234229; border: none; padding: 12px 20px; font-weight: 600; cursor: pointer; font-size: 0.95rem; text-decoration: underline; }

/* Modal Styles */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; animation: fadeIn 0.2s ease; }
.modal-content { background: #fff; width: 100%; max-width: 600px; border-radius: 0; padding: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.modal-header h3 { margin: 0; font-size: 1.5rem; color: #1e293b; font-family: 'Libre Baskerville', serif; }
.modal-header button { background: none; border: none; font-size: 1.5rem; color: #64748b; cursor: pointer; transition: color 0.2s; }
.modal-header button:hover { color: #ef4444; }

/* Force product images to 111x111px as requested */

/* Upsell Typography */
.upsells-title { font-weight: 500; }
.upsell-item-title { font-weight: 400; }

/* Mobile break utility */
.mobile-break { display: none; }


.main-img, .hover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
}

.hover-img {
    opacity: 0;
}

.product-image.has-hover:hover .main-img,
.layout3-product-image.has-hover:hover .main-img {
    opacity: 0;
}

.product-image.has-hover:hover .hover-img,
.layout3-product-image.has-hover:hover .hover-img {
    opacity: 1;
}




/* Siyam Rupali Font (Local) */
@font-face {
  font-family: 'Siyam Rupali';
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  src: url('../fonts/siyam-rupali/siyam-rupali-v1.070.woff2') format('woff2'),
       url('../fonts/siyam-rupali/siyam-rupali-v1.070.ttf') format('truetype');
}
@font-face {
  font-family: 'Siyam_Rupali';
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  src: url('../fonts/siyam-rupali/siyam-rupali-v1.070.woff2') format('woff2'),
       url('../fonts/siyam-rupali/siyam-rupali-v1.070.ttf') format('truetype');
}
