.product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-top: 60px;
}

.product-wrapper.mobile-view{
    display: none;
}

.col-left-wrapper {
    flex: 1.2;
    width: 100%;
    padding: 0 20px;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.badge-save {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #E16203;
    color: white;
    font-weight: 800;
    padding: 8px 15px;
    font-size: 16px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 2;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.thumb {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.thumb:hover { border-color: #ccc; }

.thumb.active {
    border-color: #000;
}

.quote-box {
    background-color: #FFF5EB;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.quote-box.mobile-view {
    display: none;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.4;
    color: #333;
}

.highlight-orange { color: #E16203; font-weight: bold; }

.plant-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.plant-info.mobile-view {
    display: none;
}

.plant-icon { width: 60px; height: auto; }
.plant-text h4 { margin: 0 0 5px 0; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #555; }
.plant-text p { font-size: 13px; line-height: 1.5; color: #666; margin: 0; }
.plant-text a { color: #000; text-decoration: underline; }


.col-right {
    flex: 1;
    width: 100%;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.stars { color: #C19A6B; font-size: 16px; letter-spacing: 2px; }

.product-title.mobile-view {
    display: none;
}

.rating-row.mobile-view{
    display: none;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

.benefits-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #C19A6B;
    font-weight: bold;
}
.benefits-list a { color: #444; text-decoration: underline; }

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.price-option {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.price-option.active {
    border: 2px solid #E16203;
    background-color: #fff;
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #666;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.price-option.active .option-badge {
    background-color: #E16203;
}

.option-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
}

.radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-option.active .radio-circle {
    border-color: #E16203;
}

.price-option.active .radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #E16203;
    border-radius: 50%;
}

.option-price {
    text-align: right;
}

.old-price { text-decoration: line-through; color: #999; font-size: 14px; margin-right: 5px; }
.new-price { font-weight: 700; font-size: 18px; color: #E16203; }

.sub-details {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
    padding-left: 30px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.sub-item::before { content: '✔'; color: #E16203; margin-right: 4px; }

.price-option.active .sub-details { display: grid; }

.stock-notice {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
.stock-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}
.stock-icon { width: 18px; height: 18px; }

.gallery-container {
    display: none;
}

.add-to-cart-btn {
    width: 100%;
    background-color: #E16203;
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    letter-spacing: 1px;
    transition: background 0.3s;
}
.add-to-cart-btn:hover { background-color: #c25200; }

.black-week-banner {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.bw-orange { color: #E16203; }

.timer-block {
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.timer-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #555;
}

.timer-digits {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-family: 'Space Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.time-part { text-align: center; }
.time-label-small {
    display: block;
    font-size: 10px;
    color: #999;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: -5px;
}

.trust-icons-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
    font-size: 10px;
    color: #555;
    text-transform: uppercase;
}
.t-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    max-width: 80px;
}
.t-icon { width: 24px; height: 24px; object-fit: contain; }

.rating-row1.mobile-view{
    display: none;
}


@media (max-width: 1024px){
    .product-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding-top: 30px;
    }

    .product-title {
        display: none;
    }

    .thumbnails-grid {
        gap: 0;
        margin-bottom: 0;
    }

    .product-title.mobile-view {
        display: flex;
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    .rating-row {
        display: none;
    }

    .rating-row.mobile-view{
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        font-size: 11px;
        color: #666;
        text-transform: uppercase;
        font-weight: 600;
    }

    .rating-row1.mobile-view{
        display: none;
    }

    .gallery-container {
        width: 100%;
        max-width: 600px;
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .main-image-view {
        width: 100%;
        height: 300px;
        background-color: #eee;
        margin-bottom: 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

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

    .thumbnails-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .nav-btn {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #ddd;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: all 0.2s;
        flex-shrink: 0;
    }

    .nav-btn:hover {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .nav-btn.prev { margin-right: 10px; }
    .nav-btn.next { margin-left: 10px; }

    .thumbnails-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        padding: 4px 0;
    }

    .thumbnails-grid::-webkit-scrollbar {
        display: none;
    }

    .thumb {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.2s;
    }

    .thumb:hover { border-color: #ccc; }

    .thumb.active {
        border-color: #000;
    }

    .plant-info {
        display: none;
    }

    .plant-info.mobile-view {
        display: none;
    }

    .option-price {
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .new-price { font-size: 14px; }

    .quote-box {
        display: none;
    }

    .quote-box.mobile-view {
        display: flex;
        background-color: #FFF5EB;
        padding: 30px;
        text-align: center;
        border-radius: 12px;
        margin-bottom: 30px;
    }
}