﻿


/* ACCORDION - Avir Aroma Theme */
.accordion-item {
    border: none;
    margin: 0 10px 10px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

.accordion-button {
    background: linear-gradient(90deg, #fff7e3, #ffffff);
    color: #3b235f;
    font-weight: 800;
    font-size: 14px;
    padding: 13px 14px;
    border: 1px solid rgba(184,134,11,.25);
    box-shadow: 0 6px 18px rgba(59,35,95,.08);
}

    .accordion-button:not(.collapsed) {
        color: #3b235f;
        background: linear-gradient(90deg, #3b235f, #6b3fa0);
        color: #ffd86b;
        box-shadow: 0 8px 22px rgba(59,35,95,.22);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(255,216,107,.45);
    }

    .accordion-button::after {
        filter: sepia(1) saturate(4) hue-rotate(350deg);
    }

.accordion-collapse {
    background: #fffaf2;
}

/* GRID */
.perfume-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px 10px;
    background: linear-gradient(180deg, #fffaf2, #ffffff);
}

/* PRODUCT CARD */
.perfume-card {
    background: #ffffff;
    color: #3b235f;
    border-radius: 24px;
    padding: 12px;
    border: 1px solid rgba(184,134,11,.28);
    box-shadow: 0 12px 30px rgba(59,35,95,.12);
    overflow: hidden;
}

/* CARD HEADER */
.premium-header {
    background: linear-gradient(135deg, #3b235f, #6b3fa0);
    border-radius: 18px;
    border: 1px solid rgba(255,216,107,.4);
    padding: 10px;
    margin-bottom: 10px;

}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.chip-perfumeName {
    background: rgba(255,255,255,.12);
    color: #ffd86b;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    margin: 0;
    max-width: 62%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-btn {
    background: linear-gradient(90deg, #b8860b, #ffd86b);
    color: #2b1748;
    border: none;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
}

/* IMAGE */
.image-box {
    position: relative;
    background: linear-gradient(180deg, #fffaf2, #ffffff);
    border: 1px solid rgba(184,134,11,.25);
    border-radius: 22px;
    padding: 12px;
    margin-bottom: 12px;
}

    .image-box img {
        width: 100%;
        height: 165px;
        object-fit: contain;
    }

/* BADGES */
.badge-bestseller,
.badge-gender,
.rating {
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 9px;
}

.badge-bestseller {
    position: absolute;
    top: 9px;
    left: 9px;
    background: linear-gradient(90deg, #b8860b, #ffd86b);
    color: #2b1748;
}

.badge-gender {
    position: absolute;
    bottom: 9px;
    left: 9px;
    background: #3b235f;
    color: #ffd86b;
}

.badge-top {
    position: absolute;
    top: 9px;
    right: 9px;
}

.rating {
    background: #fff;
    color: #3b235f;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* CONTENT */
.perfume-title {
    color: #3b235f;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
}

.desc {
    color: #6b5a42;
    font-size: 13px;
    line-height: 1.5;
}

/* PRICE */
.mrp {
    color: #9a8d7a;
    text-decoration: line-through;
}

.price {
    color: #3b235f;
    font-size: 20px;
    font-weight: 900;
}

.discount {
    background: #fff3c4;
    color: #8a6500;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

/* SIZE */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 12px 0;
}

.size-box {
    flex: 1 1 calc(33.33% - 7px);
    border: 1px solid rgba(184,134,11,.35);
    color: #3b235f;
    background: #fffaf2;
    padding: 8px 6px;
    border-radius: 999px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

    .size-box.active {
        background: linear-gradient(90deg, #3b235f, #6b3fa0);
        color: #ffd86b;
        box-shadow: 0 6px 16px rgba(59,35,95,.25);
    }

    .size-box.in-cart {
        background: #e8f7dd;
        color: #227000;
    }

/* BUTTONS */
.add-btn,
.remove-btn {
    width: 100%;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    border: none;
}

.add-btn {
    background: linear-gradient(90deg, #b8860b, #ffd86b, #b8860b);
    color: #2b1748;
    box-shadow: 0 8px 18px rgba(184,134,11,.28);
}

.remove-btn {
    background: #3b235f;
    color: #ffd86b;
}

/* RESPONSIVE */
@media (min-width: 600px) {
    .perfume-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .perfume-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .perfume-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}



@keyframes gradientAnim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}




body {
    padding-top: 80px; /* adjust based on header height */
}









/* Promo code CSS*/


/* Promo Strip */
.promo-strip {
    background: linear-gradient(90deg, #6c3483, #8e44ad);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
}

/* Content Layout */
.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Text */
.promo-text {
    font-size: 0.95rem;
}

/* Button */
.promo-btn {
    background: #fff;
    color: #6c3483;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .promo-btn:hover {
        background: #f1e9f7;
        color: #4a235a;
    }

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        gap: 8px;
    }

    .promo-text {
        font-size: 0.85rem;
    }

    .promo-btn {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

.promo-strip {
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}





/*Slider Cards titles*/

/* Hide scrollbar */
div::-webkit-scrollbar {
    display: none;
}

/* Premium Card */
.premium-card {
    min-width: 260px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    padding: 20px;
    border-radius: 16px;
    /* Matte red base */
    background: linear-gradient(90deg, #cf8c8c, #8e44ad);
    /* Gold border glow */
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 10px rgba(255,215,0,0.2);
    transition: 0.4s;
}

    /* Title */
    .premium-card h3 {
        color: #FFD700;
        margin-bottom: 10px;
    }

    /* Text */
    .premium-card p {
        font-size: 14px;
        color: #eee;
    }

    /* Hover */
    .premium-card:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 12px 30px rgba(0,0,0,0.6), 0 0 20px rgba(255,215,0,0.5);
    }


/*btn css from https://gradientbuttons.colorion.co/ */

.btn-grad {
    background-image: linear-gradient(to right, #1D2B64 0%, #F8CDDA 51%, #1D2B64 100%);
}

.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    outline: none;
    border: none;
}

    .btn-grad:hover {
        background-position: right center;
        color: #fff;
        text-decoration: none;
    }




    /*About Section*/

.about-section {
    padding: 26px 14px;
    background: linear-gradient(180deg, #fffaf2, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.about-card {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #3b235f, #6b3fa0);
    border-radius: 28px;
    padding: 18px;
    border: 1px solid rgba(255,216,107,.35);
    box-shadow: 0 16px 38px rgba(59,35,95,.22);
    overflow: hidden;
}

.about-image-wrap {
    background: linear-gradient(180deg, #fffaf2, #ffffff);
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(184,134,11,.25);
    margin-bottom: 18px;
}

.about-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.about-content {
    color: #fff;
}

.about-label {
    display: inline-block;
    color: #2b1748;
    background: linear-gradient(90deg, #b8860b, #ffd86b);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-content h3 {
    color: #ffd86b;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.about-content p {
    color: #f7ecff;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-content ul {
    padding-left: 18px;
    color: #fffaf2;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg, #b8860b, #ffd86b, #b8860b);
    color: #2b1748;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(184,134,11,.35);
    transition: .3s ease;
}

    .about-btn:hover {
        transform: translateY(-3px);
        color: #2b1748;
    }

/* Desktop */
@media (min-width: 768px) {
    .about-section {
        padding: 50px 24px;
    }

    .about-card {
        display: flex;
        align-items: center;
        gap: 34px;
        padding: 28px;
    }

    .about-image-wrap {
        flex: 0 0 42%;
        margin-bottom: 0;
    }

    .about-img {
        height: 360px;
    }

    .about-content h3 {
        font-size: 38px;
    }
}