/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 6vh;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
    gap: 1px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 1;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;

}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/* ------------------------------------------- */
/*  RESPONSIVE CAROUSEL IMAGE FOR ALL DEVICES  */
/* ------------------------------------------- */

/* Desktop + Tablet Carousel */
.cars-img {
    width: 100%;
    height: 100vh;
    /* Full hero height */
    object-fit: cover;
    object-position: center;
    display: block;

}

/* Tablet */
@media (max-width: 992px) {
    .cars-img {
        height: 70vh;
        margin-top: 80px;
    }
}

/* Mobile — picture source already switches image */
@media (max-width: 576px) {
    .cars-img {
        height: 65vh;
        margin-top: 80px;
        /* object-fit: contain; */
        /* Keep mobile art fully visible */
    }
}

@media (max-width: 324px) {
    .cars-img {
        height: 85vh;
        margin-top: 50px;
        width: auto;
    }
}


.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
    margin-right: px;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

@media (max-width: 767.98px) {

    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1000px 0;
    }
}

.footer {
    background-image: url(../img/footer-bg.png);
    background-position: 0px 0px;
    background-repeat: repeat-x;
    animation: footerAnimatedBg 50s linear infinite;
}

/* Media Queries for 320px */
/* Footer */
.footer h1 {
    font-size: 1.4rem;
}

.footer .nav-link {
    font-size: 0.75rem;
    padding: 0 4px;
}

/* Buttons */
.btn-outline-primary,
.btn-primary {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
}

/* Navbar */
.navbar-brand h2 {
    font-size: 1rem !important;
    line-height: 1.3;
}

/* About Page Styles */
/* === Responsive Fixes for Small Devices (≤ 400px) === */
@media (max-width: 400px) {

    /* General layout */
    /* body {
            overflow-x: hidden;
        } */

    .container,
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Navbar */
    .navbar-brand h2 {
        font-size: 1rem !important;
        line-height: 1.3;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }

    .btn {
        font-size: 14px !important;
        padding: 8px 14px !important;
    }

    /* Page header (breadcrumb area) */
    .page-header h1.display-4 {
        font-size: 1.8rem !important;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    /* About section */
    .bg-secondary .title h1 {
        font-size: 1.3rem;
    }

    .bg-secondary .title h5 {
        font-size: 1rem;
    }

    .bg-secondary p.fs-5 {
        font-size: 0.95rem !important;
        text-align: justify;
    }

    .list-group-item {
        font-size: 0.85rem;
    }

    .row .col-6 a.btn {
        font-size: 0.8rem !important;
        padding: 8px 10px !important;
    }

    .bg-secondary img.img-fluid {
        width: 100%;
        margin: 10px auto;
        display: block;
    }

    /* Second about section */
    .container>.row img {
        width: 90%;
        margin: 0 auto;
        display: block;
    }

    /* Banner */
    .title-center h1 {
        font-size: 1.4rem;
    }

    .title-center h5 {
        font-size: 1rem;
    }

    .fs-5 {
        font-size: 0.95rem !important;
    }

    .position-relative input.form-control {
        font-size: 0.9rem;
        padding: 10px 15px !important;
    }

    .position-relative button.btn {
        font-size: 0.85rem !important;
        padding: 8px 14px !important;
        margin-top: 8px !important;
    }

    /* Prevent overflow from WOW.js animations */
    .wow {
        overflow: hidden;
    }
}

/* Index Page Styles */
/* === Mobile Responsiveness Fixes (for 320px) === */
@media (max-width: 400px) {

    /* Navbar */
    .navbar-brand h2 {
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 8px 0;
        font-size: 14px;
        text-align: center;
    }

    .btn {
        font-size: 14px !important;
        padding: 8px 14px !important;
    }

    /* Carousel */
    #header-carousel h1 {
        font-size: 1.5rem;
    }

    #header-carousel p {
        font-size: 0.9rem;
    }

    .carousel-caption {
        padding: 0 10px;
    }

    /* About section */
    .title h1 {
        font-size: 1.4rem;
    }

    .title h5 {
        font-size: 0.9rem;
    }

    .container-fluid.bg-secondary .row {
        text-align: center;
    }

    .container-fluid.bg-secondary img {
        width: 80%;
        margin: 0 auto;
    }



    /* Popular Product */
    .service-item .service-img {
        padding: 1rem !important;
    }

    .service-text {
        text-align: center !important;
        padding: 0 10px !important;
    }

    .service-text h3 {
        font-size: 1.2rem;
    }

    .service-text p {
        font-size: 0.9rem;
    }

    /* Product Grid */
    .team-item img {
        width: 100%;
        height: auto;
    }

    .team-item h5 {
        font-size: 0.9rem;
    }

    /* Modal */
    .modal-content {
        margin: 0 5px;
    }

    .modal-body label {
        font-size: 0.9rem;
    }

    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }

    .modal-footer .btn {
        width: 100%;
    }

    /* Testimonial */
    .testimonial-item p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .testimonial-item h5 {
        font-size: 1rem;
    }

    /* Signup banner */
    .position-relative input {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .position-relative .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* Product Details Page Styles */
/* Styling to match the Black and Dark Pink Theme for the iframe content */
body {
    background-color: #0d0d0d;
    /* Dark charcoal background */
    color: #fff;
    padding: 20px;
    margin: 0;
    font-family: Arial, sans-serif;
}

.product-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    min-height: 70vh;
    max-width: 1000px;
    /* Added max-width for better structure */
    margin: auto;
}

@media (min-width: 768px) {
    .product-layout {
        flex-direction: row;
    }
}

.image-side {
    flex: 0 0 45%;
    padding: 10px;
    border: 2px solid #ff007f;
    /* Bright pink border */
    background-color: #000;
    text-align: center;
}

/* Main Image Styling */
#detailImage {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    /* Added transition for a smooth swap */
    transition: opacity 0.3s ease-in-out;
    display: block;
    margin-bottom: 15px;
}

/* Thumbnails Container */
.thumbnails-container {
    display: flex;
    justify-content: space-around;
    /* Changed from g-4 to better distribute thumbnails */
    gap: 10px;
    padding: 10px 0;
}

/* Thumbnail Styling (Merged from previous code) */
.thumbnail {
    width: 80px;
    /* Fixed size for thumbnails */
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    opacity: 0.7;
    transition: border-color 0.2s, opacity 0.2s;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    border-color: #ff007f;
    /* Highlight color: Bright Pink */
    opacity: 1;
}

.detail-side {
    flex: 1;
    padding: 20px;
    background-color: #040404;
    border-radius: 4px;
}

h2 {
    color: #ff007f;
    /* Bright pink heading */
}

.spec-table {
    margin-top: 15px;
}

.spec-table span {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #4d004d;
    /* Deep plum dashed line */
    font-size: 1.1em;
}

.spec-table strong {
    color: #ff99cc;
    /* Lighter pink label */
    margin-right: 10px;
    font-weight: bold;
}

.btn-shop {
    background-color: #ff007f;
    border: none;
    color: white;
    padding: 12px 25px;
    font-size: 1.2em;
    margin-top: 30px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.btn-shop:hover {
    background-color: #cc0066;
}

/* --- Mobile Optimization --- */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    h2 {
        font-size: 1.2em;
    }

    .spec-table span {
        font-size: 0.9em;
    }

    .image-side {
        padding: 5px;
    }

    .thumbnails-container {
        gap: 6px;
    }

    .thumbnail {
        width: 60px;
        height: 75px;
    }

    .btn-shop {
        font-size: 0.95em;
        padding: 10px;
    }

    p {
        font-size: 0.9em;
    }

    .thumbnail {
        width: 50px !important;
        height: 60px !important;
    }

    .thumbnail-container {
        width: auto !important;
        gap: 4px !important;
    }

    .image-side img {
        width: 15% !important;
        height: auto !important;
    }

    #detailImage {
        width: 270px !important;
        height: auto !important;
    }
}

/* Blog Page Style */
/* === Mobile Optimization (max-width: 400px) === */
@media (max-width: 400px) {

    /* GENERAL */
    body {
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* NAVBAR */
    .navbar-brand h2 {
        font-size: 0.8rem !important;
        line-height: 1;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }

    .btn {
        font-size: 14px !important;
        padding: 8px 12px !important;
    }

    /* PAGE HEADER */
    .page-header h1.display-4 {
        font-size: 1.8rem !important;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    /* BLOG SECTION */
    .blog-item {
        text-align: center;
    }

    .blog-text h4 {
        font-size: 1.1rem;
    }

    .blog-text p {
        font-size: 0.9rem;
    }

    .btn-sm {
        font-size: 0.8rem !important;
        padding: 6px 10px !important;
    }

    /* Stack blog cards in one column */
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* ENQUIRY BANNER */
    .title-center h1 {
        font-size: 1.4rem;
    }

    .title-center h5 {
        font-size: 1rem;
    }

    .fs-5 {
        font-size: 0.95rem !important;
    }

    .position-relative input.form-control {
        font-size: 0.9rem;
        padding: 10px 15px !important;
    }

    .position-relative .btn {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
        position: static !important;
        width: 100%;
        margin-top: 10px !important;
    }

    /* FOOTER */
    .footer h1.display-4 {
        font-size: 1.4rem !important;
    }

    .footer p {
        font-size: 0.8rem;
    }

    .btn-lg-square {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }

    /* BLOG IMAGE FIX */
    .blog-img img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* SPINNER ADJUST */
    #spinner .spinner-grow {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
}


@media (max-width: 576px) {
    .container-fluid.py-5 {
        padding: 3rem 1rem !important;
    }

    .title h1 {
        font-size: 1.5rem !important;
    }

    .title h5 {
        font-size: 1rem !important;
    }

    .fs-6 {
        font-size: 0.9rem !important;
    }

    input.form-control {
        font-size: 0.9rem;
        padding: 10px 45px 10px 15px !important;
    }

    .btn.btn-primary {
        padding: 8px 14px !important;
        font-size: 13px !important;
    }
}

/* Client Banner */

/* === Shahana Fragrance Theme Colors === */
.bg-black {
    background-color: #111 !important;
}

.text-pink {
    color: #ff99cc !important;
}

.text-hotpink {
    color: #ff007f !important;
}

.btn-pink {
    background-color: #ff007f !important;
    color: #fff !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: #cc0066 !important;
}

/* === Responsive adjustments for 320px–480px === */
@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem !important;
    }

    h5 {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }

    p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    input.form-control {
        font-size: 0.9rem !important;
        padding: 10px 50px 10px 15px !important;
    }

    .btn-pink {
        padding: 8px 14px !important;
        font-size: 13px !important;
    }
}


/* whatsapp button */

.whatsapp-float {
    position: fixed;
    width: 75px;
    height: 75px;
    bottom: 110px;
    /* distance from bottom */
    right: 29px;
    /* distance from right side */
    /* background-color: #00d084; */
    color: #e31779;
    border-radius: 50%;
    text-align: center;
    font-size: 50px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: #d04596;
}


/* ----------  Tablets Screen (768px – 1024px) ---------- *

/* ----------  Mobile Devices (up to 767px) ---------- */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 15px;
        font-size: 35px;
    }

    .back-to-top {
        right: 15px;
        bottom: 35px;
        font-size: 35px;
    }
}

/* ----------  Extra Small Mobiles (up to 480px) ---------- */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 100px;
        right: 12px;
        font-size: 50px;
    }

    .back-to-top {
        right: 15px;
        bottom: 35px;
        font-size: 50px;
    }
}

/* ============================== */
/* FRAGRANCE ANIMATION STYLES     */
/* ============================== */

.page-header {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 20, 147, 0.1));
}

.fragrance-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Floating Perfume Bottles */
.perfume-bottle {
    position: absolute;
    width: 60px;
    height: 80px;
    opacity: 0.1;
    animation: floatPerfume 8s ease-in-out infinite;
}

.perfume-bottle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #ff1493, #ffd700, #ff69b4);
    border-radius: 50% 50% 50% 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 20, 147, 0.3);
}

.perfume-bottle::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 70px;
    background: linear-gradient(to bottom, 
        rgba(255, 20, 147, 0.1) 0%,
        rgba(255, 215, 0, 0.15) 30%,
        rgba(255, 105, 180, 0.1) 50%,
        rgba(255, 215, 0, 0.1) 70%,
        rgba(255, 20, 147, 0.1) 100%);
    border-radius: 8px 8px 12px 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.bottle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.bottle-2 {
    top: 30%;
    right: 15%;
    animation-delay: -3s;
    animation-duration: 12s;
}

.bottle-3 {
    top: 60%;
    left: 20%;
    animation-delay: -6s;
    animation-duration: 9s;
}

/* Aromatic Particles */
.aromatic-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ff69b4, #ffd700, #ff1493, transparent);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
    opacity: 0;
}

.particle-1 { top: 25%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 35%; right: 20%; animation-delay: -1s; }
.particle-3 { top: 45%; left: 30%; animation-delay: -2s; }
.particle-4 { top: 55%; right: 25%; animation-delay: -3s; }
.particle-5 { top: 65%; left: 40%; animation-delay: -4s; }
.particle-6 { top: 75%; right: 30%; animation-delay: -5s; }
.particle-7 { top: 30%; left: 60%; animation-delay: -1.5s; }
.particle-8 { top: 50%; right: 40%; animation-delay: -2.5s; }
.particle-9 { top: 70%; left: 70%; animation-delay: -3.5s; }
.particle-10 { top: 40%; right: 60%; animation-delay: -4.5s; }

/* Aromatic Swirls */
.aromatic-swirl {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: swirlRotation 15s linear infinite;
    opacity: 0;
}

.aromatic-swirl::before,
.aromatic-swirl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.aromatic-swirl::after {
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.swirl-1 {
    top: 20%;
    left: 50%;
    animation-delay: 0s;
}

.swirl-2 {
    top: 50%;
    right: 10%;
    animation-delay: -5s;
    animation-direction: reverse;
}

.swirl-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.swirl-4 {
    top: 60%;
    left: 80%;
    animation-delay: -7s;
    animation-direction: reverse;
}

/* Keyframe Animations */
@keyframes floatPerfume {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(-1deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-25px) translateX(15px) rotate(1deg);
        opacity: 0.25;
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        transform: translateY(-100px) translateX(20px) scale(0.8);
        opacity: 0.7;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-150px) translateX(-10px) scale(0);
        opacity: 0;
    }
}

@keyframes swirlRotation {
    0% {
        transform: rotate(0deg) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.3;
        transform: rotate(72deg) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: rotate(180deg) scale(1.2);
    }
    80% {
        opacity: 0.3;
        transform: rotate(288deg) scale(1);
    }
    100% {
        transform: rotate(360deg) scale(0.8);
        opacity: 0;
    }
}


/* Golden Sparkle Effects */
.golden-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffd700, transparent 70%);
    border-radius: 50%;
    animation: goldenSparkle 4s ease-in-out infinite;
    opacity: 0;
}

.sparkle-1 {
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 45%;
    right: 30%;
    animation-delay: -1s;
}

.sparkle-3 {
    top: 65%;
    left: 35%;
    animation-delay: -2s;
}

.sparkle-4 {
    top: 35%;
    right: 50%;
    animation-delay: -3s;
}

/* Keyframe for golden sparkle */
@keyframes goldenSparkle {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

/* Responsive adjustments for fragrance animations */
@media (max-width: 768px) {
    .perfume-bottle {
        width: 40px;
        height: 50px;
    }
    
    .perfume-bottle::before {
        width: 10px;
        height: 10px;
    }
    
    .perfume-bottle::after {
        width: 25px;
        height: 45px;
    }
    
    .aromatic-swirl {
        width: 60px;
        height: 60px;
    }
    
    .aromatic-particle {
        width: 3px;
        height: 3px;
    }

    .golden-sparkle {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .perfume-bottle {
        width: 30px;
        height: 40px;
    }
    
    .aromatic-swirl {
        width: 40px;
        height: 40px;
    }
    
    .aromatic-particle {
        width: 2px;
        height: 2px;
    }

    .golden-sparkle {
        width: 3px;
        height: 3px;
    }
}