/* Comprehensive Premium Product Styles - Overhauled */

:root {
    --color-noir: #111111;
    --color-gold: #c2a16d;
    --color-gold-light: #dfcba4;
    --color-gold-dark: #8c6a42; /* Darker Bronze for buttons */
    --color-silk: #fcfaf8;
    --color-star: #ffcc00; /* Yellow for ratings */
    --color-glass: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-bold: 0 20px 50px rgba(0,0,0,0.12);
    --radius-premium: 18px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-premium: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    --color-accent: #d1a69a;       /* Muted antique rose - SYNCED WITH HOME */
    --color-accent-dark: #8c6a61;  /* Deep earth brown - SYNCED WITH HOME */
}

.product-details-wrapper {
    background: #ffffff;
    padding: 10px 0 100px;
}

/* --- Header & Breadcrumbs --- */
.product-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-nav {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-nav a {
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--color-gold);
}

.stars i {
    color: var(--color-star);
    font-size: 14px;
}

.product-share-actions {
    display: flex;
    gap: 15px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #111;
    border: 1px solid #eee;
}

.icon-btn:hover {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.product-share-actions .icon-btn {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: flex !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    border: 1px solid #eee !important;
    background: #fdfdfd !important;
    color: #111 !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-share-actions .action-heart i {
    color: #ff3b30 !important;
    font-size: 18px !important;
}

.product-share-actions .action-heart:hover {
    background: #faada9 !important;
    border-color: #faada9 !important;
    color: #fff !important;
}

.product-share-actions .action-heart.active {
    background: #ff3b30;
    color: #fff;
    border-color: #ff3b30;
}

/* --- Sticky Purchase Bar --- */
.sticky-purchase-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-glass);
    backdrop-filter: blur(15px);
    z-index: 5000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transform: translateY(-100%);
    transition: var(--transition-premium);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.sticky-purchase-bar.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-product img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: contain; /* Changed to contain for full visibility */
    background: #fff;
}

.sticky-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.sticky-price {
    font-size: 14px;
    color: var(--color-gold-dark);
    font-weight: 600;
}

.btn-sticky-buy {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-sticky-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-noir);
    transition: 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
}

.btn-sticky-buy:hover {
    color: #fff;
}

.btn-sticky-buy:hover::before {
    left: 0;
}

/* --- Layout --- */
.product-grid-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr; /* Slightly reduced ratio for better balance with auto-height */
    gap: 40px;
    margin-top: 5px;
}

/* --- Gallery --- */
.premium-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto; /* Let the content define the height */
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-item-main {
    grid-column: span 2;
    border-radius: var(--radius-premium);
    overflow: hidden;
    position: relative;
    background-color: transparent; /* Removed background to avoid gaps when limiting height */
    max-height: 450px; /* Further reduced height as per user request */
    display: block; /* Removed flex to allow image to fill width */
}

.gallery-item-small {
    border-radius: var(--radius-premium);
    overflow: hidden;
    position: relative;
    background-color: var(--color-silk);
    height: 300px; /* Keep fixed height for thumbnails to ensure grid symmetry */
}

.gallery-item-small .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-image {
    width: 100%;
    height: 450px;
    max-width: 100%;
    max-height: 450px;
    object-fit: cover; /* Changed to cover to fill the wide frame as per user request */
    background: transparent;
    display: block;
    transition: transform 0.8s ease;
    cursor: zoom-in;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.photo-badge {
    position: absolute;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 10;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.photo-badge:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

.view-gallery {
    right: 20px;
}

.watch-video {
    left: 20px;
    background: var(--color-accent);
    color: #fff;
}

.watch-video:hover {
    background: var(--color-accent-dark);
}

/* --- USPs Section --- */
.product-usps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.usp-item {
    background: var(--color-silk);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.usp-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.usp-item h6 {
    font-size: 14px;
    margin: 0;
    font-weight: 700;
}

.usp-item p {
    font-size: 11px;
    color: #888;
    margin: 0;
}

/* --- Info Panel --- */
.panel-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.badge-row {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.status-badge {
    background: #111;
    color: #fff;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
}

.delivery-badge {
    color: #2e7d32;
    font-size: 12px;
    font-weight: 700;
}

.product-title-premium {
    font-size: 44px;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    line-height: 1.1;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.current-price {
    font-size: 34px;
    font-weight: 800;
}

.old-price {
    color: #999;
    text-decoration: line-through;
}

.save-chip {
    background: var(--color-gold);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.quick-benefits {
    margin-bottom: 30px;
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
}

.quick-benefits p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.quick-benefits i {
    color: var(--color-gold);
    margin-right: 10px;
}

/* --- Variant Selection --- */
.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.size-guide-trigger {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    color: #666;
}

.size-grid {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}

.size-option {
    width: 50px;
    height: 50px;
    border: 1.5px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.size-option:hover {
    border-color: var(--color-gold);
}

.size-option.active {
    background: var(--color-gold-dark);
    color: #fff;
    border-color: var(--color-gold-dark);
}

/* --- Purchase Actions --- */
.purchase-actions-box {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.qty-selector-premium {
    display: flex;
    align-items: center;
    background: var(--color-silk);
    border-radius: 50px;
    padding: 5px 20px;
}

.qty-selector-premium button {
    border: none;
    background: none;
    font-size: 20px;
    width: 30px;
    cursor: pointer;
}

.qty-selector-premium span {
    width: 40px;
    text-align: center;
    font-weight: 800;
}

.btn-primary-cart {
    flex: 1;
    height: 60px;
    background: var(--color-accent-dark) !important;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.4s;
}

.btn-primary-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-noir);
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
}

.btn-primary-cart:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-bold);
}

.btn-primary-cart:hover::before {
    left: 0;
}

.btn-text, .btn-price-small {
    position: relative;
    z-index: 2;
}

.btn-price-small {
    font-size: 12px;
    opacity: 0.8;
}

/* --- Trust Section --- */
.secure-payment {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.secure-payment p {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
    color: #ccc;
}

/* --- Accordions --- */
.info-accordion {
    margin-top: 50px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}

.accordion-body {
    padding-bottom: 20px;
    display: none;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    text-align: justify;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* --- How to Section --- */
.how-to-section {
    margin-top: 120px;
    padding: 80px;
    background: var(--color-silk);
    border-radius: 30px;
}

.how-to-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    font-size: 32px;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-num {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--color-gold);
    opacity: 0.5;
}

.how-to-visual {
    position: relative;
}

.premium-video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-bold);
    background: #000;
    line-height: 0;
    height: 500px; /* Increased height */
}

.premium-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
    z-index: 5;
}

.video-overlay.playing {
    background: rgba(0,0,0,0);
}

.video-overlay.playing .play-icon-box,
.video-overlay.playing .play-text {
    opacity: 0;
    transform: scale(0.8);
}

.video-overlay:hover.playing .play-icon-box {
    opacity: 1;
    transform: scale(1);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.play-icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #111;
    margin-bottom: 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.play-text {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: 0.4s;
}

.video-overlay:hover .play-icon-box {
    background: var(--color-gold);
    color: #fff;
    transform: scale(1.1);
}

/* --- Modal --- */
.size-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); /* Darker for better focus */
    backdrop-filter: blur(10px); /* Glass effect for background */
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.size-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    max-width: 480px;
    width: 92%;
    position: relative;
    box-shadow: 0 30px 100px rgba(0,0,0,0.3);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.size-modal.active .modal-box {
    transform: translateY(0);
}

.modal-box h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
    color: #111;
}

.modal-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.modal-table-container {
    margin-top: 25px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
}

.size-guide-table th {
    background: #f8f8f8;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.size-guide-table td {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: 0.3s;
}

.size-guide-table tr:hover td {
    background-color: var(--color-silk);
    color: var(--color-gold-dark);
}

.size-guide-table tr:last-child td {
    border-bottom: none;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    width: 36px;
    height: 36px;
    border: 1px solid #eee;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
    padding: 0;
    line-height: 1; /* Fix vertical offset */
}

.close-modal:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

/* --- Tabbed Size Modal --- */
.size-guide-box {
    max-width: 650px !important;
    padding: 0 !important;
    overflow: hidden;
}

.modal-tabs {
    display: flex;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn.active {
    background: #fff;
    color: var(--color-gold-dark);
    box-shadow: 0 -3px 0 var(--color-gold-dark) inset;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
    animation: fadeInModalContent 0.4s ease;
}

@keyframes fadeInModalContent {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.size-info-note {
    margin-top: 25px;
    padding: 15px;
    background: var(--color-silk);
    border-radius: 12px;
    font-size: 13px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #555;
    border: 1px solid rgba(140, 106, 66, 0.1);
}

.size-info-note i {
    color: var(--color-gold-dark);
}

.how-to-steps {
    margin-top: 30px;
}

.measure-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.m-step-num {
    width: 24px;
    height: 24px;
    background: var(--color-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.measure-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.measure-visual {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.measure-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Gallery Modal (Professional Lightbox) --- */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.98); /* Near black for cinematic feel */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 20000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-close {
    position: fixed;
    top: 30px;
    right: 30px;
    line-height: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20001;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.gallery-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.gallery-main-view {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: calc(100% - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-active-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-modal-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.gallery-modal-img.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.4s;
    z-index: 20002;
    padding: 0;
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: -100px; }
.gallery-next { right: -100px; }

@media (max-width: 1300px) {
    .gallery-prev { left: 10px; }
    .gallery-next { right: 10px; }
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding: 10px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover {
    opacity: 0.8;
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--color-gold);
    transform: scale(1.1);
}

/* --- Related Section --- */
.related-section {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.section-title {
    font-size: 28px;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 50px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card-mini {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

/* Staggered entrance for ultra-premium feel */
.product-card-mini:nth-child(1) { animation-delay: 0.1s; }
.product-card-mini:nth-child(2) { animation-delay: 0.2s; }
.product-card-mini:nth-child(3) { animation-delay: 0.3s; }
.product-card-mini:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-card-mini:hover {
    transform: translateY(-15px) rotate(1deg); /* Slight Tilt */
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 0 20px rgba(212, 175, 55, 0.2); /* Glow */
}

.mini-img {
    height: 420px; /* Taller image */
    position: relative;
    overflow: hidden;
}

/* Badge Styling - Ultra Premium Shimmer & Pulse */
.mini-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: #111;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3); }
    100% { transform: scale(1); }
}

.mini-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255,255,255,0.8);
    transform: rotate(30deg);
    transition: 0s;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 160%; }
}

/* Wishlist Icon Styling - Premium Float */
.mini-wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #111;
    cursor: pointer;
    z-index: 5;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mini-wishlist:hover {
    background: var(--color-gold);
    color: #fff;
}

.mini-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Edge-to-edge fit */
    background: #fdfdfd;
    transition: 0.8s;
}

.mini-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 25px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(5px);
    color: #fff;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    transform: translateY(60px); /* Hide the button area initially */
}

.product-card-mini:hover .mini-info {
    transform: translateY(0); /* Slide up to show everything */
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 100%);
}

/* Star Rating Enhancement */
.mini-stars {
    color: #ffcc00;
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255,204,0,0.3);
}

.mini-collection {
    font-size: 10px;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.mini-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.mini-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mini-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.mini-old-price {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
}

.mini-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-mini:hover .mini-actions {
    opacity: 1;
    transform: translateY(0);
}

.mini-add-btn, .mini-buy-btn {
    flex: 1;
    border: none;
    padding: 14px 5px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mini-add-btn {
    background: var(--color-accent) !important;
    color: #000000 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.mini-buy-btn {
    background: #000000 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.mini-add-btn:hover {
    background: var(--color-accent) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(209, 166, 154, 0.3);
}

.mini-buy-btn:hover {
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(140, 106, 97, 0.3);
}

.mini-add-btn::before, .mini-buy-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: 0.6s;
}

.mini-add-btn:hover::before, .mini-buy-btn:hover::before {
    left: 150%;
}

.product-card-mini:hover .mini-add-btn {
    opacity: 1;
    transform: translateY(0);
}

.mini-add-btn:hover {
    background: var(--color-gold);
    color: #fff;
}

.related-footer {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.btn-view-all {
    padding: 18px 45px;
    border: 1px solid var(--color-gold-dark); /* Thinner border */
    color: var(--color-gold-dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px; /* Wider text */
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-view-all i {
    margin-left: 10px;
    transition: 0.3s;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold-dark);
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
}

.btn-view-all:hover {
    color: #fff;
}

.btn-view-all:hover::before {
    left: 0;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .product-grid-layout {
        grid-template-columns: 1fr;
    }
    .how-to-grid {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Full Page Floating Decorative Elements */
.product-details-wrapper {
    position: relative;
    overflow: hidden;
}

.floating-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decor-item {
    position: absolute;
    font-size: 50px;
    transition: 0.5s;
    animation: floatDecor 12s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
    opacity: 0.25; /* Higher visibility */
}

/* Multi-color Palette for premium look */
.decor-1, .decor-5, .decor-9 { color: #d4af37; text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); } /* Gold */
.decor-2, .decor-6, .decor-10 { color: #e1b1a5; text-shadow: 0 0 15px rgba(225, 177, 165, 0.5); } /* Rose Gold */
.decor-3, .decor-7, .decor-11 { color: #c0c0c0; text-shadow: 0 0 15px rgba(192, 192, 192, 0.5); } /* Silver */
.decor-4, .decor-8, .decor-12 { color: #f8c8dc; text-shadow: 0 0 15px rgba(248, 200, 220, 0.5); } /* Soft Pink */

/* Distribution throughout the page */
.decor-1 { top: 5%; left: 3%; font-size: 90px; transform: rotate(-15deg); }
.decor-2 { top: 15%; right: 4%; font-size: 60px; transform: rotate(10deg); animation-delay: 1s; }
.decor-3 { top: 25%; left: 8%; font-size: 80px; transform: rotate(25deg); animation-delay: 2s; }
.decor-4 { top: 35%; right: 2%; font-size: 50px; transform: rotate(-20deg); animation-delay: 3s; }
.decor-5 { top: 45%; left: 4%; font-size: 110px; transform: rotate(5deg); animation-delay: 4s; }
.decor-6 { top: 55%; right: 6%; font-size: 40px; transform: rotate(15deg); animation-delay: 5s; }
.decor-7 { top: 65%; left: 2%; font-size: 70px; transform: rotate(-10deg); animation-delay: 6s; }
.decor-8 { top: 75%; right: 5%; font-size: 95px; transform: rotate(30deg); animation-delay: 7s; }
.decor-9 { top: 85%; left: 6%; font-size: 55px; transform: rotate(-25deg); animation-delay: 8s; }
.decor-10 { top: 92%; right: 3%; font-size: 85px; transform: rotate(12deg); animation-delay: 9s; }
.decor-11 { top: 10%; left: 50%; font-size: 30px; transform: translateX(-50%); animation-delay: 10s; }
.decor-12 { top: 80%; left: 50%; font-size: 35px; transform: translateX(-50%); animation-delay: 11s; }

@keyframes floatDecor {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-40px) rotate(10deg) scale(1.1); }
}

/* Hide mobile-only elements by default */
.mobile-gallery-nav, 
.mobile-gallery-badge, 
.mobile-floating-actions,
.mobile-heart-btn {
    display: none;
}

@media (max-width: 768px) {
    /* Kill Overflow and Move Content Up */
    html, body { overflow-x: hidden; width: 100%; position: relative; }
    
    .product-details-wrapper {
        padding-top: 10px !important; /* Increased for better breathing room on mobile */
    }

    .product-details-wrapper > .container {
        padding: 0 10px !important; /* Reduced to 5px as requested for "cover" effect */
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .product-header-nav {
        margin-bottom: 20px !important;
    }

    .product-grid-layout {
        display: block !important;
        width: 100% !important;
        gap: 0 !important;
        margin-top: -10px !important;
    }

    /* Mobile Gallery Overhaul (Match Screenshot) */
    .gallery-item-small, .desktop-only-actions {
        display: none !important;
    }

    .mobile-gallery-nav, .mobile-floating-actions {
        display: flex !important;
    }
    
    .mobile-gallery-badge {
        display: block !important;
    }

    .premium-gallery-grid {
        display: block;
        margin-bottom: 30px;
        padding: 0;
        width: 100% !important;
        position: relative; /* Anchor for the floating bar */
    }

    .gallery-item-main {
        aspect-ratio: 1 / 1; /* Slightly shorter portrait to optimize mobile scrolling */
        height: auto; 
        width: 100% !important;
        border-radius: 20px; 
        overflow: hidden; 
        position: relative;
        box-shadow: 0 15px 45px rgba(0,0,0,0.12);
        box-sizing: border-box !important;
        margin-bottom: 25px;
        border: none; /* Full bleed: no borders */
        background: #fdfdfd;
        padding: 0; /* Full bleed: image touches the edges */
        display: block; /* Standard block for full-bleed images */
    }


    /* Floating Action Bar Styling - Ultra Premium Glassmorphism */
    .mobile-floating-actions {
        position: absolute;
        bottom: -22px; 
        left: 15px;
        background: rgba(255, 255, 255, 0.85); /* Semi-transparent */
        backdrop-filter: blur(15px); /* Glass effect */
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        gap: 22px;
        padding: 14px 24px;
        border-radius: 100px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        z-index: 100;
        width: auto;
        justify-content: flex-start;
        border: 1px solid rgba(255, 255, 255, 0.4); /* Soft border for definition */
    }

    .action-item {
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .action-item:active {
        transform: scale(0.85); /* Interactive pop effect */
    }
    
    .action-share { color: #000000; }    /* Black - Share */
    .action-whatsapp { color: #25D366; } /* Green - WhatsApp Chat */
    .action-cart { color: #007aff; }     /* Blue - Add to Cart */
    .action-heart { color: #ff3b30; }    /* Red - Wishlist */
    .action-gallery { color: #ffcc00; }  /* Gold - Photo Gallery */

    /* Navigation Arrows Styling */
    .mobile-gallery-nav {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
        z-index: 50;
        pointer-events: none;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        pointer-events: auto;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .nav-arrow:active {
        background: var(--color-gold);
        transform: scale(0.9);
        border-color: var(--color-gold);
    }

    .mobile-gallery-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(8px);
        color: #fff;
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        border: 1px solid rgba(255,255,255,0.2);
        z-index: 60;
    }

    .mobile-heart-btn {
        display: flex !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        width: 38px !important;
        height: 38px !important;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 50% !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ff3b30 !important;
        font-size: 18px !important;
        z-index: 70 !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
        padding: 0 !important;
        cursor: pointer !important;
    }

    .mobile-slider-container {
        position: relative;
        overflow: hidden;
    }

    .mobile-slider-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        width: 100%;
    }

    .slide {
        min-width: 100%;
        height: 100%;
        position: relative; /* Added for absolute positioned children */
        transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
        overflow: hidden;
    }

    /* Artisan Shine Effect for Mobile Main Image */
    .gallery-item-main::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -150%;
        width: 100%;
        height: 200%;
        background: linear-gradient(
            to right, 
            rgba(255, 255, 255, 0) 0%, 
            rgba(255, 255, 255, 0.3) 50%, 
            rgba(255, 255, 255, 0) 100%
        );
        transform: rotate(30deg);
        animation: premiumShine 6s infinite;
        pointer-events: none;
        z-index: 5;
    }

    @keyframes premiumShine {
        0% { left: -150%; }
        20% { left: 150%; }
        100% { left: 150%; }
    }

    .gallery-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        object-fit: cover; /* Edge-to-edge fit on mobile */
        background: #ffffff;
        transition: transform 1.5s ease; /* Smooth slow zoom */
    }

    .slide:active .gallery-image {
        transform: scale(1.05); /* Interactive zoom when touched */
    }

    .breadcrumb-nav {
        text-align: center;
        font-size: 10px !important;
    }

    /* Floating decorations smaller */
    .floating-decorations { display: block; }
    .decor-item { font-size: 25px !important; opacity: 0.1 !important; }

    /* USP Section Optimization */
    .product-usps {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-top: 15px !important;
        margin-bottom: 25px !important; /* Added gap between USPs and badges below */
    }

    .usp-item {
        padding: 12px 5px !important;
        border-radius: 12px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .usp-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        margin: 0 auto !important;
    }

    .usp-item h6 {
        font-size: 10px !important;
        letter-spacing: -0.2px !important;
        line-height: 1.1 !important;
    }

    .usp-item p {
        font-size: 9px !important;
        line-height: 1 !important;
    }

    /* Product Info Optimization */
    .product-title-premium {
        font-size: 26px !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    .price-box {
        margin-bottom: 20px !important;
        gap: 10px !important;
    }

    .current-price {
        font-size: 24px !important;
    }

    .old-price {
        font-size: 14px !important;
    }

    .quick-benefits {
        margin-bottom: 20px !important;
        padding-left: 15px !important;
    }

    .quick-benefits p {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .size-grid {
        gap: 10px !important;
        margin-bottom: 30px !important;
        flex-wrap: wrap !important;
    }

    .size-option {
        width: 42px !important;
        height: 42px !important;
        font-size: 12px !important;
    }

    .product-grid-layout {
        gap: 30px !important;
    }

    /* Purchase Actions Optimized for Single Row Mobile */
    .purchase-actions-box {
        flex-direction: row !important; /* Back to side-by-side */
        gap: 10px !important;
        margin-top: 20px !important;
        width: 100% !important;
        align-items: stretch !important;
    }

    .qty-selector-premium {
        width: 110px !important; /* Fixed width for quantity */
        padding: 5px 10px !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
        justify-content: center !important; /* Center the icons and number */
        gap: 12px !important; /* Balanced gap for centering */
    }

    .qty-selector-premium button {
        font-size: 20px !important; /* Larger icons */
        width: 35px !important; /* Larger touch target */
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    .qty-selector-premium span {
        width: 25px !important;
        font-size: 16px !important; /* Slightly larger number */
        font-weight: 800 !important;
    }

    .btn-primary-cart {
        flex: 1 !important; /* Take remaining space */
        height: 52px !important; /* Slightly shorter to fit */
        padding: 0 15px !important; 
        font-size: 14px !important; /* Larger font now that price is gone */
        letter-spacing: 1px !important;
        box-shadow: 0 8px 20px rgba(140, 106, 66, 0.2) !important;
        justify-content: center !important; /* Center the text */
        gap: 0 !important;
    }

    .btn-text {
        font-size: 10px !important; /* Increased size */
        white-space: nowrap !important;
        text-transform: uppercase;
        font-weight: 800 !important;
    }

    .btn-price-small {
        display: none !important; /* Remove price on mobile only */
    }

    /* Trust Section Mobile */
    .secure-payment {
        margin-top: 30px !important;
        padding-top: 20px !important;
    }

    .payment-icons {
        gap: 15px !important;
        font-size: 20px !important;
    }

    /* Sticky Purchase Bar Mobile Optimization */
    .sticky-purchase-bar {
        padding: 8px 0 !important;
    }

    .sticky-content {
        gap: 10px !important;
    }

    .sticky-product img {
        width: 35px !important;
        height: 35px !important;
        border-radius: 6px !important;
    }

    .sticky-title {
        display: none !important; /* Hide long title on mobile to save space */
    }

    .sticky-price {
        font-size: 13px !important;
        display: block !important;
    }

    .btn-sticky-buy {
        background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
        color: #fff !important;
        padding: 8px 18px !important;
        font-size: 11px !important;
        border-radius: 50px !important; /* Proper pill shape */
        white-space: nowrap !important;
    }

    .size-modal {
        align-items: flex-end !important; /* Slide up from bottom on mobile */
    }

    /* Accordion Mobile Optimization */
    .info-accordion {
        margin-top: 30px !important;
    }

    .accordion-header {
        padding: 15px 0 !important;
        font-size: 15px !important;
    }

    .accordion-body {
        padding-bottom: 15px !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /* How To Apply Mobile Optimization */
    .how-to-section {
        margin-top: 60px !important;
        padding: 40px 10px !important; /* Reduced horizontal padding for more width */
        border-radius: 0 !important; /* Go edge-to-edge for more impact */
        width: calc(100% + 30px) !important; /* Break out of container slightly */
        margin-left: -15px !important;
    }

    .how-to-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .section-subtitle {
        font-size: 24px !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }

    .step {
        gap: 15px !important;
        margin-bottom: 25px !important;
    }

    .step-num {
        font-size: 20px !important;
    }

    .premium-video-wrapper {
        height: 350px !important;
        border-radius: 20px !important;
    }

    /* Related Products Mobile Optimization */
    .related-section {
        margin-top: 60px !important;
        padding-top: 40px !important;
    }

    .section-title {
        font-size: 22px !important;
        margin-bottom: 30px !important;
    }

    .related-grid {
        grid-template-columns: 1fr !important; /* One card per line */
        gap: 30px !important;
    }

    .product-card-mini {
        transform: translateY(0) !important; /* Reduce animation movement for mobile */
    }

    .mini-img {
        height: 380px !important;
    }

    .mini-details {
        padding: 20px !important;
    }

    .mini-title {
        font-size: 24px !important;
    }

    /* Related Footer Mobile Optimization */
    .related-footer {
        margin-top: 40px !important;
        padding: 0 10px !important;
    }

    .btn-view-all {
        width: 100% !important; /* Full width for better tap target */
        padding: 15px 20px !important;
        font-size: 11px !important;
        letter-spacing: 2px !important;
        text-align: center !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* --- Professional Notifications (Sync with Global Style) --- */
.boutique-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #111;
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--color-accent);
    pointer-events: none;
    white-space: nowrap;
}

.boutique-toast.active {
    transform: translateX(0);
    opacity: 1;
}

.boutique-toast i {
    color: var(--color-accent);
    font-size: 18px;
}

@media (max-width: 1024px) {
    .boutique-toast {
        top: 20px !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -100%) scale(0.8) !important;
        width: auto !important;
        min-width: 280px !important;
        max-width: 90% !important;
        padding: 12px 24px !important;
        border-radius: 50px !important;
        font-size: 13px !important;
        justify-content: center !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
        border: 1px solid rgba(255,255,255,0.5) !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
        opacity: 0 !important;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        z-index: 1000000 !important;
    }

    .boutique-toast.active {
        transform: translate(-50%, 0) scale(1) !important;
        opacity: 1 !important;
    }
    
    .boutique-toast i {
        font-size: 16px !important;
        margin-right: 8px !important;
    }
}

/* --- Animations --- */
@keyframes pulseHeart {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.pulse-anim {
    animation: pulseHeart 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Force Mobile Button Fix - Removed per User Request */
@media (max-width: 1024px) {
    .product-gallery .watch-video {
        display: none !important;
    }
}

/* --- Premium Specifications Block --- */
.premium-specifications {
    margin-top: 20px;
    padding: 18px 22px;
    background: #fdfaf7;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.spec-header {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #8c6a42;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.spec-icon {
    font-size: 14px;
    color: #d4af37;
    background: linear-gradient(135deg, #d4af37 0%, #f9e29f 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    margin-top: 2px;
    display: inline-block;
}

.spec-label {
    font-weight: 700;
    color: #333;
    min-width: 55px;
}

.spec-value {
    color: #555;
    flex: 1;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .premium-specifications {
        padding: 15px 12px;
        margin-top: 15px;
        border-radius: 15px;
    }
    
    .spec-header {
        font-size: 14px;
        margin-bottom: 10px;
        gap: 6px;
    }
    
    .spec-item {
        font-size: 13px;
        gap: 6px;
        margin-bottom: 4px;
    }

    .spec-icon {
        font-size: 11px !important;
        margin-top: 1px;
    }

    .spec-label {
        min-width: 50px;
        font-size: 13px;
    }

    .spec-value {
        font-size: 13px;
    }
}

/* --- Review Section --- */
.reviews-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    width: 100%;
}

.reviews-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.reviews-summary {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: fit-content;
}

.summary-title {
    font-size: 20px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: #333;
}

.average-rating-box {
    text-align: center;
    margin-bottom: 25px;
}

.average-score {
    font-size: 54px;
    font-weight: 800;
    color: var(--color-gold-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.average-stars {
    color: #ffcc00;
    font-size: 16px;
    margin-bottom: 8px;
}

.total-reviews-label {
    font-size: 13px;
    color: #888;
}

.rating-bars {
    margin-bottom: 25px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.bar-label {
    font-size: 12px;
    width: 45px;
    color: #555;
}

.bar-track {
    flex: 1;
    height: 5px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--color-gold);
}

.bar-count {
    font-size: 12px;
    width: 30px;
    color: #888;
    text-align: right;
}

.btn-write-review {
    width: 100%;
    padding: 15px;
    background: var(--color-gold-dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 12px;
}

.btn-write-review:hover {
    background: #000;
    transform: translateY(-2px);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.list-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.btn-add-review-top {
    padding: 12px 28px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-review-top i {
    color: #fff !important;
    font-size: 16px;
}

.btn-add-review-top:hover {
    background: linear-gradient(135deg, #f2d166 0%, #c99d00 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .reviews-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .btn-add-review-top {
        width: 100%;
        justify-content: center;
    }
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.review-card:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #fdfaf7;
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.reviewer-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.verified-badge {
    font-size: 10px;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-stars {
    color: #ffcc00;
    font-size: 12px;
    margin-bottom: 12px;
}

.review-content {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-content.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.read-more-btn {
    color: var(--color-gold-dark);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 15px;
    display: inline-block;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: #000;
    text-decoration: underline;
}

.review-footer {
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
}

.help-btn {
    background: none;
    border: none;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 1024px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .reviews-summary {
        padding: 20px;
    }
    .average-score {
        font-size: 44px;
    }
}

/* --- Premium Review Modal & Form --- */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-modal.active {
    display: flex;
    opacity: 1;
}

.review-modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 95vh;
    border-radius: 40px;
    overflow-y: auto;
    position: relative;
    transform: translateY(60px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-modal.active .review-modal-content {
    transform: translateY(0) scale(1);
}

.review-modal-header {
    background: linear-gradient(135deg, #fdfaf7 0%, #f5e6d3 100%);
    padding: 30px 40px 15px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.review-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #8c6a42;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    z-index: 100;
}

.review-modal-close:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.review-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.review-form-subtitle {
    font-size: 15px;
    color: #8c6a42;
    opacity: 0.8;
    max-width: 300px;
    margin: 0 auto 25px;
    line-height: 1.4;
}

.star-rating-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.star-rating-selector i {
    font-size: 36px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.star-rating-selector i.active,
.star-rating-selector i:hover {
    color: #ffcc00;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}

.review-modal-body {
    padding: 20px 40px 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #8c6a42;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    padding-left: 45px;
    border: 1.5px solid #f0f0f0;
    border-radius: 16px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fafafa;
    color: #333;
    font-family: inherit;
}

.form-control:focus {
    border-color: #d4af37;
    outline: none;
    background: #fff;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.08);
}

textarea.form-control {
    height: 100px;
    resize: none;
    padding-left: 20px; /* Textarea doesn't need left icon padding */
}

.btn-submit-review {
    display: block !important;
    width: 100% !important;
    padding: 20px !important;
    background-color: #d4af37 !important;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    margin-top: 15px !important;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-submit-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 576px) {
    .review-modal {
        padding: 10px;
    }
    .review-modal-content {
        max-width: 100%;
        border-radius: 24px;
        max-height: 90vh;
    }
    .review-modal-header {
        padding: 25px 20px 15px;
    }
    .review-modal-close {
        top: 15px;
        right: 15px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .review-form-title {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .review-form-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
        max-width: 250px;
    }
    .star-rating-selector {
        gap: 10px;
    }
    .star-rating-selector i {
        font-size: 28px;
    }
    .review-modal-body {
        padding: 15px 20px 20px;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .form-group label {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    .form-control {
        padding: 12px 15px;
        padding-left: 40px;
        font-size: 14px;
        border-radius: 12px;
    }
    textarea.form-control {
        height: 80px;
        padding-left: 15px;
    }
    .btn-submit-review {
        padding: 15px !important;
        font-size: 14px !important;
        border-radius: 30px !important;
        margin-top: 10px !important;
    }
}

/* --- Reviews Load More & Loader --- */
.reviews-load-more {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 20px;
}

.btn-load-more {
    background: #fdfaf7 !important;
    border: 1.5px solid var(--color-gold) !important;
    padding: 14px 45px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--color-gold-dark) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 220px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.08) !important;
}

.btn-load-more:hover {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3) !important;
}

.btn-load-more .loader-dots {
    display: none;
    gap: 5px;
}

.btn-load-more.loading span {
    display: none;
}

.btn-load-more.loading .loader-dots {
    display: flex;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    animation: loaderBounce 1.4s infinite ease-in-out both;
}

.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loaderBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}
