﻿/* DETAILS PAGE THEME */
body {
    background: linear-gradient(180deg, #fffaf2, #ffffff);
}

/* MAIN CARD */
.perfume-card {
    max-width: 1200px;
    margin: 24px auto;
    padding: 18px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(184,134,11,.25);
    box-shadow: 0 18px 45px rgba(59,35,95,.14);
}

/* HEADER */
.perfume-header {
    background: linear-gradient(135deg, #3b235f, #6b3fa0);
    padding: 18px;
    border-radius: 22px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,216,107,.35);
}

    .perfume-header h3 {
        color: #ffd86b;
        font-weight: 900;
        margin-bottom: 12px;
    }

.perfume-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-badge {
    background: rgba(255,255,255,.12);
    color: #fffaf2;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid rgba(255,216,107,.25);
}

/* IMAGE */
.image-container {
    background: linear-gradient(180deg, #fffaf2, #ffffff);
    border: 1px solid rgba(184,134,11,.28);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(59,35,95,.1);
}

.perfume-image {
    width: 100%;
    height: 360px;
    object-fit: contain;
    border-radius: 20px;
}

/* SIZE OPTIONS */
.ml-option {
    display: inline-block;
    padding: 9px 16px;
    margin: 5px 6px 5px 0;
    border-radius: 999px;
    border: 1px solid rgba(184,134,11,.35);
    background: #fffaf2;
    color: #3b235f;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

    .ml-option.active,
    .ml-option:hover {
        background: linear-gradient(90deg, #3b235f, #6b3fa0);
        color: #ffd86b;
        box-shadow: 0 8px 18px rgba(59,35,95,.22);
    }

/* PRICE BOX */
.price-box {
    background: #fffaf2 !important;
    border: 1px solid rgba(184,134,11,.25);
    border-radius: 20px !important;
    box-shadow: 0 8px 22px rgba(59,35,95,.08);
}

    .price-box strong,
    .mt-3 h5 strong {
        color: #3b235f !important;
    }

/* TRUST ACTION BOX */
.action-box-new {
    margin-top: 16px;
    background: linear-gradient(135deg, #3b235f, #6b3fa0);
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,216,107,.35);
    box-shadow: 0 12px 30px rgba(59,35,95,.18);
}

.trust-row-new,
.urgency-row-new {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .trust-row-new div,
    .urgency-row-new span {
        flex: 1;
        min-width: 92px;
        text-align: center;
        background: rgba(255,255,255,.12);
        color: #fffaf2;
        padding: 9px 8px;
        border-radius: 14px;
        font-size: 12px;
        font-weight: 800;
    }

.urgency-row-new {
    margin-top: 10px;
}

    .urgency-row-new b {
        color: #ffd86b;
    }

.divider-new {
    height: 1px;
    background: rgba(255,216,107,.28);
    margin: 14px 0;
}

.qty-wrapper-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.qty-btn-new {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(90deg, #b8860b, #ffd86b);
    color: #2b1748;
    font-size: 22px;
    font-weight: 900;
}

.qty-value-new {
    color: #ffd86b;
    font-size: 20px;
    font-weight: 900;
}

/* ADD TO CART */
.btn-primary {
    background: linear-gradient(90deg, #b8860b, #ffd86b, #b8860b) !important;
    color: #2b1748 !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 13px !important;
    font-weight: 900 !important;
    box-shadow: 0 10px 22px rgba(184,134,11,.28);
}

/* TAB WRAPPER */
.perfume-info-box {
    max-width: 1200px;
    margin: 28px auto;
    background: #ffffff;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(184,134,11,.25);
    box-shadow: 0 14px 36px rgba(59,35,95,.12);
}

.nav-tabs {
    border-bottom: 1px solid rgba(184,134,11,.25) !important;
    gap: 6px;
}

    .nav-tabs .nav-link {
        color: #3b235f;
        border: 1px solid rgba(184,134,11,.22);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 8px;
    }

        .nav-tabs .nav-link.active {
            background: linear-gradient(90deg, #3b235f, #6b3fa0);
            color: #ffd86b;
            border-color: transparent;
        }

.tab-content {
    color: #6b5a42;
    font-size: 14px;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 576px) {
    .perfume-card {
        margin: 12px;
        padding: 12px;
        border-radius: 22px;
    }

    .perfume-header {
        padding: 15px;
        border-radius: 18px;
    }

        .perfume-header h3 {
            font-size: 20px;
        }

    .meta-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .perfume-image {
        height: 260px;
    }

    .ml-option {
        width: calc(50% - 8px);
        text-align: center;
        margin-right: 4px;
    }

    .trust-row-new div,
    .urgency-row-new span {
        min-width: calc(50% - 8px);
    }

    .perfume-info-box {
        margin: 16px 12px;
        padding: 12px;
        border-radius: 22px;
    }

    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

        .nav-tabs .nav-link {
            white-space: nowrap;
            font-size: 12px;
            padding: 8px 12px;
        }
}





/* ================================
   AVIR AROMA PREMIUM ACCORDION
================================ */

.aa-product-accordion {
    margin-top: 24px;
    padding: 14px;
    background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(59, 35, 95, 0.10);
    border: 1px solid rgba(184, 134, 11, 0.18);
}

/* Accordion Item */
.aa-acc-item {
    margin-bottom: 12px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(59, 35, 95, 0.10);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.045);
}

    .aa-acc-item:last-child {
        margin-bottom: 0;
    }

/* Button */
.aa-acc-btn {
    width: 100%;
    border: 0;
    outline: none;
    background: linear-gradient(135deg, #3b235f, #56337f);
    color: #fffaf2;
    padding: 15px 16px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    position: relative;
}

    .aa-acc-btn span {
        position: relative;
        z-index: 2;
    }

    .aa-acc-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 120deg, transparent, rgba(255, 216, 107, 0.18), transparent );
        transform: translateX(-100%);
        transition: 0.6s ease;
    }

    .aa-acc-btn:hover::before {
        transform: translateX(100%);
    }

/* Plus Icon */
.aa-plus {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 216, 107, 0.16);
    border: 1px solid rgba(255, 216, 107, 0.55);
    position: relative;
    flex-shrink: 0;
}

    .aa-plus::before,
    .aa-plus::after {
        content: "";
        position: absolute;
        background: #ffd86b;
        border-radius: 10px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .aa-plus::before {
        width: 11px;
        height: 2px;
    }

    .aa-plus::after {
        width: 2px;
        height: 11px;
        transition: 0.25s ease;
    }

.aa-acc-btn:not(.collapsed) .aa-plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Body */
.aa-acc-body {
    padding: 16px;
    background: #ffffff;
    animation: aaFadeUp 0.28s ease;
}

@keyframes aaFadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aa-desc-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #3b2f4f;
}

/* Scent Profile */
.aa-note-card {
    padding: 13px 14px;
    border-radius: 15px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fffaf2, #ffffff);
    border: 1px solid rgba(184, 134, 11, 0.18);
}

    .aa-note-card:last-child {
        margin-bottom: 0;
    }

    .aa-note-card b {
        display: block;
        color: #3b235f;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .aa-note-card p {
        margin: 0;
        color: #5e526f;
        font-size: 13px;
        line-height: 1.5;
    }

/* Lists */
.aa-premium-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

    .aa-premium-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 11px;
        font-size: 14px;
        color: #3f344f;
        line-height: 1.55;
    }

        .aa-premium-list li:last-child {
            margin-bottom: 0;
        }

        .aa-premium-list li::before {
            content: "✦";
            position: absolute;
            left: 0;
            top: 0;
            color: #b8860b;
            font-size: 14px;
        }

/* Policy */
.aa-policy-box p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #3f344f;
    line-height: 1.6;
}

.aa-policy-box b {
    color: #3b235f;
}

/* Delivery */
.aa-delivery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

    .aa-delivery-grid div {
        padding: 13px 14px;
        border-radius: 15px;
        background: #fffaf2;
        border: 1px solid rgba(184, 134, 11, 0.16);
    }

    .aa-delivery-grid b {
        display: block;
        color: #3b235f;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .aa-delivery-grid p {
        margin: 0;
        color: #5f536d;
        font-size: 13px;
        line-height: 1.5;
    }

/* Review Summary */

.aa-upload-box {
    width: 100%;
    margin-top: 14px;
}

.aa-file-input {
    display: none;
}

.aa-upload-label {
    width: 100%;
    min-height: 155px;
    border: 1.5px dashed rgba(184, 134, 11, 0.55);
    border-radius: 20px;
    background: linear-gradient(135deg, #fffaf2, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    text-align: center;
    padding: 18px;
    transition: 0.25s ease;
    box-shadow: 0 10px 25px rgba(59, 35, 95, 0.08);
}

    .aa-upload-label:hover {
        border-color: #b8860b;
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(59, 35, 95, 0.14);
    }

.aa-upload-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b235f, #5b348c);
    color: #ffd86b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 4px;
}

.aa-upload-label h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #3b235f;
}

.aa-upload-label p {
    margin: 0;
    font-size: 12px;
    color: #777;
}

.aa-upload-label span {
    margin-top: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #3b235f;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.aa-upload-loading {
    min-height: 130px;
    border-radius: 20px;
    background: #fffaf2;
    border: 1px solid rgba(184, 134, 11, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.aa-upload-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(59, 35, 95, 0.18);
    border-top-color: #3b235f;
    border-radius: 50%;
    animation: aaSpin 0.8s linear infinite;
}

@keyframes aaSpin {
    to {
        transform: rotate(360deg);
    }
}

.aa-upload-loading p {
    margin: 0;
    font-size: 13px;
    color: #3b235f;
    font-weight: 600;
}

.aa-upload-preview {
    width: 150px;
    padding: 8px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(184, 134, 11, 0.28);
    box-shadow: 0 10px 24px rgba(59, 35, 95, 0.14);
}

.aa-review-uploaded-img {
    margin-top: 12px;
}

    .aa-review-uploaded-img img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 14px;
        border: 1px solid rgba(184, 134, 11, 0.35);
        box-shadow: 0 8px 20px rgba(59, 35, 95, 0.14);
    }

.aa-review-uploaded-img {
    margin-top: 12px;
}

    .aa-review-uploaded-img img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 14px;
        border: 1px solid rgba(184, 134, 11, 0.35);
        box-shadow: 0 8px 20px rgba(59, 35, 95, 0.14);
        cursor: pointer;
        transition: 0.25s ease;
    }

        .aa-review-uploaded-img img:hover {
            transform: scale(1.04);
        }

.aa-image-frame-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.aa-image-frame-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #fffaf2;
    border-radius: 22px;
    padding: 12px;
    border: 1px solid rgba(255, 216, 107, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
    animation: aaImageZoom 0.22s ease;
}

    .aa-image-frame-box img {
        width: 100%;
        max-height: 78vh;
        object-fit: contain;
        border-radius: 16px;
        display: block;
        background: #fff;
    }

.aa-image-frame-close {
    position: absolute;
    top: -12px;
    right: -10px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #3b235f;
    color: #ffd86b;
    font-size: 26px;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@keyframes aaImageZoom {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*Star Review Css*/



    .aa-upload-preview img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 14px;
        display: block;
    }

.aa-upload-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.aa-change-img,
.aa-remove-img {
    flex: 1;
    border: none;
    border-radius: 9px;
    padding: 7px 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.aa-change-img {
    background: #fffaf2;
    color: #3b235f;
    border: 1px solid rgba(184, 134, 11, 0.35);
}

.aa-remove-img {
    background: #3b235f;
    color: #fff;
}


.aa-review-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.aa-rating-box {
    background: linear-gradient(145deg, #fffaf2, #ffffff);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(184, 134, 11, 0.20);
    box-shadow: 0 8px 22px rgba(59, 35, 95, 0.08);
    text-align: center;
}

    .aa-rating-box h3 {
        margin: 0;
        font-size: 34px;
        font-weight: 900;
        color: #3b235f;
    }

    .aa-rating-box p {
        margin: 5px 0 18px;
        color: #6a6077;
        font-size: 13px;
    }

.aa-rating-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
}

    .aa-rating-row span {
        width: 32px;
        font-size: 13px;
        font-weight: 800;
        color: #3b235f;
    }

    .aa-rating-row small {
        width: 38px;
        text-align: right;
        color: #6a6077;
        font-size: 12px;
    }

.aa-rating-bar {
    flex: 1;
    height: 9px;
    background: #f0e9d7;
    border-radius: 999px;
    overflow: hidden;
}

    .aa-rating-bar div {
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, #b8860b, #ffd86b);
        transition: width 0.8s ease;
    }

/* Review Form */
.aa-review-form {
    background: #ffffff;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(59, 35, 95, 0.12);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

    .aa-review-form h4 {
        margin: 0 0 14px;
        color: #3b235f;
        font-size: 18px;
        font-weight: 900;
    }

.aa-input {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 12px;
    border-radius: 14px;
    border: 1px solid rgba(59, 35, 95, 0.16);
    background: #fffaf2;
    color: #3b235f;
    font-size: 14px;
    outline: none;
    transition: 0.25s ease;
}

    .aa-input:focus {
        border-color: #b8860b;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(255, 216, 107, 0.20);
    }

.aa-textarea {
    height: 105px;
    resize: none;
}

.aa-submit-review {
    width: 100%;
    border: 0;
    padding: 13px 16px;
    border-radius: 15px;
    background: linear-gradient(135deg, #3b235f, #b8860b);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(59, 35, 95, 0.22);
    transition: 0.2s ease;
}

    .aa-submit-review:active {
        transform: scale(0.97);
    }

/* Review Cards */
.aa-review-heading {
    margin: 24px 0 14px;
    color: #3b235f;
    font-size: 18px;
    font-weight: 900;
}

.aa-review-card {
    display: flex;
    gap: 13px;
    padding: 15px;
    margin-bottom: 13px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(59, 35, 95, 0.10);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.045);
    animation: aaFadeUp 0.35s ease;
}

.aa-review-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff0bd;
    flex-shrink: 0;
}

.aa-review-content {
    flex: 1;
    min-width: 0;
}

    .aa-review-content strong {
        display: block;
        color: #3b235f;
        font-size: 15px;
        margin-bottom: 2px;
    }

.aa-stars {
    margin-bottom: 6px;
    line-height: 1;
}

    .aa-stars span {
        color: #b8860b;
        font-size: 17px;
        margin-right: 1px;
    }

.aa-review-content p {
    margin: 0 0 6px;
    color: #4d425d;
    font-size: 13.5px;
    line-height: 1.55;
}

.aa-review-content small {
    color: #8a8197;
    font-size: 12px;
}

/* Tablet/Desktop */
@media (min-width: 768px) {
    .aa-product-accordion {
        padding: 20px;
        border-radius: 26px;
    }

    .aa-acc-btn {
        padding: 17px 20px;
        font-size: 16px;
    }

    .aa-acc-body {
        padding: 20px;
    }

    .aa-delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aa-review-summary {
        grid-template-columns: 0.9fr 1.3fr;
        align-items: stretch;
    }

    .aa-desc-text,
    .aa-premium-list li,
    .aa-policy-box p {
        font-size: 15px;
    }
}


/*// image zoom ina command output css*/



.image-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: linear-gradient(145deg, #fffaf2, #ffffff);
    border-radius: 24px;
    padding: 14px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    border: 1px solid rgba(184, 134, 11, 0.20);
    box-shadow: 0 14px 36px rgba(59, 35, 95, 0.13);
    transition: all 0.35s ease;
}

    .image-container::after {
        content: "🔍";
        position: absolute;
        right: 14px;
        bottom: 14px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(59, 35, 95, 0.88);
        color: #ffd86b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        box-shadow: 0 8px 18px rgba(59, 35, 95, 0.25);
        pointer-events: none;
        transition: 0.3s ease;
    }

    .image-container.zoom-active {
        cursor: zoom-out;
        box-shadow: 0 18px 46px rgba(59, 35, 95, 0.20);
    }

        .image-container.zoom-active::after {
            content: "−";
            font-size: 28px;
            font-weight: 800;
        }

.perfume-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

    .perfume-image.zoomed-img {
        transform: scale(1.65);
    }

.zoom-hint {
    display: inline-block;
    margin-top: 4px;
    color: #3b235f;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.75;
}

/* Mobile fine tuning */
@media (max-width: 576px) {
    .image-container {
        max-width: 100%;
        border-radius: 22px;
        padding: 10px;
    }

    .perfume-image {
        max-height: 360px;
    }

        .perfume-image.zoomed-img {
            transform: scale(1.85);
        }
}






.perfume-header {
    position: relative;
    padding: 18px 14px 16px;
    margin: 0 0 14px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, rgba(255, 216, 107, 0.32), transparent 34%), linear-gradient(145deg, #3b235f 0%, #241238 52%, #12091f 100%);
    border: 1px solid rgba(255, 216, 107, 0.35);
    box-shadow: 0 18px 38px rgba(59, 35, 95, 0.24), inset 0 1px 0 rgba(255,255,255,0.12);
    overflow: hidden;
}

    .perfume-header::before {
        content: "";
        position: absolute;
        inset: -80px auto auto -80px;
        width: 170px;
        height: 170px;
        background: radial-gradient(circle, rgba(255,216,107,0.34), transparent 65%);
        filter: blur(4px);
        pointer-events: none;
    }

    .perfume-header::after {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 55%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.18), transparent );
        transform: skewX(-18deg);
        animation: headerShine 4.5s ease-in-out infinite;
        pointer-events: none;
    }

.perfume-title-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
}

.luxury-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.1);
    border: 1px solid rgba(255, 216, 107, 0.28);
    color: #ffd86b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.perfume-header h3 {
    margin: 0;
    color: #fffaf2;
    font-size: clamp(22px, 6vw, 34px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.title-glow-line {
    width: 86px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #ffd86b, #b8860b, transparent);
    box-shadow: 0 0 18px rgba(255, 216, 107, 0.55);
}

.perfume-meta {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 15px;
}

.meta-badge {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-areas:
        "icon label"
        "icon value";
    column-gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 18px;
    background: rgba(255, 250, 242, 0.94);
    border: 1px solid rgba(255, 216, 107, 0.42);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    color: #3b235f;
}

    .meta-badge i {
        grid-area: icon;
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffd86b, #b8860b);
        color: #3b235f;
        font-size: 15px;
        box-shadow: 0 8px 16px rgba(184,134,11,0.28);
    }

    .meta-badge small {
        grid-area: label;
        display: block;
        color: #8a6a24;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        line-height: 1.1;
    }

    .meta-badge b {
        grid-area: value;
        display: block;
        margin-top: 2px;
        color: #3b235f;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.25;
    }

@keyframes headerShine {
    0% {
        left: -80%;
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    65% {
        left: 130%;
        opacity: 0;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

/* Tablet/Desktop */
@media (min-width: 576px) {
    .perfume-header {
        padding: 24px 22px 22px;
        border-radius: 30px;
    }

    .perfume-meta {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .meta-badge {
        padding: 12px;
    }
}










/* REVIEW ACCORDION */
.aa-review-accordion {
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(59, 35, 95, 0.10);
    box-shadow: 0 12px 30px rgba(59, 35, 95, 0.10);
}

    .aa-review-accordion .aa-acc-btn span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .aa-review-accordion .aa-acc-btn span i {
            color: #b8860b;
        }

    /* BODY */
    .aa-review-accordion .aa-acc-body {
        padding: 14px;
        background: radial-gradient(circle at top right, rgba(255, 216, 107, 0.16), transparent 32%), linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
    }

/* EMPTY REVIEW */
.aa-empty-review {
    text-align: center;
    padding: 22px 14px;
    margin-bottom: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px dashed rgba(184, 134, 11, 0.35);
}

.aa-empty-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffd86b, #b8860b);
    color: #3b235f;
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(184, 134, 11, 0.25);
}

.aa-empty-review h4 {
    margin: 0 0 4px;
    color: #3b235f;
    font-size: 17px;
    font-weight: 900;
}

.aa-empty-review p {
    margin: 0;
    color: #7b6d88;
    font-size: 13px;
}

/* SUMMARY WRAPPER */
.aa-review-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

/* RATING BOX */
.aa-rating-box {
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(145deg, #3b235f, #241238);
    color: #fffaf2;
    border: 1px solid rgba(255, 216, 107, 0.35);
    box-shadow: 0 14px 30px rgba(59, 35, 95, 0.22);
}

.aa-rating-main {
    text-align: center;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 216, 107, 0.20);
}

    .aa-rating-main h3 {
        margin: 0;
        font-size: 42px;
        font-weight: 900;
        line-height: 1;
        color: #ffd86b;
        text-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    }

        .aa-rating-main h3 span {
            font-size: 28px;
        }

    .aa-rating-main p {
        margin: 7px 0 0;
        font-size: 13px;
        color: rgba(255, 250, 242, 0.82);
        font-weight: 600;
    }

.aa-rating-lines {
    display: grid;
    gap: 9px;
}

.aa-rating-row {
    display: grid;
    grid-template-columns: 34px 1fr 42px;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

    .aa-rating-row span {
        color: #ffd86b;
        font-weight: 800;
    }

    .aa-rating-row small {
        color: rgba(255, 250, 242, 0.72);
        text-align: right;
        font-size: 11px;
    }

.aa-rating-bar {
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 250, 242, 0.20);
}

    .aa-rating-bar div {
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, #ffd86b, #b8860b);
        box-shadow: 0 0 12px rgba(255, 216, 107, 0.55);
        transition: width 0.35s ease;
    }

/* REVIEW FORM */
.aa-review-form {
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(59, 35, 95, 0.10);
    box-shadow: 0 12px 26px rgba(59, 35, 95, 0.10);
}

.aa-form-title {
    margin-bottom: 12px;
}

    .aa-form-title h4 {
        margin: 0;
        color: #3b235f;
        font-size: 18px;
        font-weight: 900;
    }

    .aa-form-title p {
        margin: 4px 0 0;
        color: #7b6d88;
        font-size: 12px;
        line-height: 1.4;
    }

.aa-input {
    width: 100%;
    min-height: 44px;
    margin-bottom: 10px;
    padding: 11px 13px;
    border-radius: 14px;
    border: 1px solid rgba(59, 35, 95, 0.16);
    background: #fffaf2;
    color: #3b235f;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    transition: 0.25s ease;
}

    .aa-input::placeholder {
        color: #9b90a8;
    }

    .aa-input:focus {
        border-color: #b8860b;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(255, 216, 107, 0.22);
    }

.aa-textarea {
    min-height: 96px;
    resize: none;
}

.aa-submit-review {
    width: 100%;
    min-height: 46px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b235f, #241238);
    color: #ffd86b;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 12px 24px rgba(59, 35, 95, 0.22);
    transition: 0.25s ease;
}

    .aa-submit-review:active {
        transform: scale(0.97);
    }

/* REVIEW LIST */
.aa-review-list {
    margin-top: 18px;
}

.aa-review-heading {
    margin: 0 0 12px;
    color: #3b235f;
    font-size: 18px;
    font-weight: 900;
    position: relative;
    padding-left: 12px;
}

    .aa-review-heading::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 4px;
        height: 18px;
        border-radius: 999px;
        background: linear-gradient(180deg, #ffd86b, #b8860b);
    }

.aa-review-card {
    display: flex;
    gap: 11px;
    padding: 13px;
    margin-bottom: 11px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(59, 35, 95, 0.08);
    box-shadow: 0 10px 22px rgba(59, 35, 95, 0.08);
}

.aa-review-img {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd86b;
    box-shadow: 0 8px 14px rgba(184, 134, 11, 0.20);
}

.aa-review-content {
    flex: 1;
    min-width: 0;
}

.aa-review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

    .aa-review-top strong {
        display: block;
        color: #3b235f;
        font-size: 14px;
        font-weight: 900;
        line-height: 1.2;
    }

    .aa-review-top small {
        display: block;
        margin-top: 2px;
        color: #8d819a;
        font-size: 11px;
    }

.aa-review-rate {
    flex: 0 0 auto;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff4d2;
    color: #8a5a00;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(184, 134, 11, 0.22);
}

.aa-stars {
    margin-top: 6px;
    color: #b8860b;
    font-size: 13px;
    letter-spacing: 1px;
}

.aa-review-content p {
    margin: 7px 0 0;
    color: #5d5268;
    font-size: 13px;
    line-height: 1.5;
}

/* DESKTOP / TABLET */
@media (min-width: 768px) {
    .aa-review-accordion .aa-acc-body {
        padding: 18px;
    }

    .aa-review-summary {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: stretch;
    }

    .aa-rating-box,
    .aa-review-form {
        padding: 20px;
    }

    .aa-review-card {
        padding: 15px;
    }
}


.aa-star-input-wrap {
    margin-bottom: 12px;
    padding: 12px 13px;
    border-radius: 16px;
    background: #fffaf2;
    border: 1px solid rgba(59, 35, 95, 0.14);
}

    .aa-star-input-wrap label {
        display: block;
        margin-bottom: 7px;
        color: #3b235f;
        font-size: 13px;
        font-weight: 800;
    }

.aa-star-input {
    display: flex;
    gap: 7px;
    align-items: center;
}

    .aa-star-input span {
        font-size: 30px;
        line-height: 1;
        color: #d8d2c7;
        cursor: pointer;
        transition: 0.2s ease;
        text-shadow: 0 2px 6px rgba(0,0,0,0.08);
        user-select: none;
    }

        .aa-star-input span.active,
        .aa-star-input span.hover {
            color: #b8860b;
            transform: scale(1.08);
            text-shadow: 0 4px 12px rgba(184,134,11,0.28);
        }

        .aa-star-input span:active {
            transform: scale(0.9);
        }

.aa-star-input-wrap small {
    display: block;
    margin-top: 7px;
    color: #7b6d88;
    font-size: 12px;
    font-weight: 600;
}








/*Cart Added Alert*/


/* Avir Aroma Cart Added Toast */
.aa-cart-toast {
    position: fixed;
    left: 50%;
    bottom: 85px;
    transform: translateX(-50%) translateY(30px);
    width: calc(100% - 28px);
    max-width: 420px;
    background: linear-gradient(135deg, #3b235f, #24133f);
    color: #fffaf2;
    border: 1px solid rgba(255, 216, 107, 0.45);
    border-radius: 18px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(59, 35, 95, 0.35);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
}

    .aa-cart-toast.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

.aa-cart-toast-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd86b, #b8860b);
    color: #3b235f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 18px rgba(255, 216, 107, 0.45);
}

.aa-cart-toast-content {
    flex: 1;
    min-width: 0;
}

    .aa-cart-toast-content h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 800;
        color: #ffd86b;
        letter-spacing: 0.3px;
    }

    .aa-cart-toast-content p {
        margin: 3px 0 0;
        font-size: 13px;
        color: #fffaf2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.aa-cart-toast-close {
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fffaf2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop little smaller */
@media (min-width: 768px) {
    .aa-cart-toast {
        bottom: 25px;
    }
}


.aa-cart-toast {
    position: fixed;
    left: 50%;
    bottom: 85px;
    transform: translateX(-50%) translateY(30px);
    width: calc(100% - 28px);
    max-width: 420px;
    color: #fffaf2;
    border-radius: 18px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.22);
}

    .aa-cart-toast.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    /* Success */
    .aa-cart-toast.success {
        background: linear-gradient(135deg, #3b235f, #24133f);
        border: 1px solid rgba(255, 216, 107, 0.45);
    }

    /* Warning */
    .aa-cart-toast.warning {
        background: linear-gradient(135deg, #5c3b12, #2f2109);
        border: 1px solid rgba(255, 216, 107, 0.6);
    }

    /* Error */
    .aa-cart-toast.error {
        background: linear-gradient(135deg, #5f2330, #351018);
        border: 1px solid rgba(255, 120, 120, 0.55);
    }

.aa-cart-toast-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd86b, #b8860b);
    color: #3b235f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 18px rgba(255, 216, 107, 0.45);
}

.aa-cart-toast.error .aa-cart-toast-icon {
    background: linear-gradient(135deg, #ffb3b3, #ff5f5f);
    color: #4a0f17;
}

.aa-cart-toast-content {
    flex: 1;
    min-width: 0;
}

    .aa-cart-toast-content h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 800;
        color: #ffd86b;
    }

    .aa-cart-toast-content p {
        margin: 3px 0 0;
        font-size: 13px;
        color: #fffaf2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.aa-cart-toast-close {
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fffaf2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inline validation message */
.aa-validation-msg {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #b3261e;
    background: rgba(179, 38, 30, 0.08);
    border: 1px solid rgba(179, 38, 30, 0.16);
    padding: 8px 10px;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .aa-cart-toast {
        bottom: 25px;
    }
}



.aa-note-card {
    background: #fff;
    border: 1px solid rgba(59, 35, 95, 0.10);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(59, 35, 95, 0.08);
}

    .aa-note-card b {
        display: block;
        color: #3b235f;
        font-size: 15px;
        font-weight: 900;
        margin-bottom: 10px;
    }

.aa-note-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.aa-note-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fffaf2;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid rgba(184, 134, 11, 0.14);
}

    .aa-note-item img {
        width: 58px;
        height: 58px;
        min-width: 58px;
        object-fit: cover;
        border-radius: 13px;
        border: 1px solid rgba(59, 35, 95, 0.08);
        background: #fff;
    }

    .aa-note-item h6 {
        margin: 0 0 4px;
        color: #3b235f;
        font-size: 14px;
        font-weight: 900;
    }

    .aa-note-item p {
        margin: 0;
        color: #666;
        font-size: 12.5px;
        line-height: 1.45;
    }

.aa-note-loader,
.aa-note-error,
.aa-note-empty {
    text-align: center;
    padding: 16px;
    color: #3b235f;
}

.aa-note-spinner {
    width: 30px;
    height: 30px;
    border: 4px solid rgba(59, 35, 95, 0.15);
    border-top-color: #3b235f;
    border-radius: 50%;
    margin: 0 auto 8px;
    animation: aaNoteSpin 0.8s linear infinite;
}

@keyframes aaNoteSpin {
    to {
        transform: rotate(360deg);
    }
}

/* PC view */
@media (min-width: 768px) {
    .aa-note-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .aa-note-item {
        display: block;
        text-align: center;
        padding: 14px;
    }

        .aa-note-item img {
            width: 90px;
            height: 90px;
            margin-bottom: 10px;
        }

        .aa-note-item h6 {
            font-size: 15px;
        }
}









/*Perfume Highlights CSS*/

.aa-premium-acc .aa-acc-btn span {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .aa-premium-acc .aa-acc-btn span i {
        color: #b8860b;
    }

.aa-highlight-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b235f, #5b348c);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .aa-highlight-strip::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        right: -45px;
        top: -45px;
        background: rgba(255, 216, 107, 0.18);
        border-radius: 50%;
    }

    .aa-highlight-strip small {
        display: block;
        color: rgba(255,255,255,0.72);
        font-size: 12px;
        margin-bottom: 4px;
    }

    .aa-highlight-strip h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        color: #fff;
        line-height: 1.3;
    }

.aa-tag-badge {
    position: relative;
    z-index: 1;
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd86b, #b8860b);
    color: #3b235f;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.aa-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.aa-detail-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(59, 35, 95, 0.10);
    box-shadow: 0 10px 26px rgba(59, 35, 95, 0.08);
    transition: all 0.25s ease;
}

    .aa-detail-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(59, 35, 95, 0.14);
    }

.aa-detail-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff4c5, #ffffff);
    color: #b8860b;
    font-size: 20px;
    border: 1px solid rgba(184, 134, 11, 0.18);
}

.aa-detail-card small {
    display: block;
    font-size: 12px;
    color: #8a7a9e;
    margin-bottom: 3px;
    font-weight: 600;
}

.aa-detail-card b {
    display: block;
    color: #3b235f;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.aa-detail-card p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #777;
    line-height: 1.35;
}

@media (max-width: 576px) {
    .aa-highlight-strip {
        padding: 14px;
        align-items: flex-start;
        flex-direction: column;
    }

    .aa-tag-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .aa-detail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .aa-detail-card {
        padding: 13px;
        border-radius: 16px;
    }

    .aa-detail-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 18px;
    }
}


/*SEO Details Section 28-06-2026*/

.aa-seo-acc .aa-acc-body {
    background: #fff;
}

.aa-seo-box {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fffaf2, #ffffff);
    border: 1px solid rgba(59, 35, 95, 0.08);
}

    .aa-seo-box h2 {
        color: #3b235f;
        font-weight: 900;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .aa-seo-box p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 14px;
    }

.aa-seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .aa-seo-tags span {
        background: rgba(255, 216, 107, 0.25);
        color: #3b235f;
        padding: 7px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 800;
    }

.aa-seo-faq {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

    .aa-seo-faq h3 {
        color: #3b235f;
        font-weight: 900;
        font-size: 20px;
        margin-bottom: 4px;
    }

.aa-seo-faq-item {
    background: #fffaf2;
    border-radius: 16px;
    padding: 14px;
    border: 1px solid rgba(59, 35, 95, 0.08);
}

    .aa-seo-faq-item b {
        display: block;
        color: #3b235f;
        margin-bottom: 6px;
    }

    .aa-seo-faq-item p {
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

@media (max-width: 768px) {

    .aa-seo-acc .aa-acc-body {
        padding: 12px;
        background: #fff;
    }

    .aa-seo-box {
        padding: 14px;
        border-radius: 16px;
    }

        .aa-seo-box h2 {
            font-size: 18px;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .aa-seo-box p {
            font-size: 14px;
            line-height: 1.65;
            margin-bottom: 12px;
        }

    .aa-seo-tags {
        gap: 6px;
    }

        .aa-seo-tags span {
            font-size: 11px;
            padding: 6px 10px;
            max-width: 100%;
            word-break: break-word;
        }

    .aa-seo-faq {
        margin-top: 14px;
        gap: 10px;
    }

        .aa-seo-faq h3 {
            font-size: 17px;
            line-height: 1.3;
        }

    .aa-seo-faq-item {
        padding: 12px;
        border-radius: 14px;
    }

        .aa-seo-faq-item b {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 5px;
        }

        .aa-seo-faq-item p {
            font-size: 13px;
            line-height: 1.55;
        }
}

@media (max-width: 420px) {

    .aa-seo-acc .aa-acc-body {
        padding: 10px;
    }

    .aa-seo-box {
        padding: 12px;
        border-radius: 14px;
    }

        .aa-seo-box h2 {
            font-size: 17px;
        }

        .aa-seo-box p {
            font-size: 13px;
            line-height: 1.6;
        }

    .aa-seo-tags span {
        font-size: 10.5px;
        padding: 5px 9px;
    }

    .aa-seo-faq h3 {
        font-size: 16px;
    }

    .aa-seo-faq-item {
        padding: 11px;
    }

        .aa-seo-faq-item b {
            font-size: 13.5px;
        }

        .aa-seo-faq-item p {
            font-size: 12.5px;
        }
}

/* Base */
.aa-breadcrumb {
    font-size: 14px;
    margin: 10px 0 20px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    /* Links */
    .aa-breadcrumb a {
        text-decoration: none;
        color: #6c4cff;
        font-weight: 500;
    }

    /* Active */
    .aa-breadcrumb .active {
        color: #222;
        font-weight: 600;
    }

    /* Separator */
    .aa-breadcrumb span {
        color: #aaa;
    }

---
/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .aa-breadcrumb

{
    font-size: 12px;
    gap: 5px;
    overflow-x: auto; /* 🔥 scroll instead of wrap */
    white-space: nowrap; /* single line */
    padding-bottom: 5px;
}

.aa-breadcrumb::-webkit-scrollbar {
    display: none; /* clean look */
}

.aa-breadcrumb a,
.aa-breadcrumb span {
    flex-shrink: 0;
}

/* 🔥 Long product name handle */
.aa-breadcrumb .active {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}
}



































.aa-cart-added-modal {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #fffaf2;
    box-shadow: 0 18px 45px rgba(59, 35, 95, 0.28);
}

    .aa-cart-added-modal .modal-body {
        padding: 28px 22px;
        text-align: center;
    }

.aa-cart-added-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b235f, #5b348c);
    color: #ffd86b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.aa-cart-added-modal h4 {
    margin: 0 0 8px;
    color: #3b235f;
    font-weight: 900;
}

.aa-cart-added-modal p {
    margin: 0 0 14px;
    color: #6f627d;
    font-size: 14px;
}

.aa-cart-added-product {
    background: #ffffff;
    border: 1px solid rgba(59, 35, 95, 0.12);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 18px;
}

    .aa-cart-added-product strong {
        display: block;
        color: #3b235f;
        font-size: 15px;
    }

    .aa-cart-added-product span {
        display: block;
        color: #777;
        font-size: 13px;
        margin-top: 3px;
    }

.aa-cart-added-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.aa-btn-continue,
.aa-btn-checkout {
    border: none;
    border-radius: 14px;
    padding: 12px 10px;
    font-weight: 900;
    cursor: pointer;
}

.aa-btn-continue {
    background: #ffffff;
    color: #3b235f;
    border: 1px solid rgba(59, 35, 95, 0.18);
}

.aa-btn-checkout {
    background: linear-gradient(135deg, #3b235f, #5b348c);
    color: #ffd86b;
}

@media (max-width: 480px) {
    .aa-cart-added-actions {
        grid-template-columns: 1fr;
    }
}
.modal-backdrop.show {
    opacity: 0.12 !important;
}



/*Review New CSS*/

.aa-review-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.aa-review-heading {
    font-size: 18px;
    font-weight: 800;
    color: #3b235f;
    margin-bottom: 10px;
}

.aa-review-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #fff;
}

.aa-review-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #3b235f;
    color: #ffd86b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex: 0 0 42px;
}

.aa-review-content {
    width: 100%;
}

.aa-review-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

    .aa-review-top strong {
        display: block;
        font-size: 14px;
        color: #222;
    }

    .aa-review-top small {
        display: block;
        margin-top: 2px;
        font-size: 12px;
        color: #777;
    }

.aa-review-rate {
    background: #168516;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    height: fit-content;
    white-space: nowrap;
}

.aa-stars {
    margin: 6px 0;
    color: #ffa41c;
    font-size: 16px;
}

.aa-review-title {
    display: block;
    font-size: 14px;
    color: #3b235f;
    margin-bottom: 6px;
}

.aa-review-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #333;
}

.aa-review-uploaded-img {
    margin-top: 10px;
}

    .aa-review-uploaded-img img {
        width: 78px;
        height: 78px;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid #ddd;
        cursor: zoom-in;
    }

.aa-no-review {
    padding: 12px;
    background: #fafafa;
    border: 1px dashed #ddd;
    border-radius: 8px;
    color: #777;
    font-size: 14px;
}

.aa-review-zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.aa-review-zoom-box {
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

    .aa-review-zoom-box button {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 50%;
        background: #000;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .aa-review-zoom-box img {
        width: 100%;
        max-height: 82vh;
        object-fit: contain;
        display: block;
        background: #fff;
    }