.product-main {
    margin: 60px 0;
}

.product-breadcrumb {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
}

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

.gallery-thumbs {
    width: 130px;
    max-height: 600px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Hide scrollbar for cleaner look */
    scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.thumb {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}

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

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

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

.gallery-main {
    position: relative;
    width: 600px;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: background 0.2s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #f8f9fa;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

/* Product Info Right Column */
.product-info {
    padding-left: 10px;
}

.product-category {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.product-title {
    font-size: 18px;
    font-weight: 500;
    margin-top: 6px;
}

.rating-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 10px;
    background: #fff5cc;
    border: 1px solid #e6d88f;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.rating-badge-main i {
    color: #d4a300;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.price-main {
    font-size: 30px;
    font-weight: 600;
}

.price-cut {
    font-size: 21px;
    color: #888;
    text-decoration: line-through;
    display: inline-block;
}

.discount-badge-main {
    background: #d7f5d7;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: 600;
}

.product-section {
    margin-top: 25px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pack-options {
    display: flex;
    gap: 12px;
}

.pack-box {
    width: 160px;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
}

.pack-box.active {
    border: 1px solid #ffd84d;
}

.pack-top {
    background: #f8f9fa;
    width: 100%;
    text-align: center;
    font-weight: 600;
    padding: 4px 0;
}

.pack-box.active .pack-top {
    background: #f2e8ff;
}

.pack-bottom {
    font-weight: 600;
    flex: 1;
    display: flex;
    align-items: center;
}

.flavor-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.flavor-btn {
    border: 1px solid #ccc;
    padding: 8px 14px;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.flavor-btn.active {
    background: #f2e8ff;
    border-color: #d1b3ff;
}

.cart-row {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 6px;
    height: 48px;
}

.qty-box button {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
    font-weight: 600;
}

.qty-box span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.add-cart-btn-detail {
    flex: 1;
    background: #ffd84d;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    height: 48px;
}

.add-cart-btn-small {
    flex: 1;
    background: #ffd84d;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    height: 40px;
}

.add-cart-btn:hover {
    background: #f5cc30;
}

/* Disclaimer */
.product-disclaimer {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 25px;
    font-size: 15px;
}

.disclaimer-title {
    font-weight: 600;
    font-size: 16px;
}

/* Shipping & Delivery */
.pincode-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    width: 200px;
}

.pincode-input {
    flex: 1;
    border-radius: 6px;
    border: 1px solid #ffd84d;
    padding: 10px;
    outline: none;
}

.check-btn {
    padding: 10px 18px;
    background: #ffd84d;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.check-btn:hover {
    background: #e6c039;
}

/* Certification / Origin */
.product-info-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-top: 25px;
    max-width: 460px;
}

.cert-icon {
    width: 60px;
}

.cert-text {
    font-size: 16px;
    font-weight: 500;
}

.origin-title {
    font-size: 16px;
}

.origin-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}

/* Expandable */
.product-expand {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 12px;
}

.expand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    font-weight: 600;
    cursor: pointer;
}

.expand-header i {
    transition: transform 0.2s ease;
}

/* Rotate right chevron down when open snippet */
.expand-header:not(.collapsed) i {
    transform: rotate(90deg);
}

.expand-content {
    padding: 14px;
    border-top: 1px solid #eee;
    color: #666;
}

/* Savings Section */
.product-savings {
    margin-top: 20px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(90deg,
            #ddd9f9 0%,
            #f6e7ef 47.5%,
            #fbd9ea 100%);
}

.savings-scroll {
    display: flex;
    overflow-x: auto;
    gap: 0;
    scrollbar-width: none;
}

.savings-scroll::-webkit-scrollbar {
    display: none;
}

.saving-item {
    flex: 0 0 150px;
    text-align: center;
    padding: 14px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.saving-item:last-child {
    border-right: none;
}

.saving-number {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

.saving-label {
    display: block;
    font-size: 16px;
    color: #111;
}

/* Sticky Gallery Column */
@media (min-width: 992px) {
    .product-gallery-column {
        position: sticky;
        top: 120px;
        align-self: flex-start;
    }
}

/* Promotional Banners */
.product-detail-banners {
    margin-top: 60px;
    margin-bottom: 60px;
}

.banner-row {
    margin-bottom: 20px;
}

.banner-box {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

/* Full width banner override */
.full-banner {
    width: 100%;
}

/* Explore Section */
.product-explore-section {
    margin: 60px 0;
}

/* Related Products Section */
.product-related-section {
    width: 100%;
    margin: 60px 0 0 0;
    padding: 50px 0;
    background: linear-gradient(90deg,
            #ddd9f9 0%,
            #f6e7ef 47.5%,
            #fbd9ea 100%) !important;
}

/* Why Choose Us Section */
.why-choose-us {
    margin: 60px 0;
}

/* Testimonial Banner Section */
.product-testimonial-banner {
    width: 100%;
    padding-top: 0px;
}

.testimonial-banner-img {
    width: 100%;
    height: auto;
    display: block;
}