/* 
 * Maison Rīti - Product Experience CSS
 * Contains styles for Size Guide, Care Instructions, Delivery & Returns, Reviews, Notify Me, and Quick View
 */

/* =========================================
   Quick View Modal
   ========================================= */
.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-view-overlay.active {
    display: flex;
    opacity: 1;
}

.quick-view-modal {
    background-color: var(--color-white);
    width: 900px;
    max-width: 90%;
    border-radius: 8px;
    display: flex;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.quick-view-overlay.active .quick-view-modal {
    transform: translateY(0);
}

.qv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.qv-left {
    width: 50%;
    display: flex;
    background-color: #FAF8F5;
    padding: var(--spacing-md);
    gap: var(--spacing-md);
}

.qv-thumbnails {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.qv-thumb {
    width: 60px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.qv-thumb.active {
    border-color: #9d8db3;
}

.qv-main-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
}

.qv-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: #9d8db3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.qv-nav-btn.prev { left: 16px; }
.qv-nav-btn.next { right: 16px; }

.qv-right {
    width: 50%;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
}

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

.qv-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    margin: 0;
}

.qv-heart {
    font-size: 1.5rem;
    color: var(--color-heritage-gold);
    background: none;
    border: none;
    cursor: pointer;
}

.qv-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.qv-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-text-dark);
}

.qv-stock {
    font-size: 0.75rem;
    font-weight: bold;
    color: #2E7D32;
}

.qv-desc {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.qv-option-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qv-colors {
    display: flex;
    gap: 8px;
    margin-bottom: var(--spacing-lg);
}

.qv-color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    border: 2px solid transparent;
    cursor: pointer;
}

.qv-color-swatch.active {
    border-color: #9d8db3;
    padding: 2px;
    background-clip: content-box;
}

.qv-sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.qv-size-pill {
    padding: 8px 16px;
    border: 1px solid var(--color-champagne);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    background: transparent;
    cursor: pointer;
}

.qv-size-pill.active {
    border-color: #9d8db3;
    color: #9d8db3;
}

.qv-size-guide-link {
    display: inline-block;
    font-size: 0.75rem;
    color: #9d8db3;
    text-decoration: underline;
    margin-bottom: var(--spacing-xl);
}

.qv-action-row {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.qv-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-champagne);
    border-radius: 4px;
    overflow: hidden;
}

.qv-qty button {
    width: 40px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-text-dark);
}

.qv-qty input {
    width: 40px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.btn-qv-add {
    flex: 1;
    background-color: #9d8db3;
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.qv-features {
    display: flex;
    justify-content: space-between;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-champagne);
}

.qv-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--color-text-dark);
    text-align: center;
}

.qv-feature .icon {
    font-size: 1.5rem;
    color: #9d8db3;
}

.qv-bottom-bar {
    margin-top: auto;
    background-color: #FAF8F5;
    padding: var(--spacing-md) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-champagne);
}

.qv-bottom-bar span {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.qv-full-details {
    font-size: 0.75rem;
    font-weight: bold;
    color: #9d8db3;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   Size Guide Page
   ========================================= */
.pe-page-wrapper {
    padding: var(--spacing-xxl) 0;
}

.pe-header {
    margin-bottom: var(--spacing-xxl);
}

.pe-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    margin: 0 0 8px 0;
}

.pe-subtitle {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.6;
}

.sg-layout {
    display: flex;
    gap: var(--spacing-xxl);
}

.sg-sidebar {
    width: 250px;
    background-color: var(--color-white);
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    flex-shrink: 0;
}

.sg-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.sg-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: var(--spacing-md);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text-dark);
    transition: background-color 0.2s;
}

.sg-nav-item.active {
    background-color: #FAF8F5;
}

.sg-nav-icon {
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.sg-nav-item.active .sg-nav-icon {
    color: #9d8db3;
}

.sg-nav-text h4 {
    margin: 0 0 2px 0;
    font-size: 1rem;
}

.sg-nav-text p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.sg-help-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    padding: var(--spacing-lg);
    display: flex;
    gap: 12px;
}

.sg-help-box .icon {
    font-size: 1.5rem;
    color: #9d8db3;
}

.sg-help-box h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.sg-help-box p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.sg-content {
    flex: 1;
}

.sg-tabs {
    display: flex;
    gap: var(--spacing-xl);
    border-bottom: 1px solid var(--color-champagne);
    margin-bottom: var(--spacing-xl);
}

.sg-tabs button {
    background: none;
    outline: none;
    border: none;
    padding: 0 0 8px 0;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--color-text-dark);
    cursor: pointer;
    position: relative;
    top: 1px;
}

.sg-tabs button.active {
    color: #9d8db3;
    border-bottom: 2px solid #9d8db3;
}

.sg-measure-section {
    display: flex;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    background-color: #FAF8F5;
    padding: var(--spacing-xxl);
    border-radius: 8px;
}

.sg-measure-img {
    width: 300px;
    height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sg-measure-guide {
    flex: 1;
}

.sg-measure-guide h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-xl);
}

.sg-measure-guide h3 span {
    color: #9d8db3;
}

.sg-measure-points {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sg-point {
    display: flex;
    gap: 12px;
}

.sg-point-letter {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #EEDCC1;
    color: #9d8db3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.sg-point-text h5 {
    margin: 0 0 4px 0;
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

.sg-point-text p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.sg-table-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
}

.sg-table-wrap {
    background-color: var(--color-white);
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.sg-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.sg-table th {
    background-color: #FAF8F5;
    padding: var(--spacing-md);
    font-size: 0.875rem;
    font-weight: normal;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-champagne);
}

.sg-table th span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-dark);
    margin-top: 2px;
}

.sg-table tbody tr:nth-child(even) td {
    background-color: #FAF8F5;
}

.sg-table td {
    padding: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-champagne);
}

.sg-table tr:last-child td {
    border-bottom: none;
}

.sg-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.sg-note .icon {
    color: #9d8db3;
}

/* =========================================
   Care Instructions Page
   ========================================= */
.care-layout {
    display: flex;
    gap: var(--spacing-xxl);
}

.care-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.care-nav-title {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

.care-nav {
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.care-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--spacing-md) var(--spacing-lg);
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-champagne);
    background-color: var(--color-white);
    transition: background-color 0.2s;
}

.care-nav-item:last-child {
    border-bottom: none;
}

.care-nav-item.active {
    background-color: #FAF8F5;
    font-weight: bold;
    color: #9d8db3;
}

.care-nav-icon {
    font-size: 1.2rem;
    color: var(--color-text-dark);
}
.care-nav-item.active .care-nav-icon { color: #9d8db3; }

.care-content {
    flex: 1;
}

.care-hero {
    background-color: #FAF8F5;
    border-radius: 8px;
    padding: var(--spacing-xxl);
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.care-hero-text {
    width: 50%;
    position: relative;
    z-index: 2;
}

.care-hero-text h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    margin: 0 0 16px 0;
}

.care-hero-text p {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin: 0;
}

.care-hero-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.care-card {
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    padding: var(--spacing-xl);
}

.care-card .icon {
    font-size: 2rem;
    color: #9d8db3;
    margin-bottom: var(--spacing-md);
}

.care-card h4 {
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9d8db3;
    margin: 0 0 8px 0;
}

.care-card p {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin: 0;
}

.care-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FAF8F5;
    border-radius: 8px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.care-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.care-banner-icon {
    font-size: 2.5rem;
    color: #9d8db3;
}

.care-banner-text h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin: 0 0 4px 0;
    color: var(--color-text-dark);
}

.care-banner-text p {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    margin: 0;
}

.care-features {
    display: flex;
    gap: var(--spacing-xl);
}

.care-feature {
    text-align: center;
}

.care-feature .icon {
    font-size: 1.5rem;
    color: #9d8db3;
    margin-bottom: 4px;
    display: block;
}

.care-feature span {
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.care-sustainability-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F8F5F7; /* slight purple tint from mockup */
    border-radius: 8px;
    padding: var(--spacing-xl);
}

.care-sustainability-banner a {
    color: #9d8db3;
    font-size: 0.875rem;
    font-weight: bold;
    text-decoration: none;
}

/* =========================================
   Notify Me Page
   ========================================= */
.notify-layout {
    display: flex;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
}

.notify-left {
    width: 50%;
}

.notify-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    margin: 0 0 16px 0;
}

.notify-subtitle {
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.notify-form-box {
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    padding: var(--spacing-xxl);
    background-color: var(--color-white);
}

.notify-form-box h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin: 0 0 24px 0;
}

.notify-form-row {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.notify-form-col {
    flex: 1;
}

.notify-form-col label {
    display: block;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.notify-input-wrap {
    position: relative;
    display: flex;
}

.notify-input-wrap select,
.notify-input-wrap input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-champagne);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    font-family: inherit;
}

.notify-input-wrap select {
    appearance: none;
}

.notify-country-code {
    width: 90px;
    padding: 12px;
    border: 1px solid var(--color-champagne);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background-color: var(--color-white);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notify-input-wrap input.phone-input {
    border-radius: 0 4px 4px 0;
}

.notify-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--spacing-xl);
}

.notify-checkbox-wrap input[type="checkbox"] {
    accent-color: #9d8db3;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.notify-checkbox-wrap span {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    line-height: 1.4;
}

.btn-notify-submit {
    width: 100%;
    padding: 16px;
    background-color: #9d8db3;
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: var(--spacing-lg);
}

.notify-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.notify-privacy .icon {
    font-size: 1.2rem;
}

.notify-right {
    width: 50%;
    display: flex;
    gap: var(--spacing-xl);
}

.notify-product-img {
    width: 50%;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.notify-product-info {
    width: 50%;
    padding-top: var(--spacing-xl);
}

.notify-out-badge {
    display: inline-block;
    background-color: #FAF8F5;
    color: #9d8db3;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.notify-product-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 0 0 8px 0;
}

.notify-product-price {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: var(--spacing-lg);
}

.notify-product-meta {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.notify-add-wishlist {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    text-decoration: none;
    margin-top: var(--spacing-xl);
}

.notify-add-wishlist .icon {
    font-size: 1.2rem;
    color: #9d8db3;
}

.notify-sms-box {
    margin-top: var(--spacing-xl);
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FAF8F5;
}

.notify-sms-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notify-sms-text .icon {
    font-size: 2rem;
    color: #9d8db3;
}

.notify-sms-text h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.notify-sms-text p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.btn-notify-sms {
    padding: 10px 20px;
    border: 1px solid #9d8db3;
    color: #9d8db3;
    background: transparent;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-features-banner {
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    padding: var(--spacing-xxl);
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.notify-features-banner h2 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 0 0 var(--spacing-xxl) 0;
}

.notify-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.nfg-item .icon {
    font-size: 2.5rem;
    color: #9d8db3;
    margin-bottom: var(--spacing-md);
}

.nfg-item h4 {
    font-size: 1rem;
    margin: 0 0 8px 0;
}

.nfg-item p {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   Reviews Page
   ========================================= */
.reviews-layout {
    display: flex;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
}

.reviews-main {
    flex: 1;
}

.reviews-product-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-md);
    background-color: #FAF8F5;
    border-radius: 8px;
    width: 100%;
}

.rpc-img {
    width: 80px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.rpc-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.rpc-info p {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: bold;
}

.rpc-meta {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.rpc-link {
    font-size: 0.75rem;
    font-weight: bold;
    color: #9d8db3;
    text-decoration: none;
    text-transform: uppercase;
}

.reviews-summary-box {
    display: flex;
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    margin-bottom: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
}

.rsb-score {
    width: 30%;
    padding: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--color-champagne);
}

.rsb-score h2 {
    font-size: 4rem;
    margin: 0;
    line-height: 1;
}

.rsb-stars {
    color: #9d8db3;
    font-size: 1.5rem;
    margin: 8px 0;
}

.rsb-score p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

.rsb-bars {
    width: 35%;
    padding: var(--spacing-xxl);
    border-right: 1px solid var(--color-champagne);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.rsb-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.rsb-bar-bg {
    flex: 1;
    height: 6px;
    background-color: #FAF8F5;
    border-radius: 3px;
    overflow: hidden;
}

.rsb-bar-fill {
    height: 100%;
    background-color: #9d8db3;
}

.rsb-action {
    flex: 1;
    padding: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rsb-action h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.rsb-action p {
    margin: 0 0 16px 0;
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

.btn-write-review {
    align-self: flex-start;
    padding: 10px 24px;
    border: 1px solid #9d8db3;
    color: #9d8db3;
    background: transparent;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.rfb-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rfb-label {
    font-size: 0.875rem;
    font-weight: bold;
}

.rfb-select {
    padding: 8px 16px;
    border: 1px solid var(--color-champagne);
    border-radius: 4px;
    background-color: var(--color-white);
    font-size: 0.875rem;
}

.rfb-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.rfb-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-card {
    display: flex;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-champagne);
}

.rc-left {
    width: 150px;
    flex-shrink: 0;
}

.rc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #EEDCC1;
    color: #9d8db3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.rc-name {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 4px 0;
}

.rc-verified {
    font-size: 0.75rem;
    color: #9d8db3;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rc-meta {
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

.rc-middle {
    flex: 1;
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.rc-stars {
    color: #9d8db3;
    font-size: 1rem;
}

.rc-date {
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.rc-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.rc-text {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.rc-right {
    width: 150px;
    flex-shrink: 0;
}

.rc-photo {
    width: 150px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.btn-load-more {
    width: 100%;
    padding: 16px;
    border: 1px solid #9d8db3;
    color: #9d8db3;
    background: transparent;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
    cursor: pointer;
}

.reviews-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.rsb-features {
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.rsb-feature {
    display: flex;
    gap: 16px;
    margin-bottom: var(--spacing-xl);
}

.rsb-feature:last-child {
    margin-bottom: 0;
}

.rsb-feature .icon {
    font-size: 1.5rem;
    color: #9d8db3;
}

.rsb-feature h4 {
    margin: 0 0 4px 0;
    font-size: 0.875rem;
}

.rsb-feature p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.rsb-help {
    border: 1px solid var(--color-champagne);
    border-radius: 8px;
    padding: var(--spacing-xl);
    text-align: center;
}

.rsb-help h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.rsb-help p {
    margin: 0 0 24px 0;
    font-size: 0.875rem;
}

.btn-contact-us {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #9d8db3;
    color: #9d8db3;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* =========================================
   Complete The Look
   ========================================= */

.ctl-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.ctl-header-left {
    max-width: 400px;
}

.ctl-header-right {
    flex-shrink: 0;
}

.ctl-main-product-card {
    display: flex;
    background-color: #FAF8F5;
    border: 1px solid var(--color-champagne);
    padding: 24px;
    border-radius: 4px;
    gap: 24px;
    align-items: center;
}

.ctl-main-img {
    width: 120px;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.ctl-main-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.ctl-main-info p {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.ctl-main-meta {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.ctl-main-link {
    font-size: 0.875rem;
    color: #9d8db3;
    font-weight: bold;
    text-decoration: none;
}

.ctl-picks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.ctl-picks-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text-dark);
}

.ctl-arrows {
    display: flex;
    gap: 12px;
}

.ctl-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ctl-arrow:hover {
    border-color: #9d8db3;
    color: #9d8db3;
}

.ctl-carousel-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ctl-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.ctl-carousel {
    display: flex;
    gap: var(--spacing-lg);
}

.ctl-card {
    min-width: 280px;
    flex-shrink: 0;
    border: 1px solid var(--color-champagne);
    padding: 16px;
    border-radius: 4px;
    background-color: var(--color-white);
    position: relative;
}

.ctl-card-img {
    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
}

.ctl-wishlist {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    color: #9d8db3;
}

.ctl-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.ctl-card .price {
    font-size: 0.875rem;
    color: #9d8db3;
    font-weight: bold;
    margin-bottom: 12px;
}

.ctl-card .color {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.ctl-select-wrap {
    position: relative;
    margin-bottom: 16px;
}

.ctl-select-wrap select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-champagne);
    border-radius: 4px;
    appearance: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

.ctl-select-wrap .icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-text-dark);
}

.btn-add-bag {
    width: 100%;
    padding: 12px;
    border: 1px solid #9d8db3;
    background: transparent;
    color: #9d8db3;
    font-size: 0.875rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-add-bag:hover {
    background: #9d8db3;
    color: var(--color-white);
}

