@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/roboto-700-normal.woff2") format("woff2");
}

/* Luxury Chikankari Design Variables */
:root {
    --aq-color-maroon: #C98F9D;
    /* Elegant Onion Pink / Dusty Rose Accent */
    --aq-color-black: #5A3E36;
    /* Cocoa Brown Typography */
    --aq-color-white: #ffffff;
    --aq-color-cream: #F8F2E9;
    /* Warm Creamish Heritage Background */
    --aq-color-cream-dark: #EFE7DC;
    /* Rich warm-white border color */
    --aq-color-pink-light: #FAF5EE;
    /* Transparent Soft Pink Backgrounds */
    --aq-color-gold: #C6A769;
    /* Antique Gold Highlights */
    --aq-color-gold-light: #FAF2E6;
    /* Subtle Soft Gold accent */
    --aq-color-cocoa-dark: #3E2923;
    /* Deeper Cocoa Brown for royal grounding */

    --aq-ff-body: 'Montserrat', sans-serif;
    /* --aq-ff-heading: 'Cormorant Garamond', Georgia, serif; */
    --aq-ff-heading: 'Outfit', sans-serif !important;
    --aq-ff-p: 'Montserrat', sans-serif;
    --aq-ff-satoshi-light: 'Montserrat', sans-serif;
    --aq-ff-satoshi-regular: 'Montserrat', sans-serif;
    --aq-ff-satoshi-medium: 'Montserrat', sans-serif;
    --aq-ff-satoshi-bold: 'Montserrat', sans-serif;
    --aq-ff-onest: 'Montserrat', sans-serif;
    --aq-ff-libre: 'Cormorant Garamond', Georgia, serif;
    --aq-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --aq-footer-bg: #3E2923;
    /* Grounded Dark Cocoa Footer for luxurious contrast */
}

body {
    font-family: var(--aq-ff-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--aq-ff-heading) !important;
    font-weight: 500;
    color: var(--aq-color-maroon);
    letter-spacing: .5px;
}

p {
    font-family: var(--aq-ff-body) !important;
}

.aq-btn-black {
    border-radius: 50px !important;
    padding: 14px 32px !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-size: 14px;
    transition: var(--aq-transition) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--aq-color-black) !important;
    background-color: var(--aq-color-black) !important;
    color: var(--aq-color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.aq-btn-black:hover {
    background-color: #fff !important;
    border-color: var(--aq-color-green) !important;
}

.aq-btn-black.btn-red-bg {
    background-color: var(--aq-color-green) !important;
    border-color: var(--aq-color-green) !important;
}

.aqf-slider-item {
    position: relative;
    height: 500px;
}

.aqf-slider-btn-wrap {
    position: absolute !important;
    bottom: 50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100%;
    justify-content: center !important;
    z-index: 5;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .aq-btn-black {
        padding: 10px 24px !important;
        font-size: 12px;
    }

    .aqf-slider-btn-wrap {
        bottom: 30px !important;
        gap: 10px !important;
        flex-direction: column;
    }
}

.aqf-collection-item {
    background: var(--aq-color-white);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--aq-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.aqf-collection-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.aqf-collection-thumb {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.aqf-collection-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: var(--aq-transition);
    z-index: 1;
}

.aqf-collection-item:hover .aqf-collection-thumb::after {
    background: rgba(0, 0, 0, 0.4);
}

.aqf-collection-thumb img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.aqf-collection-item:hover .aqf-collection-thumb img {
    transform: scale(1.08) !important;
}

.aqf-collection-content-wrap {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.aqf-collection-content span,
.aqf-collection-title a {
    color: #fff !important;
}

.aqf-collection-title {
    margin-bottom: 4px;
}

.aqf-reel-item {
    background: var(--aq-color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--aq-transition);
    height: 450px;
    position: relative;
    cursor: pointer;
}

.aqf-reel-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.aqf-reel-video {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.aqf-reel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aqf-reel-content-wrap {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%);
}

.aqf-reel-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aqf-reel-profile img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid #fff;
}

.aqf-reel-title {
    color: #fff !important;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

.aqf-video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aqf-video-lightbox.show {
    display: flex;
    opacity: 1;
}

.aqf-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.aqf-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 80vh;
    z-index: 2;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aqf-video-lightbox.show .aqf-lightbox-content {
    transform: scale(1);
}

.aqf-lightbox-video-wrapper {
    width: 100%;
    height: 100%;
}

.aqf-lightbox-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aqf-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aqf-lightbox-close:hover {
    background: #fff;
    color: #000;
    transform: rotate(90deg);
}

.aqf-lightbox-next,
.aqf-lightbox-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aqf-lightbox-next:hover,
.aqf-lightbox-prev:hover {
    background: #fff;
    color: #000;
}

.aqf-lightbox-prev {
    left: 40px;
}

.aqf-lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .aqf-lightbox-content {
        max-width: 90%;
        height: 70vh;
    }

    .aqf-lightbox-prev {
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .aqf-lightbox-next {
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .aqf-lightbox-close {
        right: 15px;
        top: 15px;
        width: 40px;
        height: 40px;
    }
}

.aq-footer-contact-luxury {
    margin-top: 30px;
}

.aq-contact-item-luxury {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aq-contact-item-luxury:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.aq-contact-icon-box {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.aq-contact-item-luxury:hover .aq-contact-icon-box {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.aq-contact-content-luxury h6 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.aq-contact-content-luxury p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 400;
}

.aq-footer-title-luxury i {
    color: #fff;
}

.aqf-brand-area {
    position: relative;
    overflow: hidden;
}

.aq-brand-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 40px 20px;
    margin: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.aq-brand-item img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    transition: all 0.5s ease;
}

.aq-brand-item:hover {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px #C98F9D;
    border-color: rgba(128, 0, 0, 0.1);
}

.aqf-brand-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#C98F9D 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.02;
    pointer-events: none;
}

.aq-footer-menu-luxury li a i {
    font-size: 10px;
    margin-right: 8px;
    transition: all 0.3s ease;
    color: rgb(255 255 255 / 71%);
}

.aq-footer-menu-luxury li a:hover i {
    color: #fff;
    transform: translateX(3px);
}

.aq-footer-social-luxury a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aq-footer-social-luxury a:hover {
    background: #fff;
    color: #C98F9D;
    transform: translateY(-5px);
}

.aq-footer-bottom-luxury {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 0;
}

.copyright-text span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.copyright-create {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 0;
}

.copyright-create a {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.copyright-create a:hover {
    color: #C98F9D;
}

/* Premium Testimonials */
.aqf-testimonial-area-creative::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: var(--aq-color-pink-light);
    border: 1px solid var(--aq-color-cream-dark);
    border-radius: 50%;
    z-index: -1;
}

.aqf-testimonial-area-creative::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--aq-color-cream-dark);
    border: 1px solid var(--aq-color-cream-dark);
    border-radius: 50%;
    z-index: -1;
}

.aqf-testimonial-card-creative {
    background: var(--aq-color-maroon);
    border-radius: 30px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    gap: 50px;
    transition: var(--aq-transition);
    box-shadow: 0 20px 50px rgba(197, 108, 125, 0.15);
}

.aqf-testimonial-image-creative {
    flex: 0 0 250px;
    width: 250px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: var(--aq-color-maroon) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aqf-testimonial-image-creative::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin: 15px;
    pointer-events: none;
}

.aqf-testimonial-image-creative img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.5s ease;
}

.swiper-slide-active .aqf-testimonial-image-creative img {
    /*transform: scale(1.1);*/
}

.aqf-testimonial-content-creative {
    flex: 1;
    text-align: left;
}

.aqf-testimonial-quote-v2 {
    color: #fff;
    font-size: 80px;
    line-height: 1;
    margin-bottom: 30px;
    opacity: 0.8;
    font-family: serif;
}

.aqf-testimonial-text-v2 p {
    font-size: 28px;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: var(--aq-ff-heading) !important;
    letter-spacing: 0.5px;
    position: relative;
}

.aqf-testimonial-author-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.aqf-testimonial-author-v2 h4 {
    color: #fff !important;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.aqf-testimonial-author-v2 span {
    color: #fff !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.aqf-testimonial-dot {
    bottom: -60px !important;
}

.aqf-testimonial-dot .swiper-pagination-bullet {
    width: 30px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: rgba(128, 0, 0, 0.1) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.aqf-testimonial-dot .swiper-pagination-bullet-active {
    background: #C98F9D !important;
    width: 50px !important;
}

.aqf-testimonial-arrow button {
    background: #fff !important;
    border: 1px solid #eee !important;
    color: #333 !important;
    width: 60px !important;
    height: 60px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.aqf-testimonial-prev {
    left: -100px !important;
}

.aqf-testimonial-next {
    right: -100px !important;
}

.aqf-testimonial-arrow button:hover {
    background: #C98F9D !important;
    border-color: #C98F9D !important;
    color: #fff !important;
}

.aq-header-bottom-area .aq-corp-megamenu-inner {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
}

.aq-header-bottom-area .aq-corp-megamenu-col {
    flex: 1 1 0;
    min-width: 150px;
}

@media (max-width: 1500px) {
    .aqf-testimonial-prev {
        left: -50px !important;
    }

    .aqf-testimonial-next {
        right: -50px !important;
    }
}

@media (max-width: 1199px) {
    .aqf-testimonial-card-creative {
        padding: 50px;
        gap: 40px;
    }

    .aqf-testimonial-image-creative {
        flex: 0 0 220px;
        width: 220px;
        height: 360px;
    }

    .aqf-testimonial-text-v2 p {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .aqf-testimonial-card-creative {
        /*flex-direction: column;*/
        text-align: center;
        padding: 40px 30px;
    }

    .aqf-testimonial-content-creative {
        text-align: center;
    }

    .aqf-testimonial-image-creative {
        flex: 0 0 auto;
        width: 200px;
        height: 320px;
        border-radius: 16px;
        margin: 0 auto;
        max-width: 100%;
    }

    .aqf-testimonial-image-creative::after {
        border-radius: 16px;
    }

    .aqf-testimonial-card-creative {
        /*flex-direction: column;*/
        text-align: center;
        padding: 40px 30px;
    }

    .aqf-testimonial-content-creative {
        text-align: center;
    }

    .aqf-testimonial-image-creative {
        flex: 0 0 auto;
        width: 200px;
        height: 320px;
        border-radius: 16px;
        margin: 0 auto;
        max-width: 100%;
    }

    .aqf-testimonial-image-creative::after {
        border-radius: 16px;
    }

    .aqf-testimonial-arrow {
        display: none !important;
    }

    /* NEW: limit long testimonial text so it never overflows the card */
    .aqf-testimonial-text-v2 p {
        font-size: 18px !important;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        overflow: hidden;
        text-overflow: ellipsis;
    }



    .aqf-testimonial-arrow {
        display: none !important;
    }

    .aqf-testimonial-slider .swiper-wrapper,
    .aqf-testimonial-slider .swiper-slide {
        height: auto !important;
    }

    .aqf-testimonial-card-creative {
        height: auto !important;
        min-height: auto !important;
    }
}

.aqf-summer-suit-area {
    /* background: #C98F9D; */
    position: relative;
    overflow: hidden;
}

.aqf-floating-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
    transition: all 0.5s ease;
}

.aqf-floating-shape-1 {
    top: 10%;
    left: -20px;
    width: 120px;
    color: #C98F9D;
    animation: float-left 8s ease-in-out infinite;
}

.aqf-floating-shape-2 {
    bottom: 10%;
    right: -20px;
    width: 150px;
    color: #C98F9D;
    animation: float-right 10s ease-in-out infinite;
}

@keyframes float-left {

    0%,
    100% {
        transform: translate(0, 0) rotate(-10deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(5deg);
    }
}

@keyframes float-right {

    0%,
    100% {
        transform: translate(0, 0) rotate(15deg);
    }

    50% {
        transform: translate(-30px, 20px) rotate(-5deg);
    }
}

.aqf-summer-wrap {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
}

.aqf-summer-suit-img {
    height: 100%;
}

.aqf-summer-suit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.aqf-summer-wrap:hover .aqf-summer-suit-img img {
    transform: scale(1.05);
}

.aqf-summer-slider-wrap {
    padding: 80px 40px 0px !important;
}

.aqf-summer-title-wrap h3 {
    font-size: 56px !important;
    line-height: 1.1 !important;
    color: #000 !important;
    margin-bottom: 20px;
    font-weight: 800 !important;
}

.aqf-summer-slider-content p {
    font-size: 18px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin-bottom: 40px;
}

.aqf-summer-slider-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aqf-summer-slider-arrow button {
    width: 50px !important;
    height: 50px !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    color: #333 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.aqf-summer-slider-arrow button:hover {
    background: #b87333 !important;
    border-color: #b87333 !important;
    color: #fff !important;
}

.aqf-arrow-border {
    width: 20px;
    height: 1px;
    background: #eee;
    margin: 0 15px;
}



@media (max-width: 1199px) {
    .aqf-summer-title-wrap h3 {
        font-size: 40px !important;
    }

    .aqf-summer-slider-wrap {
        padding: 0px 0px !important;
    }
}

@media (max-width: 991px) {
    .aqf-summer-suit-img {
        height: 400px;
    }

    .aqf-summer-wrap .d-none.d-lg-block {
        display: block !important;
    }

    .aqf-summer-title-wrap {
        padding-top: 40px !important;
    }
}

@media (max-width: 767px) {
    .aqf-summer-title-wrap h3 {
        font-size: 32px !important;
    }

    .aqf-summer-slider-content p {
        font-size: 16px !important;
    }
}

.aq-product-tab-btn .nav-tab {
    border: none !important;
}

.aq-product-tab-btn .nav-links {
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    background: #fff !important;
    color: #666 !important;
    margin-left: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e5e5e5 !important;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.aq-product-tab-btn .nav-links::after {
    display: none !important;
}

.aq-product-tab-btn .nav-links.active {
    background: #C98F9D !important;
    color: #fff !important;
    border-color: #C98F9D !important;
    box-shadow: rgba(128, 0, 0, .08) !important;
    transform: translateY(-2px);
}

.aq-product-tab-btn .nav-links:hover:not(.active) {
    background: #f0f0f0 !important;
    color: #333 !important;
    border-color: #d1d1d1 !important;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .aq-product-tab-btn .nav-links {
        padding: 8px 20px !important;
        margin-left: 5px !important;
        margin-bottom: 10px;
    }
}

.aqf-categories-area {
    background-color: var(--aq-color-pink-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.aqf-cat-floating-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
    animation: cat-float 10s ease-in-out infinite;
    transition: all 0.5s ease;
}

.aqf-cat-shape-1 {
    left: -30px;
    width: 130px;
    color: #C98F9D;
    bottom: 0;
}

.aqf-cat-shape-2 {
    right: -18px;
    width: 160px;
    color: #C98F9D;
    animation-delay: -5s;
    top: 22px;
}

@keyframes cat-float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(30px, -20px) rotate(15deg);
    }
}

.aqf-section-title-6 {
    font-size: 32px;
    font-weight: 700;
    color: var(--aq-color-maroon);
    position: relative;
    padding-bottom: 15px;
}

.aqf-section-title-6::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--aq-color-green) !important;
}

.aq-section-title {
    position: relative;
    padding-bottom: 15px;
}

.aq-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--aq-color-green) !important;
}

.aqf-categories-item {
    transition: var(--aq-transition);
    padding: 12px 12px 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 49, 8, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: block;
    height: 100%;
}

.aqf-categories-item:hover {
    border-color: rgba(0, 49, 8, 0.15);
    box-shadow: 0 15px 35px rgba(128, 0, 0, .08);
    transform: translateY(-6px);
}

.aqf-categories-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 0;
    overflow: hidden;
    border-radius: 16px;
    background: #faf7f2;
    transition: var(--aq-transition);
    border: none;
    box-shadow: none;
}

.aqf-categories-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.aqf-categories-item:hover .aqf-categories-img img {
    transform: scale(1.08);
}

.aqf-categories-item span {
    display: block;
    font-weight: 600;
    color: var(--aq-color-maroon);
    font-size: 14px;
    transition: var(--aq-transition);
    margin-top: 14px;
    padding: 0 4px;
    line-height: 1.4;
    letter-spacing: 0.1px;
}

.aqf-categories-item:hover span {
    color: var(--aq-color-green) !important;
}

.aqf-categories-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    transition: var(--aq-transition);
    margin-left: 10px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.aqf-categories-nav button:hover {
    background: var(--aq-color-green) !important;
    color: #fff;
    border-color: var(--aq-color-green) !important;
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .aqf-section-title-6 {
        font-size: 24px;
    }

    .aqf-categories-img {
        width: 100px;
        height: 100px;
    }

    .aqf-categories-item span {
        font-size: 14px;
    }
}

.aqf-deals-tag-premium {
    background: var(--aq-color-green) !important;
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px #C98F9D;
    transition: var(--aq-transition);
    white-space: nowrap;
}

.aqf-deals-tag-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(128, 0, 0, 0.2);
}

.aqf-deals-subtitle-premium {
    font-family: var(--aq-ff-heading);
    font-weight: 500;
    font-size: 17px;
    color: #000;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid #e5e5e5;
}

:root {
    --aq-footer-bg: #C98F9D;
}

.aq-footer-area-luxury {
    background-color: #000000;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top: 1px solid gray;
}

.aq-footer-shape-top-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.aq-footer-shape-top-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.aq-footer-shape-top-wave .shape-fill {
    fill: #ffffff;
}

.aq-footer-main {
    position: relative;
    z-index: 3;
}

.aq-footer-intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
}

.aq-footer-title-luxury {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.aq-footer-title-luxury::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
}

.aq-footer-menu-luxury {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aq-footer-menu-luxury li {
    margin-bottom: 12px;
}

.aq-footer-menu-luxury li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.aq-footer-menu-luxury li a:hover {
    color: #fff;
    padding-left: 5px;
}

.aq-footer-category-grid .footer-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    list-style: none;
    padding: 0;
}

.aq-footer-category-grid .footer-menu-grid li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.aq-footer-category-grid .footer-menu-grid li a:hover {
    color: #fff;
}

.aq-footer-social-luxury .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #000;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.aq-footer-social-luxury .social-icon:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.aq-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.aq-footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.aq-footer-policy-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-left: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.aq-footer-policy-links a:hover {
    color: #fff;
}

.aq-footer-bottom-luxury {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgb(255 255 255 / 9%);
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .aq-footer-category-grid .footer-menu-grid {
        grid-template-columns: 1fr;
    }

    .aq-footer-policy-links {
        text-align: left !important;
        margin-top: 20px;
    }
}

.aqf-brand-area {
    background: #C98F9D;
    position: relative;
}

.aqf-brand-title h2 {
    font-weight: 800;
    letter-spacing: -1px;
    color: #000;
}

.aqf-brand-area img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.aqf-brand-area .col:hover img {
    opacity: 1;
    transform: scale(1.15);
}

.aqf-shop-feature-ptb {
    padding: 120px 0;
    background-color: #C98F9D;
    position: relative;
    z-index: 1;
}

.aqf-shop-feature-ptb .container {
    position: relative;
    z-index: 5;
}

.aqf-feature-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.feature-shape-left {
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.feature-shape-right {
    top: 30%;
    right: -30px;
}

.aqf-shop-feature-item {
    background: #fff;
    padding: 60px 35px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(128, 0, 0, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.aqf-shop-feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(128, 0, 0, 0.02) 0,
            rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.aqf-shop-feature-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(128, 0, 0, 0.04);
    border-radius: 24px;
    margin-bottom: 30px;
    color: #C98F9D;
    transition: all 0.5s ease;
}

.aqf-shop-feature-item span i {
    font-size: 32px;
}

.aqf-shop-feature-ptb .aqf-floating-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.aqf-shop-feature-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
    letter-spacing: -0.5px;
}

.aqf-shop-feature-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.aqf-shop-feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(128, 0, 0, 0.1);
    border-color: #C98F9D;
}

.aqf-shop-feature-item:hover::before {
    opacity: 1;
}

.aqf-shop-feature-item:hover span {
    background: #C98F9D;
    color: #fff;
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.2);
}

@media (max-width: 1199px) {
    .aqf-shop-feature-item {
        padding: 40px 25px;
    }
}

@media (max-width: 767px) {
    .aqf-brand-area {
        padding: 60px 0;
    }

    .aqf-shop-feature-ptb {
        padding: 70px 0;
    }

    .aqf-shop-feature-item {
        margin-bottom: 25px;
    }
}

.aq-corp-megamenu {
    background: #ffffff;
    border-top: 3px solid var(--aq-color-green) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.aq-corp-megamenu-inner {
    display: flex;
    gap: 0;
    padding: 40px 0 44px;
}

.aq-corp-megamenu-col {
    flex: 1;
    padding: 0 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.aq-corp-megamenu-col:first-child {
    padding-left: 10px;
}

.aq-corp-megamenu-col:last-child {
    border-right: none;
}

.aq-corp-megamenu-heading {
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--aq-color-green) !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #C98F9D;
}

.aq-corp-megamenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aq-corp-megamenu-col ul li {
    display: block;
    margin-bottom: 2px;
}

.aq-corp-megamenu-col ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    color: rgba(15, 15, 15, 0.75);
    font-family: var(--aq-ff-body) !important;
    padding: 8px 0;
    line-height: 1.3;
    position: relative;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.aq-corp-megamenu-col ul li a::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--aq-color-green) !important;
    transition: width 0.28s ease;
}

.aq-corp-megamenu-col ul li a:hover {
    color: var(--aq-color-green) !important;
    padding-left: 8px;
}

.aq-corp-megamenu-col ul li a:hover::before {
    width: calc(100% - 8px);
}

@media (max-width: 1199px) {
    .aq-corp-megamenu-inner {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0;
    }

    .aq-corp-megamenu-col {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0 10px 20px;
    }

    .aq-corp-megamenu-col:last-child {
        border-bottom: none;
    }
}

.aqf-why-us-section {
    position: relative;
    /* padding: 60px 0 30px; */
    background: #fff;
    overflow: hidden;
}

.aqf-why-us-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#C98F9D 0.5px, transparent 0.5px);
    background-size: 28px 28px;
    opacity: 0.03;
    pointer-events: none;
}

.aqf-why-us-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(128, 0, 0, 0.1);
}

.aqf-why-us-title {
    font-size: 48px;
    color: #000;
    line-height: 1.1;
    margin: 0;
    flex: 0 0 auto;
    font-family: var(--aq-ff-heading) !important;
}

.aqf-why-us-title em {
    font-style: normal;
    color: #C98F9D;
}

.aqf-why-us-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.aqf-why-us-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #C98F9D, transparent);
    flex-shrink: 0;
    opacity: 0.4;
}

.aqf-why-us-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
}

.aqf-why-us-cards .aqf-why-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 36px 28px 32px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.aqf-why-us-cards .aqf-why-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #C98F9D, #C98F9D);
    border-radius: 0 0 20px 20px;
    transition: width 0.4s ease;
}

.aqf-why-us-cards .aqf-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(128, 0, 0, 0.1);
    border-color: rgba(128, 0, 0, 0.2);
}

.aqf-why-us-cards .aqf-why-card:hover::after {
    width: 100%;
}

.aqf-why-card-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 42px;
    font-weight: 900;
    color: #C98F9D;
    line-height: 1;
    font-family: var(--aq-ff-heading) !important;
    pointer-events: none;
    user-select: none;
}

.aqf-why-card-icon {
    width: 64px;
    height: 64px;
    background: #C98F9D;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #C98F9D;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.aqf-why-card:hover .aqf-why-card-icon {
    background: #C98F9D;
    color: #fff;
    transform: rotate(-6deg) scale(1.1);
    border-radius: 50%;
}

.aqf-why-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 12px;
    font-family: var(--aq-ff-heading) !important;
}

.aqf-why-card-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

.aqf-why-card-line {
    display: none;
}

@media (max-width: 991px) {
    .aqf-why-us-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .aqf-why-us-subtitle-wrap {
        gap: 20px;
    }

    .aqf-why-us-divider {
        height: 50px;
    }

    .aqf-why-us-title {
        font-size: 36px;
    }

    .aqf-why-us-cards .aqf-why-card {
        text-align: center;
        margin-bottom: 10px;
    }

    .aqf-why-card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .aqf-why-card-number {
        right: 16px;
    }
}

@media (max-width: 575px) {
    .aqf-why-us-section {
        /* padding: 50px 0 60px; */
    }

    .aqf-why-us-title {
        font-size: 28px;
    }

    .aqf-why-us-divider {
        display: none;
    }
}

.aqf-pastel-features-section {
    /* background-color: #C98F9D; */
    position: relative;
    z-index: 10;
}

.aqf-pastel-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 35px 28px;
    border-radius: 20px;
    height: 100%;
    border: 1.5px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}

.aqf-pastel-card::before {
    content: "âœ¦";
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 16px;
    opacity: 0.15;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: rotate(0);
}

.aqf-pastel-card:hover::before {
    opacity: 0.8;
    transform: rotate(180deg) scale(1.2);
}

.aqf-pastel-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aqf-pastel-card:hover::after {
    width: 100%;
}

.aqf-pastel-card:hover {
    transform: translateY(-8px);
}

.aqf-pastel-champagne,
.aqf-pastel-peach,
.aqf-pastel-sage {
    background: #fff;
    border-color: #C98F9D
}

.aqf-pastel-champagne::before,
.aqf-pastel-peach::before,
.aqf-pastel-sage::before {
    color: #C98F9D;
}

.aqf-pastel-champagne::after,
.aqf-pastel-peach::after,
.aqf-pastel-sage::after {
    background: linear-gradient(90deg, #C98F9D, #C98F9D);
}

.aqf-pastel-champagne:hover,
.aqf-pastel-peach:hover,
.aqf-pastel-sage:hover {
    border-color: (0, 49, 8, 0.2);
    box-shadow: 0 20px 40px #C98F9D;
}

.aqf-pastel-champagne .aqf-pastel-icon,
.aqf-pastel-peach .aqf-pastel-icon,
.aqf-pastel-sage .aqf-pastel-icon {
    background-color: #C98F9D;
    color: #fff;
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.04);
}

.aqf-pastel-champagne:hover .aqf-pastel-icon,
.aqf-pastel-peach:hover .aqf-pastel-icon,
.aqf-pastel-sage:hover .aqf-pastel-icon {
    background-color: #C98F9D;
    color: #fff;
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.2);
}

.aqf-pastel-icon-wrapper {
    flex-shrink: 0;
}

.aqf-pastel-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aqf-pastel-card:hover .aqf-pastel-icon {
    transform: scale(1.08) rotate(-6deg);
}

.aqf-pastel-content {
    flex-grow: 1;
    padding-right: 10px;
}

.aqf-pastel-title {
    font-family: var(--aq-ff-heading), sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.aqf-pastel-card:hover .aqf-pastel-title {
    color: #000;
}

.aqf-pastel-desc {
    font-family: var(--aq-ff-body), sans-serif !important;
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .aqf-pastel-card {
        padding: 30px 22px;
        gap: 18px;
    }

    .aqf-pastel-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .aqf-pastel-title {
        font-size: 18px;
    }

    .aqf-pastel-desc {
        font-size: 14px;
    }
}

.aq-cta-whatsapp-btn {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    margin-left: 15px;
}

.aq-cta-whatsapp-btn:hover {
    background-color: #fff !important;
    border-color: #000 !important;
    color: #000 !important;
}

@media (max-width: 575px) {
    .aq-cta-whatsapp-btn {
        margin-left: 0 !important;
        margin-top: 15px;
    }
}

.aq-header-search-box {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.aq-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.aq-search-input-wrap input {
    width: 100%;
    height: 48px;
    padding: 10px 52px 10px 24px;
    border-radius: 30px;
    border: 1.5px solid rgba(104, 71, 66, 0.18);
    background-color: #fff;
    font-family: var(--aq-ff-body), sans-serif !important;
    font-size: 14.5px;
    color: #1a1a1a;
    outline: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aq-search-input-wrap input::placeholder {
    color: #777;
    opacity: 0.8;
}

.aq-search-input-wrap input:focus {
    border-color: #C98F9D;
    box-shadow: 0 4px 15px rgba(104, 71, 66, 0.08);
}

.aq-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #C98F9D;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aq-search-btn:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.aqf-hero-creative-section {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    z-index: 1;
}

.aqf-hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aqf-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aqf-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.aqf-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.18);
}

.aqf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.82) 0,
            rgba(104, 71, 66, 0.55) 100%);
    z-index: 2;
}

.aqf-hero-content-wrap {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 120px 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aqf-hero-slide.active .aqf-hero-content-wrap {
    opacity: 1;
}

.aqf-hero-tag {
    display: inline-block;
    font-family: var(--aq-ff-body), sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 9px 26px;
    border-radius: 50px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-25px);
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: blur(4px);
    transition-delay: 0.1s;
}

.aqf-hero-slide.active .aqf-hero-tag {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.aqf-hero-title {
    font-family: Poppins, sans-serif !important;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(35px);
    transition:
        transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: blur(8px);
    transition-delay: 0.3s;
}

.aqf-hero-slide.active .aqf-hero-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.aqf-hero-title span {
    font-weight: 400;
    background: linear-gradient(120deg, #fff 0, #C98F9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 5px;
}

.aqf-hero-desc {
    font-family: Roboto, sans-serif !important;
    font-size: 18.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 740px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(35px);
    transition:
        transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: blur(8px);
    transition-delay: 0.5s;
}

.aqf-hero-slide.active .aqf-hero-desc {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.aqf-hero-btn-group {
    opacity: 0;
    transform: translateY(35px);
    transition:
        transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: blur(8px);
    transition-delay: 0.7s;
}

.aqf-hero-slide.active .aqf-hero-btn-group {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.aqf-hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}

.aqf-hero-dot {
    width: 25px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.aqf-hero-dot::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #fff;
}

.aqf-hero-dot.active {
    background: rgba(255, 255, 255, 0.4);
    width: 45px;
}

.aqf-hero-dot.active::after {
    animation: dotProgress 6.5s linear forwards;
}

@keyframes dotProgress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .aqf-hero-creative-section {
        min-height: 700px;
    }

    .aqf-hero-title {
        font-size: 52px;
    }

    .aqf-hero-desc {
        font-size: 17.5px;
        max-width: 680px;
    }
}

@media (max-width: 991px) {
    .aqf-hero-creative-section {
        min-height: 650px;
    }

    .aqf-hero-title {
        font-size: 46px;
    }

    .aqf-hero-desc {
        font-size: 16.5px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .aqf-hero-creative-section {
        min-height: 600px;
    }

    .aqf-hero-title {
        font-size: 36px;
    }

    .aqf-hero-desc {
        font-size: 15px;
        line-height: 1.55;
    }

    .aqf-hero-tag {
        font-size: 11.5px;
        padding: 7px 20px;
        margin-bottom: 20px;
    }

    .aqf-hero-btn-group {
        flex-direction: column;
        gap: 12px !important;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .aqf-hero-btn-group .aq-btn-black {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.aqf-deals-banner-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 12px;
}

.aqf-deals-banner-slides {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .aqf-deals-banner-slides {
        height: 520px;
    }
}

@media only screen and (max-width: 767px) {
    .aqf-deals-banner-slides {
        height: 450px;
    }
}

.aqf-deals-banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition:
        opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.aqf-deals-banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.aqf-deals-banner-wrap .aqf-deals-banner-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.aqf-deals-banner-wrap .aqf-deals-banner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
}

.aqf-deals-banner-slide.active .aqf-deals-banner-thumb img {
    transition: transform 6s cubic-bezier(0.1, 0.1, 0.25, 1);
    transform: scale(1);
}

.aqf-deals-banner-wrap .aqf-deals-banner-thumb::after {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(20, 10, 8, 0.72) 0,
            rgba(104, 71, 66, 0.45) 100%);
    z-index: 1;
}

.aqf-deals-banner-wrap .aqf-deals-banner-content {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    padding: 45px 40px;
    z-index: 3;
}

.aqf-deals-banner-slide .aqf-deals-banner-content h4 {
    opacity: 0;
    transform: translateY(-20px);
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: blur(4px);
    transition-delay: 0.2s;
}

.aqf-deals-banner-slide.active .aqf-deals-banner-content h4 {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.aqf-deals-banner-slide .aqf-deals-banner-content .aqf-deals-discount-tag {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--aq--ff-satoshi-reg);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: blur(4px);
    transition-delay: 0.4s;
}

.aqf-deals-banner-slide.active .aqf-deals-banner-content .aqf-deals-discount-tag {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.aqf-deals-banner-wrap .aqf-deals-banner-btn {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
}

.aqf-deals-banner-slide .aqf-deals-banner-btn a {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: blur(4px);
    transition-delay: 0.6s;
}

.aqf-deals-banner-slide.active .aqf-deals-banner-btn a {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.aqf-deals-banner-dots {
    position: absolute;
    top: 50px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

@media only screen and (max-width: 767px) {
    .aqf-deals-banner-dots {
        top: 20px;
        right: 20px;
    }
}

.aqf-deals-banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.aqf-deals-banner-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.footer_whatspp {
    position: fixed;
    right: 30px;
    bottom: 40px;
    z-index: 9999;
    transition:
        bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_whatspp.scrolled {
    bottom: 120px;
}

.social-whatspp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0, #128c7e 100%);
    color: #fff !important;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

.social-whatspp::after,
.social-whatspp::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    z-index: -1;
    transition: all 0.3s ease;
}

.social-whatspp::before {
    animation: wa-pulse 2s infinite;
}

.social-whatspp::after {
    animation: wa-pulse 2s infinite 0.6s;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.social-whatspp:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
    background: linear-gradient(135deg, #2ae06d 0, #149b8b 100%);
}

.social-whatspp i {
    transition: transform 0.3s ease;
}

.social-whatspp:hover i {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer_whatspp {
        right: 20px;
        bottom: 30px;
    }

    .footer_whatspp.scrolled {
        bottom: 95px;
    }

    .social-whatspp {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

.aq-bulk-orders-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #C98F9D;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(104, 71, 66, 0.2);
    text-decoration: none;
    margin-right: 15px;
    border: 1px solid #C98F9D;
}

.aq-bulk-orders-btn:hover {
    background-color: #000;
    border-color: #000;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.aq-bulk-orders-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.aq-bulk-orders-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}


.aq-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #C98F9D;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(104, 71, 66, 0.2);
    text-decoration: none;
    margin-right: 15px;
    border: 1px solid #C98F9D;
}

.aq-loadmore-btn:hover {
    background-color: #000;
    border-color: #000;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.aq-loadmore-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.aq-loadmore-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

#bulkOrderModal .form-control:focus,
#bulkOrderModal .form-select:focus {
    border-color: #C98F9D !important;
    box-shadow: 0 0 0 0.25rem rgba(104, 71, 66, 0.15) !important;
    outline: 0;
}

#bulkOrderModal.modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#bulkOrderModal .modal-dialog {
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    max-width: 900px;
}

/* Shape Color Remap to Brand Green #C98F9D */
.aq-star-shape svg,
.aq-star-shape svg path {
    fill: #C98F9D !important;
}

.aq-luxury-shape svg,
.aq-luxury-shape svg path {
    fill: #C98F9D !important;
}

/* ==========================================================================
   PREMIUM BESPOKE BULK ENQUIRY DRAWER - CREATIVE LUXURY DESIGN SYSTEM
   Namespaced parent class: .aq-drawer-parent-wrap
   ========================================================================== */

/* Main drawer container & state */
.aq-drawer-parent-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1050;
    /* Above bootstrap modals */
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.4s ease;
}

.aq-drawer-parent-wrap.active {
    visibility: visible;
    pointer-events: auto;
}

/* Glassmorphism Backdrop Overlay */
.aq-drawer-parent-wrap .aq-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-drawer-parent-wrap.active .aq-drawer-overlay {
    opacity: 1;
}

/* Sliding Drawer Panel */
.aq-drawer-parent-wrap .aq-drawer-card-body {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100%;
    height: 100%;
    background: #C98F9D;
    box-shadow: -12px 0 45px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}

.aq-drawer-parent-wrap.active .aq-drawer-card-body {
    transform: translateX(0);
}

/* Close Button styling */
.aq-drawer-parent-wrap .aq-drawer-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aq-drawer-parent-wrap .aq-drawer-close-btn:hover {
    background: #ffffff;
    color: #C98F9D;
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Premium Header Area */
.aq-drawer-parent-wrap .aq-drawer-header {
    background: linear-gradient(135deg, #C98F9D 0%, #001c05 100%);
    padding: 40px 35px 35px 35px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Header subtle glowing ambient shape */
.aq-drawer-parent-wrap .aq-drawer-header::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.aq-drawer-parent-wrap .aq-drawer-header-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: iconPulse 3s infinite alternate;
}

@keyframes iconPulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    100% {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    }
}

.aq-drawer-parent-wrap .aq-drawer-title {
    font-family: Poppins, sans-serif !important;
    font-weight: 700 !important;
    font-size: 23px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    color: #ffffff !important;
    letter-spacing: -0.2px;
}

.aq-drawer-parent-wrap .aq-drawer-subtitle {
    font-family: Roboto, sans-serif !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0 !important;
}

/* Scrollable Form Body */
.aq-drawer-parent-wrap .aq-drawer-form-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 35px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Styled Scrollbars */
.aq-drawer-parent-wrap .aq-drawer-form-scrollable::-webkit-scrollbar {
    width: 6px;
}

.aq-drawer-parent-wrap .aq-drawer-form-scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.aq-drawer-parent-wrap .aq-drawer-form-scrollable::-webkit-scrollbar-thumb {
    background: rgba(0, 49, 8, 0.15);
    border-radius: 3px;
}

.aq-drawer-parent-wrap .aq-drawer-form-scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 49, 8, 0.3);
}

/* Form Layout Elements */
.aq-drawer-parent-wrap .aq-drawer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.aq-drawer-parent-wrap .aq-drawer-form.hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.aq-drawer-parent-wrap .aq-drawer-form-row {
    width: 100%;
}

.aq-drawer-parent-wrap .aq-drawer-form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.aq-drawer-parent-wrap .aq-drawer-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aq-drawer-parent-wrap .aq-drawer-label {
    font-family: Poppins, sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #4c524e !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 0 !important;
}

/* Premium Inputs and Selects styling */
.aq-drawer-parent-wrap .aq-drawer-input-wrapper,
.aq-drawer-parent-wrap .aq-drawer-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid rgba(0, 49, 8, 0.12);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.aq-drawer-parent-wrap .aq-drawer-input-wrapper:hover,
.aq-drawer-parent-wrap .aq-drawer-select-wrapper:hover {
    border-color: rgba(0, 49, 8, 0.25);
    box-shadow: 0 4px 12px rgba(0, 49, 8, 0.03);
}

.aq-drawer-parent-wrap .aq-drawer-input-wrapper.focus,
.aq-drawer-parent-wrap .aq-drawer-select-wrapper.focus {
    border-color: #C98F9D;
    box-shadow: 0 0 0 4px rgba(128, 0, 0, .08);
}

/* Prefix Icons */
.aq-drawer-parent-wrap .aq-drawer-input-wrapper i,
.aq-drawer-parent-wrap .aq-drawer-select-wrapper i {
    position: absolute;
    left: 16px;
    color: #8da094;
    font-size: 15px;
    transition: color 0.3s ease;
    pointer-events: none;
}

.aq-drawer-parent-wrap .aq-drawer-input-wrapper.focus i,
.aq-drawer-parent-wrap .aq-drawer-select-wrapper.focus i {
    color: #d4af37;
}

/* Inputs & selects controls */
.aq-drawer-parent-wrap .aq-drawer-input,
.aq-drawer-parent-wrap .aq-drawer-select,
.aq-drawer-parent-wrap .aq-drawer-textarea {
    width: 100%;
    padding: 13px 16px 13px 44px;
    font-family: Roboto, sans-serif !important;
    font-size: 14.5px !important;
    color: #1a221d;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.aq-drawer-parent-wrap .aq-drawer-textarea {
    height: 90px;
    resize: none;
    padding-top: 13px;
}

.aq-drawer-parent-wrap .aq-drawer-input-wrapper.textarea-wrapper i {
    top: 16px;
}

/* Custom Dropdown Arrow */
.aq-drawer-parent-wrap .aq-drawer-select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    position: absolute;
    right: 18px;
    color: #8da094;
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.aq-drawer-parent-wrap .aq-drawer-select-wrapper.focus::after {
    transform: rotate(180deg);
    color: #C98F9D;
}

/* Submit Button Custom Styling */
.aq-drawer-parent-wrap .aq-drawer-form-footer {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aq-drawer-parent-wrap .aq-drawer-submit-btn {
    width: 100%;
    padding: 16px 28px;
    background: #C98F9D;
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    font-family: Poppins, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 49, 8, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.aq-drawer-parent-wrap .aq-drawer-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.aq-drawer-parent-wrap .aq-drawer-submit-btn:hover::before {
    left: 100%;
}

.aq-drawer-parent-wrap .aq-drawer-submit-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.aq-drawer-parent-wrap .aq-drawer-submit-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.aq-drawer-parent-wrap .aq-drawer-submit-btn:hover i {
    transform: translate(3px, -2px);
}

/* Security Note */
.aq-drawer-parent-wrap .aq-drawer-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #72847a;
    font-size: 11.5px;
    margin-top: 5px;
}

.aq-drawer-parent-wrap .aq-drawer-secure-note i {
    font-size: 13px;
    color: #d4af37;
}

/* Success State Screen */
.aq-drawer-parent-wrap .aq-drawer-success-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C98F9D;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.aq-drawer-parent-wrap .aq-drawer-success-state.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.aq-drawer-parent-wrap .aq-drawer-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 49, 8, 0.06);
    border: 2px solid #C98F9D;
    color: #C98F9D;
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: successScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes successScale {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.aq-drawer-parent-wrap .aq-drawer-success-title {
    font-family: Poppins, sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    color: #C98F9D !important;
    margin-bottom: 12px !important;
}

.aq-drawer-parent-wrap .aq-drawer-success-desc {
    font-family: Roboto, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #4c524e !important;
    max-width: 340px;
    margin-bottom: 30px !important;
}

.aq-drawer-parent-wrap .aq-drawer-success-close-btn {
    padding: 12px 30px;
    background: #000000;
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    font-family: Poppins, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.aq-drawer-parent-wrap .aq-drawer-success-close-btn:hover {
    background: #C98F9D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 49, 8, 0.25);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .aq-drawer-parent-wrap .aq-drawer-card-body {
        width: 100%;
        border-radius: 0;
    }

    .aq-drawer-parent-wrap .aq-drawer-header {
        padding: 35px 25px 25px 25px;
    }

    .aq-drawer-parent-wrap .aq-drawer-form-scrollable {
        padding: 25px;
    }

    .aq-drawer-parent-wrap .aq-drawer-form-row.two-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aq-drawer-parent-wrap .aq-drawer-close-btn {
        top: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   Premium Gifting Occasions & Creative Small Cards Grid System
   ========================================================================== */

/* Main 4x2 Grid Container */
.aq-occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    padding: 10px 0;
}

@media (max-width: 1200px) {
    .aq-occasion-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .aq-occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .aq-occasion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Creative Occasion Card */
.aq-occasion-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #000;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.aq-occasion-card-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.aq-occasion-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Luxury Gradient Overlay */
.aq-occasion-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top,
            rgba(0, 49, 8, 0.95) 0%,
            rgba(0, 49, 8, 0.4) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    transition: all 0.5s ease;
}

/* Luxury Inner Content */
.aq-occasion-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-occasion-card-subtitle {
    font-family: Outfit, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
    transform: translateY(10px);
    opacity: 0.85;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-occasion-card-title {
    font-family: Playfair Display, Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-occasion-card-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-occasion-card-btn i {
    transition: transform 0.3s ease;
}

/* Hover States for Occasion Cards */
.aq-occasion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 49, 8, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
}

.aq-occasion-card:hover .aq-occasion-card-img {
    transform: scale(1.15);
}

.aq-occasion-card:hover .aq-occasion-card-overlay {
    background: linear-gradient(to top,
            rgba(0, 49, 8, 0.98) 0%,
            rgba(0, 49, 8, 0.6) 60%,
            rgba(0, 49, 8, 0.1) 100%);
}

.aq-occasion-card:hover .aq-occasion-card-subtitle {
    transform: translateY(0);
    opacity: 1;
}

.aq-occasion-card:hover .aq-occasion-card-btn {
    transform: translateY(0);
    opacity: 1;
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
}

.aq-occasion-card:hover .aq-occasion-card-btn i {
    transform: translateX(2px);
}


/* ==========================================
   Small Creative Category Cards (2 Rows of 3)
   ========================================== */

.aq-creative-divider {
    text-align: center;
    margin: 45px 0 35px;
    position: relative;
}

.aq-creative-divider-text {
    font-family: Outfit, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #C98F9D;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: #ffffff;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.aq-creative-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.4) 50%, rgba(212, 175, 55, 0) 100%);
    z-index: 1;
}

.aq-bespoke-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .aq-bespoke-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .aq-bespoke-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .aq-bespoke-grid {
        grid-template-columns: 1fr;
    }
}

/* Creative Card Without Obscuring Overlay */
.aq-bespoke-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 49, 8, 0.12);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.aq-bespoke-img-wrap {
    width: 100%;
    height: 130px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(128, 0, 0, .08);
}

.aq-bespoke-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Content block below the image, fully clean */
.aq-bespoke-content {
    padding: 18px 20px;
    background: #ffffff;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.aq-bespoke-title {
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.aq-bespoke-subtitle {
    font-family: Roboto, sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--aq-color-green, #C98F9D);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

/* Creative Floating Icon Badge */
.aq-bespoke-icon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(128, 0, 0, .2);
    color: var(--aq-color-green, #C98F9D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Effects */
.aq-bespoke-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 49, 8, 0.12);
    border-color: var(--aq-color-green, #C98F9D);
}

.aq-bespoke-card:hover .aq-bespoke-img {
    transform: scale(1.08);
}

.aq-bespoke-card:hover .aq-bespoke-content {
    background: #faf6eb;
    /* Rich Champagne background on hover */
}

.aq-bespoke-card:hover .aq-bespoke-title {
    color: var(--aq-color-green, #C98F9D);
}

.aq-bespoke-card:hover .aq-bespoke-icon-badge {
    background: var(--aq-color-green, #C98F9D);
    color: #ffffff;
    border-color: var(--aq-color-green, #C98F9D);
    transform: scale(1.1) rotate(360deg);
}

/* ==========================================================================
   Our Brands Tabbed Section Layout Scoped Styles
   ========================================================================== */

.aq-brands-section-wrap {
    background: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Luxury atmospheric background blur circles */
.aq-brands-section-wrap::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 49, 8, 0.035) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.aq-brands-section-wrap::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 49, 8, 0.035) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.aq-brands-section-wrap .container {
    position: relative;
    z-index: 2;
}

/* Unified Main Card Wrapper */
.aq-brands-section-wrap .aq-brands-main-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 253, 251, 0.95) 100%);
    border-radius: 28px;
    border: 1px solid rgba(0, 49, 8, 0.05);
    box-shadow: 0 20px 55px #C98F9D, 0 4px 15px rgba(0, 0, 0, 0.01);
    padding: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .aq-brands-section-wrap .aq-brands-main-card {
        padding: 24px 16px;
        border-radius: 20px;
    }
}

/* Tabs list container */
.aq-brands-section-wrap .aq-brands-tab-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #C98F9D;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 440px;
    overflow-y: auto;
    box-shadow: 0 15px 35px rgba(0, 49, 8, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.aq-brands-section-wrap .aq-brands-tab-nav::-webkit-scrollbar {
    width: 4px;
}

.aq-brands-section-wrap .aq-brands-tab-nav::-webkit-scrollbar-track {
    background: transparent;
}

.aq-brands-section-wrap .aq-brands-tab-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.aq-brands-section-wrap .aq-brands-tab-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.45);
}

/* Tab Button */
.aq-brands-section-wrap .aq-brands-tab-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    text-align: left;
    font-family: Outfit, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-brands-section-wrap .aq-brands-tab-btn i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 20px;
    text-align: center;
}

/* Vertical indicator bar */
.aq-brands-section-wrap .aq-brands-tab-bar {
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background: linear-gradient(to bottom, #C98F9D, #1c5c29);
    border-radius: 0 8px 8px 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover state */
.aq-brands-section-wrap .aq-brands-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
}

.aq-brands-section-wrap .aq-brands-tab-btn:hover i {
    color: #ffffff;
    transform: rotate(12deg) scale(1.1);
}

/* Active state */
.aq-brands-section-wrap .aq-brands-tab-btn.active {
    color: var(--aq-color-green, #C98F9D);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(128, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, 0.01);
    transform: scale(1.02) translateX(6px);
}

.aq-brands-section-wrap .aq-brands-tab-btn.active i {
    color: var(--aq-color-green, #C98F9D);
}

.aq-brands-section-wrap .aq-brands-tab-btn.active .aq-brands-tab-bar {
    transform: scaleY(1);
}

/* Right Tab Content Panes */
.aq-brands-section-wrap .aq-brands-tab-pane {
    display: none;
    animation: aqBrandFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.aq-brands-section-wrap .aq-brands-tab-pane.active {
    display: block;
}

/* Logo Cards Grid */
.aq-brands-section-wrap .aq-brands-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-height: 440px;
    overflow-y: auto;
    scrollbar-width: thin;
}

@media (max-width: 1200px) {
    .aq-brands-section-wrap .aq-brands-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .aq-brands-section-wrap .aq-brands-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .aq-brands-section-wrap .aq-brands-logos-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo Card */
.aq-brands-section-wrap .aq-brand-logo-card {
    /* background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%); */
    border-radius: 16px;
    height: 90px;
    border: 1px solid rgb(0 0 0 / 23%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
    /* box-shadow: rgb(0 49 8 / 22%) 0px 6px 16px; */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-brands-section-wrap .aq-brand-logo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.aq-brands-section-wrap .aq-brand-logo-img {
    max-width: 80%;
    max-height: 52px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-brands-section-wrap .aq-brand-logo-placeholder {
    font-family: Outfit, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--aq-gray-4, #a2a3a3);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* Interactive Border Glow Accent Line */
.aq-brands-section-wrap .aq-brand-logo-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #C98F9D, #1c5c29);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    z-index: 3;
}

/* Hover Card Effect */
.aq-brands-section-wrap .aq-brand-logo-card:hover {
    /* transform: translateY(-6px); */
    border-color: rgba(0, 49, 8, 0.15);
    box-shadow: 0 16px 36px rgba(128, 0, 0, .08);
}

.aq-brands-section-wrap .aq-brand-logo-card:hover::after {
    width: 100%;
}

.aq-brands-section-wrap .aq-brand-logo-card:hover .aq-brand-logo-img {
    /* transform: scale(1.06); */
}

.aq-brands-section-wrap .aq-brand-logo-card:hover .aq-brand-logo-placeholder {
    color: var(--aq-color-green, #C98F9D);
    letter-spacing: 2.5px;
}

@keyframes aqBrandFadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Corporate Gifting Category Listing Page Styles
   ========================================================================== */

/* Scrolled solid dark green header */
.header-sticky.scrolled-green {
    background-color: #C98F9D !important;
    box-shadow: 0 10px 30px rgba(0, 49, 8, 0.15) !important;
}

/* Category Hero Banner */
.aq-catpage-hero {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C98F9D !important;
    /* background: linear-gradient(135deg, rgba(0, 49, 8, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%),
        url("../img/corporate/hero_gift_box_1778667986732.webp") center/cover no-repeat; */
    overflow: hidden;
    /* border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px; */
    padding-top: 0px !important;
}

@media (max-width: 768px) {
    .aq-catpage-hero {
        height: 200px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding: 10px;
    }
}

/* Ambient glow in hero */
.aq-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 49, 8, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

/* Floating Shapes in Hero */
.aq-floating-gift-box {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 24px;
    pointer-events: none;
}

.aq-floating-shape-1 {
    top: 20%;
    left: 10%;
    animation: aqFloat 6s ease-in-out infinite;
}

.aq-floating-shape-2 {
    bottom: 25%;
    right: 12%;
    animation: aqFloat 8s ease-in-out infinite 1s;
}

@keyframes aqFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.aq-catpage-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.aq-catpage-title {
    font-family: Outfit, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .aq-catpage-title {
        font-size: 32px;
    }
}

.aq-catpage-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.aq-catpage-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.aq-catpage-breadcrumbs a:hover {
    color: #ffffff;
}

.aq-catpage-breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
}

/* Category Grid Section */
.aq-category-grid-section {
    padding: 0px 0 60px;

}

.aq-category-grid-section-main {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 49, 8, 0.06);
    box-shadow: 0 4px 20px rgba(0, 49, 8, 0.02);
    padding: 20px 0px;
    margin-top: 20px;

}

@media (max-width: 768px) {
    .aq-category-grid-section {
        padding: 40px 0;
    }
}

.aq-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/*@media (max-width: 1200px) {*/
/*    .aq-category-grid {*/
/*        grid-template-columns: repeat(3, 1fr);*/
/*    }*/
/*}*/

@media (max-width: 768px) {
    .aq-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Category Grid Card */
.aq-category-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 49, 8, 0.05);
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 49, 8, 0.03);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aq-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 49, 8, 0) 40%, rgba(0, 49, 8, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aq-category-card-thumb {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #C98F9D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 49, 8, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-category-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-category-card-title {
    font-family: Outfit, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
    line-height: 1.3;
    transition: color 0.3s;
}

.aq-category-card-count {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #666666;
    background: rgba(0, 49, 8, 0.05);
    padding: 2px 10px;
    border-radius: 12px;
    transition: all 0.3s;
}

/* Category Card Interactive Hover states */
.aq-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(128, 0, 0, .08);
    border-color: rgba(0, 49, 8, 0.15);
}

.aq-category-card:hover::before {
    opacity: 1;
}

.aq-category-card:hover .aq-category-card-thumb {
    background: #C98F9D;
    box-shadow: 0 8px 20px rgba(0, 49, 8, 0.25);
    transform: scale(1.05);
}

.aq-category-card:hover .aq-category-card-thumb img {
    transform: scale(1.15);
    /* filter: brightness(0) invert(1); */
}

.aq-category-card:hover .aq-category-card-title {
    color: #C98F9D;
}

.aq-category-card:hover .aq-category-card-count {
    background: #C98F9D;
    color: #ffffff;
}

/* Active Highlight state for filtering */
.aq-category-card.active {
    border-color: #C98F9D;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 49, 8, 0.12), 0 0 0 3px rgba(0, 49, 8, 0.05);
}

.aq-category-card.active .aq-category-card-thumb {
    background: #C98F9D;
    box-shadow: 0 8px 20px rgba(0, 49, 8, 0.25);
}

.aq-category-card.active .aq-category-card-thumb img {
    /* filter: brightness(0) invert(1); */
}

.aq-category-card.active .aq-category-card-title {
    color: #C98F9D;
}

.aq-category-card.active .aq-category-card-count {
    background: #C98F9D;
    color: #ffffff;
}

/* Page Section Layout with Sidebar and Grid */
.aq-catpage-main-layout {
    padding: 40px 0 80px;
    background: #faf9f6;
}

@media (max-width: 768px) {
    .aq-catpage-main-layout {
        padding: 20px 0 50px;
    }
}

/* Sticky Filter Sidebar */
.aq-filter-sidebar {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 49, 8, 0.06);
    box-shadow: 0 4px 20px rgba(0, 49, 8, 0.02);
    padding: 24px;
    /* position: sticky; */
    top: 130px;
    z-index: 10;
}

/* Collapsible Accordion Filter Widget */
.aq-filter-widget {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.aq-filter-widget:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.aq-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #C98F9D;
    border: none;
    background: transparent;
    padding: 0;
}

.aq-filter-header i {
    font-size: 13px;
    color: #666;
    transition: transform 0.3s;
}

.aq-filter-header.collapsed i {
    transform: rotate(-90deg);
}

.aq-filter-content {
    margin-top: 15px;
    transition: max-height 0.4s ease;
    overflow: hidden;
}

/* Checkboxes & Occasions Filters */
.aq-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aq-filter-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.aq-filter-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid rgba(0, 49, 8, 0.3);
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    background: #ffffff;
    flex-shrink: 0;
}

.aq-filter-checkbox i {
    font-size: 10px;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.25s;
}

.aq-filter-label {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #444444;
    line-height: 1.2;
    transition: color 0.2s;
}

.aq-filter-item:hover .aq-filter-label {
    color: #C98F9D;
}

.aq-filter-item.active .aq-filter-checkbox {
    background: #C98F9D;
    border-color: #C98F9D;
}

.aq-filter-item.active .aq-filter-checkbox i {
    opacity: 1;
    transform: scale(1);
}

.aq-filter-item.active .aq-filter-label {
    color: #C98F9D;
    font-weight: 600;
}

/* Premium Range Price Slider widget */
.aq-price-slider-wrap {
    padding: 10px 5px 0;
}

.aq-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.aq-price-box {
    flex: 1;
    background: rgba(0, 49, 8, 0.03);
    border: 1px solid rgba(128, 0, 0, .08);
    border-radius: 8px;
    padding: 8px 10px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    color: #333333;
}

.aq-price-range-slider {
    width: 100%;
    accent-color: #C98F9D;
    height: 4px;
    background: rgba(0, 49, 8, 0.1);
    border-radius: 2px;
    cursor: pointer;
}

/* Search bar inside filter */
.aq-sidebar-search {
    position: relative;
    margin-bottom: 15px;
}

.aq-sidebar-search input {
    width: 100%;
    padding: 10px 35px 10px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 49, 8, 0.1);
    font-family: Inter, sans-serif;
    font-size: 13px;
    background: rgba(0, 49, 8, 0.02);
    transition: all 0.3s;
}

.aq-sidebar-search input:focus {
    border-color: #C98F9D;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 49, 8, 0.06);
    outline: none;
}

.aq-sidebar-search i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    font-size: 13px;
}

/* Product Listing Layout Header options */
.aq-layout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 49, 8, 0.05);
    padding: 16px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 49, 8, 0.01);
}

@media (max-width: 576px) {
    .aq-layout-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px 20px;
    }
}

.aq-layout-header-title {
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #C98F9D;
}

.aq-layout-header-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aq-sort-select {
    border: 1px solid rgba(0, 49, 8, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    color: #444444;
    background-color: #ffffff;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
}

.aq-sort-select:focus {
    border-color: #C98F9D;
}

/* Product cards grid list */
.aq-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1400px) {
    .aq-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .aq-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .aq-product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE â€” 2-column product listing grid
   Scoped to #aq-catalog-section only (this listing page) â€”
   no other page's .aq-product-grid usage is affected.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 576px) {

    #aq-catalog-section .aq-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    /* Trim card content so it fits cleanly at 2-per-row â€”
       card is already flex/equal-height, so button stays
       pinned to bottom automatically once content shrinks. */
    #aq-catalog-section .aq-product-card-info {
        padding: 14px;
    }

    #aq-catalog-section .aq-product-card-info>p {
        display: none !important;
    }

    #aq-catalog-section .aq-product-card-sizes {
        display: none !important;
    }

    #aq-catalog-section .aq-product-card-title {
        font-size: 13.5px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.7em;
    }

    #aq-catalog-section .aq-product-card-price-group {
        flex-wrap: wrap;
        row-gap: 2px;
        margin-bottom: 8px;
    }

    #aq-catalog-section .aq-product-card-price {
        font-size: 15px;
    }

    #aq-catalog-section .aq-product-card-old-price {
        font-size: 12px;
    }

    #aq-catalog-section .aq-product-card-discount {
        font-size: 11px;
        flex-basis: 100%;
    }

    #aq-catalog-section .aq-product-card-cta {
        font-size: 11px;
        padding: 9px 6px;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }
}

/* Luxury Product Card Element */
.aq-product-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 49, 8, 0.05);
    box-shadow: 0 4px 20px rgba(0, 49, 8, 0.02);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover Zoom & glow */
.aq-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(128, 0, 0, .08);
    border-color: rgba(0, 49, 8, 0.12);
}

.aq-product-card-top {
    position: relative;
    background: #fbfbf9;
    /* padding-top: 100%; */
    /* square ratio */
    overflow: hidden;
}

.aq-product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-product-card:hover .aq-product-card-img {
    transform: scale(1.08);
}

/* Badges overlay */
.aq-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 2;
}

.aq-product-badge {
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.aq-product-badge.bestseller {
    background: #C98F9D;
}

.aq-product-badge.new {
    background: #b87333;
    /* luxury bronze */
}

/* Brand logo badge overlay */
.aq-product-brand-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 49, 8, 0.05);
    box-shadow: 0 4px 12px rgba(0, 49, 8, 0.06);
    z-index: 2;
    overflow: hidden;
}

.aq-product-brand-badge img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* Action Quick view overlay */
.aq-product-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-product-card:hover .aq-product-actions {
    opacity: 1;
    transform: translateY(0);
}

.aq-product-actions2 {
    position: absolute;
    bottom: 12px;
    right: 58px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-product-card:hover .aq-product-actions2 {
    opacity: 1;
    transform: translateY(0);
}

.aq-product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #C98F9D;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 49, 8, 0.15);
    transition: all 0.3s;
    cursor: pointer;
}

.aq-product-action-btn:hover {
    background: #C98F9D;
    color: #ffffff;
    transform: scale(1.1);
}

/* Product Info */
.aq-product-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.aq-product-card-brand-name {
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b87333;
    /* luxury bronze */
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.aq-product-card-title {
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s;
}

.aq-product-card-title a {
    color: inherit;
    text-decoration: none;
}

.aq-product-card:hover .aq-product-card-title {
    color: #C98F9D;
}

.aq-product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.aq-product-card-price-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.aq-product-card-price {
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #003108;
}

.aq-product-card-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.aq-product-card-discount {
    color: #C98F9D;
    font-size: 13px;
    font-weight: 600;
}

.aq-product-card-sizes {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.aq-size-badge {
    border: 1px solid #ddd;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 4px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    font-family: Inter, sans-serif;
}

.aq-size-badge:hover,
.aq-size-badge.active {
    border-color: #C98F9D;
    background: rgba(201, 143, 157, 0.1);
    color: #C98F9D;
    font-weight: 600;
}

.aq-product-card-cta {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: #C98F9D;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.aq-product-card-cta:hover {
    background: #C98F9D;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 49, 8, 0.2);
}

/* Occasions Showcase Section */
.aq-occasions-showcase {
    padding: 80px 0;
    background: #ffffff;
}

/* Product Card Media Hover Effect */
.aq-product-media-wrapper {
    position: relative;
    width: 100%;
    padding-top: 130%;
    /* 4:5 ratio for apparel */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f8f8f8;
}

.aq-product-media-wrapper img,
.aq-product-media-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-product-media-wrapper .secondary-img,
.aq-product-media-wrapper .tertiary-img,
.aq-product-media-wrapper .aq-product-card-video {
    opacity: 0;
    pointer-events: none;
}

/* Base styles for the product card top */
.aq-product-card-top {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* The hover script will handle the opacity toggling */
.aq-product-media-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.aq-product-card:hover .aq-product-media-indicator {
    opacity: 1;
}

.aq-media-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.aq-media-dot.active {
    background: #ffffff;
    width: 20px;
    border-radius: 4px;
}

/* grid-template-columns: repeat(5, 1fr);
gap: 20px;
} */

@media (max-width: 1200px) {
    .aq-occasions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .aq-occasions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .aq-occasions-grid {
        grid-template-columns: 1fr;
    }
}

.aq-occasion-card {
    position: relative;
    border-radius: 24px;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 49, 8, 0.03);
    border: 1px solid rgba(0, 49, 8, 0.05);
}

.aq-occasion-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-occasion-card:hover .aq-occasion-card-bg {
    transform: scale(1.1);
}

.aq-occasion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 49, 8, 0.9) 0%, rgba(0, 49, 8, 0.4) 60%, rgba(0, 49, 8, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #ffffff;
    z-index: 2;
}

.aq-occasion-icon {
    font-size: 22px;
    margin-bottom: 8px;
    opacity: 0.9;
    transform: translateY(5px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aq-occasion-card:hover .aq-occasion-icon {
    transform: translateY(0) scale(1.1);
}

.aq-occasion-name {
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.aq-occasion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 49, 8, 0.15);
    border-color: rgba(0, 49, 8, 0.15);
}

/* Brand Showcase Infinite Horizontal CSS Marquee Slider */
.aq-marquee-section {
    padding: 60px 0;
    background: #C98F9D;
    overflow: hidden;
}

.aq-marquee-wrap {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.aq-marquee-track {
    display: flex;
    gap: 40px;
    animation: aqMarqueeScroll 25s linear infinite;
    flex-shrink: 0;
}

.aq-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 49, 8, 0.05);
    width: 160px;
    height: 75px;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(0, 49, 8, 0.02);
    transition: all 0.3s ease;
}

.aq-marquee-item img {
    max-width: 85%;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.65;
    transition: all 0.3s ease;
}

.aq-marquee-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 49, 8, 0.12);
    box-shadow: 0 8px 24px rgba(128, 0, 0, .08);
}

.aq-marquee-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes aqMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Sticky bottom trigger sheet */
.aq-mobile-filter-trigger-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
    display: none;
    z-index: 999;
}

@media (max-width: 991px) {
    .aq-mobile-filter-trigger-bar {
        display: block;
    }
}

.aq-mobile-filter-btn {
    width: 100%;
    background: #C98F9D;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-family: Outfit, sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 49, 8, 0.2);
}

/* Mobile Offcanvas filter slide-in */
@media (max-width: 991px) {
    .aq-filter-sidebar {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 320px !important;
        height: 100vh !important;
        overflow-y: auto !important;
        border-radius: 0 !important;
        box-shadow: 10px 0 35px rgba(0, 0, 0, 0.15) !important;
        z-index: 999999999 !important;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .aq-filter-sidebar.active {
        left: 0 !important;
    }
}

.aq-filter-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: #C98F9D;
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
}

@media (max-width: 991px) {
    .aq-filter-close-btn {
        display: block;
    }
}

/* 
 * Styles imported from categories.html inner pages 
 */

/* Header Bulk Orders Button Styles */
.aq-bulk-orders-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--aq-color-#C98F9D, #C98F9D);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--aq-ff-heading), sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(104, 71, 66, 0.2);
    text-decoration: none;
    margin-right: 15px;
    border: 1px solid var(--aq-color-#C98F9D, #C98F9D);
}

.aq-bulk-orders-btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.aq-bulk-orders-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.aq-bulk-orders-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Bulk Order Form Focus Styling */
#bulkOrderModal .form-control:focus,
#bulkOrderModal .form-select:focus {
    border-color: var(--aq-color-#C98F9D, #C98F9D) !important;
    box-shadow: 0 0 0 0.25rem rgba(104, 71, 66, 0.15) !important;
    outline: 0;
}

/* Floating WhatsApp Button Premium Styles */
.footer_whatspp {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 9999;
    transition:
        bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_whatspp.scrolled {
    bottom: 120px;
}

.social-whatspp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff !important;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

/* Glowing Pulse Wave Effect for Premium Feel */
.social-whatspp::before,
.social-whatspp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    z-index: -1;
    transition: all 0.3s ease;
}

.social-whatspp::before {
    animation: wa-pulse 2s infinite;
}

.social-whatspp::after {
    animation: wa-pulse 2s infinite 0.6s;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.social-whatspp:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
    background: linear-gradient(135deg, #2ae06d 0%, #149b8b 100%);
}

.social-whatspp i {
    transition: transform 0.3s ease;
}

.social-whatspp:hover i {
    transform: scale(1.05);
}

/* Mobile adjustment for WhatsApp button position */
@media (max-width: 768px) {
    .footer_whatspp {
        right: 20px;
        bottom: 30px;
    }

    .footer_whatspp.scrolled {
        bottom: 95px;
    }

    .social-whatspp {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
    background: #9e622b;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;

    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 15px 0;
    text-align: left;
    z-index: 99;
}

li.has-dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    top: 110%;
}

.submenu li a {
    display: block;
    padding: 8px 25px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

.submenu li a:hover {
    color: #C98F9D;
    padding-left: 30px;
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .enquiry-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
}


.readmore-btn {
    display: flex;
    justify-content: center;
    margin: 30px 0px !important;
}



.aq-brands-main-card p {
    display: flex;
    justify-content: center;
    color: #C98F9D;
    font-size: 23px;
    font-weight: 800;
}


/* =========================
   Gifting Occasions Section
========================= */

.gifting_occasions {
    width: 100%;
    /* padding: 0px 0 40px; */
    /* background: #f5f5f5; */
    /* font-family: Arial, sans-serif; */
}

.gifting_occasions * {
    /* margin: 0;
    padding: 0;
    box-sizing: border-box; */
}

.gifting_occasions img {
    width: 100%;
    display: block;
}

/* Wrapper */
.gifting_occasions .gifting_wrapper {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 25px;
    align-items: stretch;
}

/* =========================
   Left Big Card
========================= */

.gifting_left_section {
    height: 80%;
}

.gifting_left_button {
    height: 20%;
}

.gifting_left_button .aqf-pastel-card.aqf-pastel-peach {
    margin-top: 10px;
    border-radius: 0px;
}

.gifting_occasions .gifting_left_card {
    position: relative;
    border-radius: 20px;
    height: 100%;
    /* overflow: hidden; */
    /* min-height: 420px; */
    /* height: 420px; */
}

.gifting_occasions .gifting_left_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gifting_occasions .gifting_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gifting_occasions .gifting_overlay h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 700;
    max-width: 500px;
}

.gifting_occasions .gifting_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.gifting_occasions .gifting_btn:hover {
    background: #222;
}

/* =========================
   Right Side Cards
========================= */

.gifting_occasions .gifting_right_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.gifting_occasions .gifting_product_card {
    background: #fff;
    /* border-radius: 18px; */
    overflow: hidden;
    transition: 0.3s;
}

.gifting_occasions .gifting_product_card:hover {
    transform: translateY(-5px);
}

.gifting_occasions .gifting_product_img {
    position: relative;
    overflow: hidden;
}

.gifting_occasions .gifting_product_img img {
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.gifting_occasions .gifting_product_card:hover img {
    transform: scale(1.05);
}

/* Discount Badge */

.gifting_occasions .gifting_product_img span {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e53935;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
}

/* Content */

.gifting_occasions .gifting_product_card h3 {
    font-size: 20px;
    color: #222;
    padding: 18px 18px 10px;
    line-height: 1.4;
}

.gifting_occasions .gifting_price {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px 20px;
}

.gifting_occasions .gifting_price p {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.gifting_occasions .gifting_price del {
    color: #999;
    font-size: 15px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {

    .gifting_occasions .gifting_wrapper {
        grid-template-columns: 1fr;
    }

    .gifting_occasions .gifting_left_card {
        min-height: 500px;
    }
}

@media (max-width: 768px) {

    .gifting_occasions .gifting_right_cards {
        grid-template-columns: 1fr;
    }

    .gifting_occasions .gifting_overlay h2 {
        font-size: 38px;
    }

    .gifting_occasions .gifting_left_card {
        min-height: 420px;
    }
}


.aq-brands-main-card h2 {

    color: #C98F9D !important;
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--aq-ff-heading);

}

.aq-brands-main-card p {
    color: #C98F9D !important;
    font-size: 16px;

    letter-spacing: 2px;
    font-weight: 400;
    font-family: var(--aq-ff-heading);
}

/* ==========================================================================
   CONSOLIDATED CUSTOM LUXURY B2B STYLES (FROM INTERNAL STYLES)
   ========================================================================== */

/* --- Common Header Bulk Orders & Submenu Navigation --- */
.aq-bulk-orders-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #C98F9D;
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--aq-ff-heading), sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(104, 71, 66, 0.2);
    text-decoration: none;
    margin-right: 15px;
    border: 1px solid #C98F9D;
}

.aq-bulk-orders-btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.aq-bulk-orders-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.aq-bulk-orders-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

#bulkOrderModal .form-control:focus,
#bulkOrderModal .form-select:focus {
    border-color: #C98F9D !important;
    box-shadow: 0 0 0 0.25rem rgba(104, 71, 66, 0.15) !important;
    outline: 0;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 15px 0;
    text-align: left;
    z-index: 99;
}

li.has-dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    top: 110%;
}

.submenu li a {
    display: block;
    padding: 8px 25px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

.submenu li a:hover {
    color: #C98F9D;
    padding-left: 30px;
}

/* --- Common Floating WhatsApp & Interactive Buttons --- */
.footer_whatspp {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_whatspp.scrolled {
    bottom: 120px;
}

.social-whatspp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff !important;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

.social-whatspp::before,
.social-whatspp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    z-index: -1;
    transition: all 0.3s ease;
}

.social-whatspp::before {
    animation: wa-pulse 2s infinite;
}

.social-whatspp::after {
    animation: wa-pulse 2s infinite 0.6s;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.social-whatspp:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
    background: linear-gradient(135deg, #2ae06d 0%, #149b8b 100%);
}

.social-whatspp i {
    transition: transform 0.3s ease;
}

.social-whatspp:hover i {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer_whatspp {
        right: 20px;
        bottom: 30px;
    }

    .footer_whatspp.scrolled {
        bottom: 95px;
    }

    .social-whatspp {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .enquiry-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
    background: #9e622b;
}

/* --- Common Hero/Carousel Slider Dimensions --- */
.aqf-slider-height {
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .aqf-slider-height {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .aqf-slider-height {
        height: 400px;
    }
}

.aqf-slider-thumb.include-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* --- Product Details Luxury Sections (Scoped to aq-product-details-area) --- */
.aq-product-details-area .aq-product-gallery {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.aq-product-details-area .aq-gallery-badge-wrap {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.aq-product-details-area .aq-gallery-badge {
    font-family: 'Inter', sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    letter-spacing: 0.8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    display: inline-block !important;
    white-space: nowrap !important;
    width: max-content !important;
    line-height: 1.2 !important;
}

.aq-product-details-area .aq-gallery-badge.bestseller {
    background: #C98F9D !important;
    color: #fff !important;
    border: none !important;
}

.aq-product-details-area .aq-gallery-badge.logo-branding {
    background: #fbf6ee !important;
    color: #b58032 !important;
    border: 1px solid rgba(181, 128, 50, 0.2) !important;
}

.aq-product-details-area .aq-gallery-main-img-wrap {
    /* height: 650px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.aq-product-details-area .aq-gallery-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.aq-product-details-area .aq-gallery-main-img-wrap:hover .aq-gallery-main-img {
    transform: scale(1.08);
}

.aq-product-details-area .aq-gallery-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.aq-product-details-area .aq-gallery-main-img-wrap:hover .aq-gallery-zoom-hint {
    opacity: 0;
}

.aq-product-details-area .aq-gallery-thumbs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.aq-product-details-area .aq-gallery-thumb-item {
    width: 80px;
    height: 80px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    background: #fff;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aq-product-details-area .aq-gallery-thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.aq-product-details-area .aq-gallery-thumb-item:hover,
.aq-product-details-area .aq-gallery-thumb-item.active {
    border-color: #C98F9D;
    box-shadow: 0 4px 12px rgba(0, 49, 8, 0.1);
}

.aq-product-details-area .aq-product-details-summary {
    padding-left: 10px;
}

.aq-product-details-area .aq-details-brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #b58032;
    display: block;
    margin-bottom: 6px;
}

.aq-product-details-area .aq-details-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.aq-product-details-area .aq-details-rating-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.aq-product-details-area .aq-details-short-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.aq-product-details-area .highlights-list li {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.aq-product-details-area .aq-qty-selector {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: inline-flex;
    align-items: center;
}

.aq-product-details-area .aq-qty-selector .qty-btn {
    border: none;
    background: transparent;
    width: 36px;
    height: 36px;
    font-size: 16px;
    font-weight: 600;
    color: #C98F9D;
    transition: background 0.2s;
    cursor: pointer;
}

.aq-product-details-area .aq-qty-selector .qty-btn:hover {
    background: rgba(0, 49, 8, 0.05);
}

.aq-product-details-area .aq-qty-selector input {
    border: none !important;
    border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    width: 60px !important;
    height: 36px !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #C98F9D !important;
    background: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 36px !important;
}

.aq-product-details-area .aq-qty-selector input::-webkit-outer-spin-button,
.aq-product-details-area .aq-qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.aq-product-details-area .aq-details-nav-tabs {
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    gap: 30px;
}

.aq-product-details-area .aq-details-nav-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    font-size: 15px;
    font-weight: 700;
    color: #666 !important;
    padding: 12px 10px;
    position: relative;
    transition: all 0.3s;
}

.aq-product-details-area .aq-details-nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C98F9D;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.aq-product-details-area .aq-details-nav-tabs .nav-link.active {
    color: #C98F9D !important;
}

.aq-product-details-area .aq-details-nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

@media (max-width: 991px) {
    .aq-product-details-area .aq-gallery-main-img-wrap {
        height: 380px;
    }

    .aq-product-details-area .aq-details-title {
        font-size: 26px;
        margin-top: 15px;
    }

    .aq-product-details-area .aq-details-nav-tabs {
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 5px;
    }

}

/* About Page Premium Scoped Styles */
.aq-about-page {
    font-family: 'Inter', sans-serif;
    color: #333333;
    overflow-x: hidden;
    background-color: #fbfbfa;
}

.aq-about-page .about-hero {
    position: relative;
    background: linear-gradient(135deg, #001f05 0%, #C98F9D 50%, #002206 100%);
    padding: 100px 0 120px 0;
    color: #ffffff;
    overflow: hidden;
}

.aq-about-page .about-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(181, 128, 50, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.aq-about-page .about-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 49, 8, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.aq-about-page .about-hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b58032;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.aq-about-page .about-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.aq-about-page .about-hero-title span {
    background: linear-gradient(120deg, #ffffff 0%, #f3ebd7 60%, #b58032 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aq-about-page .about-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 35px auto;
}

.aq-about-page .aq-about-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 35px;
    background: #b58032;
    color: #ffffff !important;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(181, 128, 50, 0.3);
    border: 2px solid #b58032;
}

.aq-about-page .aq-about-btn-gold:hover {
    background: transparent;
    color: #b58032 !important;
    box-shadow: 0 10px 30px rgba(181, 128, 50, 0.1);
    transform: translateY(-3px);
}

/* Stats Section */
.aq-about-page .aq-stats-wrap {
    /* margin-top: -60px; */
    position: relative;
    z-index: 10;
}

.aq-about-page .stat-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 0, .08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.aq-about-page .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 49, 8, 0.06);
    border-color: rgba(181, 128, 50, 0.3);
}

.aq-about-page .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 49, 8, 0.04);
    color: #b58032;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.aq-about-page .stat-card:hover .stat-icon {
    background: #C98F9D;
    color: #ffffff;
    transform: rotate(360deg);
}

.aq-about-page .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #C98F9D;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #C98F9D 0%, #b58032 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aq-about-page .stat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666666;
    letter-spacing: 0.5px;
}

/* Discover Section */
.aq-about-page .aq-discover-section {
    padding: 100px 0;
    position: relative;
}

.aq-about-page .aq-section-title-sm,
.aq-why-choose-page .aq-section-title-sm {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #b58032;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.aq-about-page .aq-section-title,
.aq-why-choose-page .aq-section-title {
    font-family: var(--bd-ff-heading, 'Playfair Display', serif);
    font-size: 36px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.aq-about-page .aq-section-title::after,
.aq-why-choose-page .aq-section-title::after,
.aq-occasions-page .aq-section-title::after,
.aq-faq-page .aq-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #C98F9D !important;
}

.aq-about-page .aq-section-desc,
.aq-why-choose-page .aq-section-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.aq-about-page .aq-image-box-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(128, 0, 0, .08);
}

.aq-about-page .aq-image-box-premium img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.aq-about-page .aq-image-box-premium:hover img {
    transform: scale(1.05);
}

.aq-about-page .aq-image-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 49, 8, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* Elevate / Tech Experience Section */
.aq-about-page .aq-tech-section {
    padding: 100px 0;
    background: rgba(0, 49, 8, 0.02);
    border-top: 1px solid rgba(0, 49, 8, 0.05);
    border-bottom: 1px solid rgba(0, 49, 8, 0.05);
}

.aq-about-page .tech-feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 49, 8, 0.06);
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    transition: all 0.4s ease;
}

.aq-about-page .tech-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 49, 8, 0.05);
    border-color: rgba(181, 128, 50, 0.25);
}

.aq-about-page .tech-feature-icon {
    font-size: 28px;
    color: #b58032;
    margin-bottom: 20px;
    display: inline-block;
}

.aq-about-page .tech-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 15px;
}

.aq-about-page .tech-feature-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 0;
}

.aq-about-page .aq-reach-cta-banner {
    background: linear-gradient(135deg, #C98F9D 0%, #001f05 100%);
    border-radius: 16px;
    padding: 40px 50px;
    color: #ffffff;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(0, 49, 8, 0.15);
}

.aq-about-page .aq-reach-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.aq-about-page .aq-reach-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Brand Promise Section */
.aq-about-page .aq-promise-section {
    padding: 100px 0;
}

.aq-about-page .promise-card {
    background: #ffffff;
    border: 1px solid rgba(0, 49, 8, 0.06);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.aq-about-page .promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #b58032;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.aq-about-page .promise-card:hover::before {
    transform: scaleY(1);
}

.aq-about-page .promise-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border-color: rgba(181, 128, 50, 0.2);
}

.aq-about-page .promise-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(181, 128, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #b58032;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.aq-about-page .promise-card:hover .promise-icon {
    background: #b58032;
    color: #ffffff;
}

.aq-about-page .promise-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 15px;
}

.aq-about-page .promise-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0;
}

/* Vision Mission Split */
.aq-about-page .aq-vision-mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(0, 49, 8, 0.02) 100%);
}

.aq-about-page .vision-mission-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 0, .08);
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 49, 8, 0.02);
    transition: all 0.4s ease;
}

.aq-about-page .vision-mission-card:hover {
    box-shadow: 0 25px 60px rgba(0, 49, 8, 0.05);
    border-color: rgba(181, 128, 50, 0.25);
}

.aq-about-page .vm-badge {
    position: absolute;
    top: -20px;
    left: 40px;
    background: #C98F9D;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 49, 8, 0.15);
}

.aq-about-page .vm-badge.mission-badge {
    background: #b58032;
    box-shadow: 0 5px 15px rgba(181, 128, 50, 0.15);
}

.aq-about-page .vm-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #C98F9D;
    margin-bottom: 20px;
    margin-top: 10px;
}

.aq-about-page .vm-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .aq-about-page .about-hero {
        padding: 80px 0;
        text-align: center;
    }

    .aq-about-page .about-hero-title {
        font-size: 36px;
    }

    .aq-about-page .aq-reach-cta-banner {
        padding: 30px;
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }

    .aq-about-page .aq-section-title {
        font-size: 30px;
    }
}

/* Luxury Trust Badges Section styling */
.aq-luxury-trust-badges {
    /* border-top: 1px dashed rgba(0, 49, 8, 0.12); */
    /* margin-top: 30px; */
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

@media (min-width: 576px) {
    .aq-luxury-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .aq-luxury-trust-badges {
        /* grid-template-columns: repeat(4, 1fr); */
        gap: 12px;
    }
}

.aq-trust-badge-item {
    background: #fbfbfa;
    border: 1.5px solid rgba(0, 49, 8, 0.05);
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aq-trust-badge-item:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 49, 8, 0.06);
    border-color: #C98F9D;
}

.aq-trust-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 49, 8, 0.06);
    color: #C98F9D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.aq-trust-badge-item:hover .aq-trust-badge-icon {
    background: #C98F9D;
    color: #ffffff;
}

.aq-trust-badge-content {
    display: flex;
    flex-direction: column;
}

.aq-trust-badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #C98F9D;
    line-height: 1.2;
}

.aq-trust-badge-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #666666;
    font-weight: 500;
    margin-top: 2px;
    line-height: 1.2;
}

/* ==========================================================================
   Creative B2B Cart Page & Enquiry System
   ========================================================================== */
.aq-cart-page {
    background-color: #fcfbf9;
}

.aq-cart-wrapper {
    padding: 80px 0 100px;
}

.aq-cart-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #C98F9D;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.aq-cart-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #b58032;
    border-radius: 2px;
}

/* Cart Items Container */
.aq-cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aq-cart-item-row {
    background: #ffffff;
    border: 1px solid rgba(0, 49, 8, 0.06);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 49, 8, 0.01);
}

.aq-cart-item-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 49, 8, 0.04);
    border-color: rgba(181, 128, 50, 0.25);
}

/* Thumbnail */
.aq-cart-item-thumb {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 49, 8, 0.05);
    background: #fbfbfa;
}

.aq-cart-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detail Info */
.aq-cart-item-details {
    flex-grow: 1;
}

.aq-cart-item-category {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b58032;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.aq-cart-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 8px;
}

.aq-cart-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.aq-cart-item-title a:hover {
    color: #b58032;
}

.aq-cart-customization-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.aq-cart-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 30px;
    background: rgba(0, 49, 8, 0.05);
    color: #C98F9D;
}

.aq-cart-badge.engrave {
    background: rgba(181, 128, 50, 0.08);
    color: #b58032;
    border: 1px solid rgba(181, 128, 50, 0.15);
}

/* Price & Quantity Layout */
.aq-cart-item-price-qty {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

/* Price block */
.aq-cart-price-block {
    text-align: right;
    min-width: 110px;
}

.aq-cart-mrp {
    font-size: 11px;
    text-decoration: line-through;
    color: #999;
    display: block;
}

.aq-cart-discount-tag {
    font-size: 10px;
    font-weight: 700;
    color: #28a745;
    background: rgba(40, 167, 69, 0.08);
    padding: 1px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 2px;
}

.aq-cart-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #C98F9D;
}

/* Quantity controls */
.aq-cart-qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(0, 49, 8, 0.1);
    border-radius: 10px;
    padding: 2px;
    background: #fbfbfa;
}

.aq-cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #C98F9D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aq-cart-qty-btn:hover {
    background: #C98F9D;
    color: #ffffff;
}

.aq-cart-qty-input {
    width: 60px;
    padding: 0;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #C98F9D !important;
    -webkit-text-fill-color: #C98F9D !important;
    opacity: 1 !important;
    pointer-events: none;
}

/* Remove action */
.aq-cart-item-remove {
    background: transparent;
    border: none;
    color: #c93b2b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.aq-cart-item-remove:hover {
    background: rgba(201, 59, 43, 0.08);
}

/* Order Summary Floating Card */
.aq-summary-card {
    background: #ffffff;
    border: 1px solid rgba(0, 49, 8, 0.06);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 49, 8, 0.02);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.aq-summary-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #C98F9D;
    margin-bottom: 25px;
    border-bottom: 1.5px solid rgba(0, 49, 8, 0.06);
    padding-bottom: 12px;
}

.aq-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
}

.aq-summary-row.total-row {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1.5px dashed rgba(0, 49, 8, 0.1);
    color: #C98F9D;
    font-weight: 700;
}

.aq-summary-row.total-row span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #b58032;
}

.aq-btn-final-quote {
    background: #C98F9D;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    margin-top: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0, 49, 8, 0.12);
}

.aq-btn-final-quote:hover {
    background: #b58032;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(181, 128, 50, 0.2);
}

.aq-summary-perks {
    margin-top: 25px;
    background: rgba(0, 49, 8, 0.02);
    border-radius: 10px;
    padding: 15px;
}

.aq-summary-perk-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #555555;
    margin-bottom: 8px;
}

.aq-summary-perk-item:last-child {
    margin-bottom: 0;
}

.aq-summary-perk-item i {
    color: #28a745;
}

/* Mobile Responsive Cart */
@media (max-width: 767px) {
    .aq-cart-item-row {
        flex-wrap: wrap;
        padding: 16px;
        gap: 16px;
    }

    .aq-cart-item-thumb {
        width: 80px;
        height: 80px;
    }

    .aq-cart-item-details {
        width: calc(100% - 96px);
    }

    .aq-cart-item-price-qty {
        width: 100%;
        justify-content: space-between;
        margin-top: 4px;
        padding-top: 16px;
        border-top: 1px dashed rgba(128, 0, 0, .08);
        gap: 12px;
    }

    .aq-cart-price-block {
        order: 1;
        text-align: left;
        min-width: auto;
        flex-grow: 1;
    }

    .aq-cart-qty-selector {
        order: 2;
    }

    .aq-cart-item-remove {
        order: 3;
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   Request a Final Quote Modal Overlay & Form Design
   ========================================================================== */
.aq-quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 5, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.aq-quote-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.aq-quote-modal-card {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 25px 60px rgba(0, 31, 5, 0.35);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(181, 128, 50, 0.15);
}

.aq-quote-modal-overlay.active .aq-quote-modal-card {
    transform: translateY(0) scale(1);
}

/* Close Modal Button */
.aq-quote-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 49, 8, 0.05);
    border: none;
    color: #C98F9D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.aq-quote-modal-close-btn:hover {
    background: #c93b2b;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Modal Header */
.aq-quote-modal-header {
    background: linear-gradient(135deg, #C98F9D 0%, #001f05 100%);
    padding: 30px 40px;
    color: #ffffff;
    position: relative;
}

.aq-quote-modal-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #b58032;
}

.aq-quote-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 5px;
}

.aq-quote-modal-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Modal Body / Form */
.aq-quote-modal-body {
    padding: 35px 40px;
    max-height: 70vh;
    overflow-y: auto;
}

.aq-quote-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .aq-quote-form-row.two-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aq-quote-form-group {
    display: flex;
    flex-direction: column;
}

.aq-quote-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #C98F9D;
    margin-bottom: 8px;
}

.aq-quote-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.aq-quote-input-wrapper i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 13px;
    transition: color 0.3s ease;
}

.aq-quote-input {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border-radius: 10px;
    border: 1.5px solid rgba(0, 49, 8, 0.1);
    background: #fcfbf9;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #333333;
    outline: none;
    transition: all 0.3s ease;
}

.aq-quote-input:focus {
    border-color: #b58032;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(181, 128, 50, 0.08);
}

.aq-quote-input:focus+i {
    color: #b58032;
}

/* Select wrapper override */
.aq-quote-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.aq-quote-select-wrapper i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 13px;
    z-index: 2;
}

.aq-quote-select {
    width: 100%;
    padding: 12px 40px 12px 42px;
    border-radius: 10px;
    border: 1.5px solid rgba(0, 49, 8, 0.1);
    background: #fcfbf9;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #333333;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aq-quote-select:focus {
    border-color: #b58032;
    background: #ffffff;
}

.aq-quote-select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    color: #777;
    font-size: 14px;
    pointer-events: none;
}

/* Textarea override */
.aq-quote-textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px 15px 12px 42px;
    border-radius: 10px;
    border: 1.5px solid rgba(0, 49, 8, 0.1);
    background: #fcfbf9;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #333333;
    outline: none;
    resize: vertical;
    transition: all 0.3s ease;
}

.aq-quote-textarea:focus {
    border-color: #b58032;
    background: #ffffff;
}

.aq-quote-submit-btn {
    background: #b58032;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(181, 128, 50, 0.15);
    transition: all 0.3s ease;
}

.aq-quote-submit-btn:hover {
    background: #C98F9D;
    box-shadow: 0 8px 20px rgba(0, 49, 8, 0.2);
}

/* ==========================================================================
   Thank You Page State (Creative Full Screen / Dashboard Block)
   ========================================================================== */
.aq-thankyou-wrapper {
    /* display: none; */
    padding: 100px 0 120px;
    text-align: center;
    background-color: #fcfbf9;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.aq-thankyou-card {
    background: #ffffff;
    border: 1px solid rgba(0, 49, 8, 0.06);
    border-radius: 28px;
    padding: 60px 40px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 49, 8, 0.03);
    position: relative;
    border-top: 5px solid #b58032;
}

.aq-thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(40, 167, 69, 0.2);
    animation: pulseCheck 2s infinite;
}

.aq-thankyou-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #C98F9D;
    margin-bottom: 15px;
}

.aq-thankyou-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 40px;
}

/* Quote Process Step Tracker */
.aq-thankyou-tracker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 45px;
    position: relative;
}

.aq-thankyou-tracker::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: rgba(0, 49, 8, 0.05);
    z-index: 1;
}

.aq-tracker-progress-bar {
    position: absolute;
    top: 18px;
    left: 15%;
    width: 50%;
    height: 3px;
    background: #b58032;
    z-index: 2;
    animation: growBar 1.5s ease forwards;
}

.aq-tracker-step {
    position: relative;
    z-index: 3;
}

.aq-tracker-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef3ef;
    color: #999999;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin: 0 auto 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.aq-tracker-step.completed .aq-tracker-dot {
    background: #C98F9D;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 49, 8, 0.2);
}

.aq-tracker-step.active .aq-tracker-dot {
    background: #b58032;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(181, 128, 50, 0.2);
}

.aq-tracker-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999999;
}

.aq-tracker-step.active .aq-tracker-label,
.aq-tracker-step.completed .aq-tracker-label {
    color: #C98F9D;
}

.aq-thankyou-summary-box {
    background: #fcfbf9;
    border: 1px solid rgba(0, 49, 8, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.aq-summary-meta-item {
    text-align: left;
}

.aq-meta-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.aq-meta-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #C98F9D;
}

.aq-thankyou-btn {
    background: #b58032;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(181, 128, 50, 0.15);
    transition: all 0.3s ease;
}

.aq-thankyou-btn:hover {
    background: #C98F9D;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 49, 8, 0.2);
}

/* Animations */
@keyframes pulseCheck {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes growBar {
    from {
        width: 0%;
    }

    to {
        width: 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Product Details Scoped Styles
   ========================================================================== */
.aq-product-details-page .aq-product-details-area {
    background: #ffffff;
}

.aq-product-details-page .aq-details-breadcrumbs {
    font-size: 13px;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.aq-product-details-page .aq-details-breadcrumbs a {
    color: #C98F9D;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aq-product-details-page .aq-details-breadcrumbs a:hover {
    color: #b58032;
}

.aq-product-details-page .aq-details-breadcrumbs .divider {
    margin: 0 8px;
    color: #ccc;
}

.aq-product-details-page .aq-details-breadcrumbs .current {
    color: #999;
}

/* Suitable For Section */
.aq-product-details-page .aq-suitable-for-extra {
    border: 1px solid rgba(0, 49, 8, 0.1);
    border-radius: 16px;
    background: #fafaf8;
    box-shadow: 0 8px 30px rgba(0, 49, 8, 0.02);
    font-family: 'Inter', sans-serif;
}

.aq-product-details-page .aq-suitable-for-extra h5 {
    font-size: 13px;
    font-weight: 700;
    color: #C98F9D;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.aq-product-details-page .aq-suitable-for-extra h5 i {
    color: #b58032;
    font-size: 14px;
}

.aq-product-details-page .aq-occasion-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 0, .08);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.aq-product-details-page .aq-occasion-card:hover {
    transform: translateY(-2px);
    border-color: #C98F9D;
    box-shadow: 0 6px 16px rgba(0, 49, 8, 0.06);
}

.aq-product-details-page .aq-occasion-icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(0, 49, 8, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aq-product-details-page .aq-occasion-card i {
    color: #b58032;
    font-size: 16px;
}

.aq-product-details-page .aq-occasion-card span {
    font-size: 11px;
    font-weight: 700;
    color: #C98F9D;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

/* Reviews Stars */
.aq-product-details-page .aq-details-stars {
    color: #b58032;
    font-size: 13px;
}

/* Pricing box */
.aq-product-details-page .aq-details-price-box {
    background: rgba(0, 49, 8, 0.04);
    border-radius: 12px;
    border-left: 4px solid #C98F9D;
    font-family: 'Montserrat', sans-serif;
}

.aq-product-details-page .aq-price-mrp-row {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.aq-product-details-page .aq-price-mrp-row .mrp-label {
    color: #666;
    font-weight: 500;
}

.aq-product-details-page .aq-price-mrp-row .mrp-value {
    text-decoration: line-through;
    font-weight: 600;
}

.aq-product-details-page .aq-price-mrp-row .discount-badge {
    background-color: #d1fae5;
    color: #065f46;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aq-product-details-page .aq-price-offered-row .offered-label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    font-family: 'Inter', sans-serif;
}

.aq-product-details-page .aq-price-offered-row .aq-details-price {
    font-size: 32px;
    font-weight: 700;
    color: #C98F9D;
}

.aq-product-details-page .aq-price-offered-row .aq-details-price-unit {
    color: #666;
    font-size: 13px;
}

.aq-product-details-page .aq-moq-info {
    font-size: 12px;
    color: #555;
    font-family: 'Inter', sans-serif;
}

/* Highlights contents list */
.aq-product-details-page .aq-details-highlights .highlights-title {
    font-size: 15px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 12px;
}

.aq-product-details-page .aq-details-highlights .highlights-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.aq-product-details-page .aq-details-highlights .highlights-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #444;
}

.aq-product-details-page .aq-details-highlights .highlights-list li i {
    color: #C98F9D;
    margin-right: 10px;
    font-size: 14px;
}

/* Co-Branding Panel */
.aq-product-details-page .aq-branding-panel {
    border: 1px solid rgba(0, 49, 8, 0.12);
    border-radius: 12px;
    background: #ffffff;
}

.aq-product-details-page .aq-branding-title {
    font-size: 14px;
    font-weight: 700;
    color: #C98F9D;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.aq-product-details-page .aq-branding-btn {
    height: 42px;
    border: 1.5px solid rgba(0, 49, 8, 0.15);
    border-radius: 8px;
    background: #ffffff;
    color: #C98F9D;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aq-product-details-page #btnPersonalised.aq-branding-btn.active {
    border-color: #C98F9D;
    background: #C98F9D;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 49, 8, 0.1);
}

.aq-product-details-page #btnEmbossed.aq-branding-btn.active {
    border-color: #C98F9D;
    background: #C98F9D;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 49, 8, 0.1);
}

/* Calculator Panel */
.aq-product-details-page .aq-calculator-panel {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #fafaf8;
}

.aq-product-details-page .aq-qty-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}

.aq-product-details-page .aq-estimate-label {
    font-size: 11px;
    color: #666;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.aq-product-details-page .aq-estimate-value {
    font-size: 22px;
    font-weight: 700;
    color: #C98F9D;
    font-family: 'Montserrat', sans-serif;
}

/* Call to action buttons */
.aq-product-details-page .aq-custom-quote-btn {
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

.aq-product-details-page .aq-download-pdf-btn {
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 14px;
    border-color: #C98F9D !important;
    color: #C98F9D !important;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    transition: all 0.3s ease;
}

.aq-product-details-page .aq-download-pdf-btn:hover {
    background: #C98F9D !important;
    color: #ffffff !important;
}

/* Tab contents styling */
.aq-product-details-page .aq-details-tab-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.aq-product-details-page .aq-tab-heading {
    font-size: 18px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 15px;
}

.aq-product-details-page .aq-tab-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.aq-product-details-page .aq-tab-img {
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.aq-product-details-page .aq-tab-table {
    font-size: 13px;
}

.aq-product-details-page .aq-tab-table thead {
    background: rgba(0, 49, 8, 0.05);
    color: #C98F9D;
}

.aq-product-details-page .shipping-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    height: 100%;
    background: #fafaf8;
}

.aq-product-details-page .shipping-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #C98F9D;
}

.aq-product-details-page .shipping-card p {
    font-size: 12.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.aq-product-details-page .aq-faq-item {
    border: none;
    margin-bottom: 10px;
}

.aq-product-details-page .aq-faq-btn {
    background: #fafaf8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #C98F9D;
}

.aq-product-details-page .aq-faq-body {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* Sections & titles styling */
.aq-product-details-page .aq-new-arrivals-section,
.aq-product-details-page .aq-bottom-catalog-section {
    background: #fafaf8 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.aq-product-details-page .aq-related-products-section {
    background: #ffffff !important;
}

.aq-product-details-page .aq-creative-title {
    color: #C98F9D !important;
}

.aq-product-details-page .aq-creative-title-line {
    background: #C98F9D !important;
    margin: 15px auto 0 !important;
}

/* Filter layouts summary styling */
.aq-product-details-page .aq-layout-header {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.aq-product-details-page .aq-layout-header-title {
    font-family: var(--aq-ff-heading);
    font-weight: 700;
    color: #C98F9D;
    font-size: 16px;
    margin-bottom: 0;
}

.aq-product-details-page .aq-layout-header-options {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.aq-product-details-page .aq-layout-header-options span {
    font-family: Inter, sans-serif;
    font-size: 13px;
    color: #666;
}

.aq-product-details-page .aq-sort-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    background-color: #fff;
}

.aq-product-details-page .aq-product-card-info p {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    color: #777 !important;
    margin-bottom: 12px !important;
}

.aq-product-details-page .aq-product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 30px !important;
}

.aq-product-details-page .aq-details-stars {
    color: #b58032 !important;
    font-size: 13px !important;
}

.aq-product-details-page .aq-creative-title {
    color: #C98F9D !important;
}

.aq-product-details-page .aq-creative-title-line {
    background: #C98F9D !important;
    margin: 15px auto 0 !important;
}

.aq-product-details-page .aq-modal-left-benefit-desc {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.65) !important;
}

.aq-product-details-page .aq-modal-right-col {
    background: #ffffff !important;
    padding: 40px !important;
}

.aq-product-details-page .aq-modal-right-title {
    font-weight: 700 !important;
    color: #000 !important;
    font-size: 24px !important;
    margin-bottom: 8px !important;
}

.aq-product-details-page .aq-modal-right-desc {
    color: #666 !important;
    font-size: 14px !important;
}

.aq-product-details-page .aq-form-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #333 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.aq-product-details-page .aq-form-label span {
    color: #C98F9D !important;
}

.aq-product-details-page .aq-form-control-luxury {
    border-radius: 8px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
    background-color: #fcfbf9 !important;
    width: 100% !important;
}

.aq-product-details-page .aq-form-select-luxury {
    border-radius: 8px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
    background-color: #fcfbf9 !important;
    width: 100% !important;
    height: 45px !important;
}

.aq-product-details-page .aq-modal-submit-btn {
    border-radius: 8px !important;
    padding: 14px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
}

.aq-product-details-page .aq-modal-success-icon-wrap {
    width: 70px !important;
    height: 70px !important;
    background: rgba(40, 167, 69, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 36px !important;
    color: #28a745 !important;
    margin: 0 auto 20px !important;
}

.aq-product-details-page .aq-modal-success-title {
    font-weight: 700 !important;
    color: #000 !important;
    font-size: 22px !important;
    margin-bottom: 10px !important;
}

.aq-product-details-page .aq-modal-success-desc {
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    max-width: 320px !important;
    margin: 0 auto !important;
}

/* =============================================================================
   ABOUT PAGE â€” Breadcrumb
   ============================================================================= */

.aq-about-page .aq-about-breadcrumb-wrap {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px 0;
}

.aq-about-page .aq-details-breadcrumbs {
    font-size: 13px;
    color: #666;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0;
}

.aq-about-page .aq-details-breadcrumbs a {
    color: #C98F9D;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aq-about-page .aq-details-breadcrumbs a:hover {
    color: #b58032;
}

.aq-about-page .aq-details-breadcrumbs .divider {
    margin: 0 8px;
    color: #ccc;
}

.aq-about-page .aq-details-breadcrumbs .current {
    color: #999;
}

/* =============================================================================
   ABOUT PAGE â€” Leadership Section
   ============================================================================= */

.aq-about-page .aq-leadership-section {
    padding: 80px 0;
    background-color: #fcfbf9;
}

.aq-about-page .aq-section-title-wrapper {
    margin-bottom: 50px;
}

.aq-about-page .aq-section-title {
    font-family: var(--bd-ff-heading, 'Playfair Display', serif);
    font-size: 36px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 15px;
}

.aq-about-page .aq-section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.aq-about-page .aq-leader-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 49, 8, 0.05);
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.aq-about-page .aq-leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(135deg, #C98F9D 0%, #001a04 100%);
    z-index: -1;
    border-radius: 20px 20px 0 0;
    transition: height 0.4s ease;
}

.aq-about-page .aq-leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 49, 8, 0.1);
}

.aq-about-page .aq-leader-card:hover::before {
    height: 160px;
}

.aq-about-page .aq-leader-img-wrapper {
    width: 160px;
    height: 160px;
    margin: 30px auto 20px;
    position: relative;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.aq-about-page .aq-leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.aq-about-page .aq-leader-card:hover .aq-leader-img {
    transform: scale(1.05);
}

.aq-about-page .aq-leader-socials {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(181, 128, 50, 0.2);
}

.aq-about-page .aq-leader-card:hover .aq-leader-socials {
    opacity: 1;
    visibility: visible;
    bottom: -15px;
}

.aq-about-page .aq-leader-socials a {
    color: #C98F9D;
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fcfbf9;
    transition: all 0.3s ease;
}

.aq-about-page .aq-leader-socials a:hover {
    background: #b58032;
    color: #fff;
}

.aq-about-page .aq-leader-info {
    padding: 15px 10px 10px;
}

.aq-about-page .aq-leader-name {
    font-family: var(--bd-ff-heading, \'Playfair Display\', serif);
    font-size: 22px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 5px;
}

.aq-about-page .aq-leader-designation {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #b58032;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.aq-about-page .aq-leader-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .aq-about-page .aq-leadership-section {
        padding: 60px 0;
    }
}

/* =============================================================================
   WHY CHOOSE US PAGE
   ============================================================================= */

/* Features Section */
.aq-why-choose-page .aq-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 49, 8, 0.05);
    height: 100%;
}

.aq-why-choose-page .aq-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(128, 0, 0, .08);
    border-color: rgba(181, 128, 50, 0.3);
}

.aq-why-choose-page .aq-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(0, 49, 8, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #b58032;
    transition: all 0.3s ease;
}

.aq-why-choose-page .aq-feature-card:hover .aq-feature-icon {
    background: #C98F9D;
    color: #fff;
}

.aq-why-choose-page .aq-feature-title {
    font-family: var(--bd-ff-heading, 'Playfair Display', serif);
    font-size: 22px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 15px;
}

.aq-why-choose-page .aq-feature-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Partners Section */
.aq-why-choose-page .aq-partners-section {
    background-color: #fcfbf9;
}

.aq-why-choose-page .aq-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.aq-why-choose-page .aq-partner-item {
    flex: 1 1 18%;
    min-width: 150px;
    max-width: 200px;
}

.aq-why-choose-page .aq-partner-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.aq-why-choose-page .aq-partner-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #b58032;
}

.aq-why-choose-page .aq-partner-name {
    font-family: var(--bd-ff-heading, 'Playfair Display', serif);
    font-size: 24px;
    font-weight: 700;
    color: #C98F9D;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 767px) {
    .aq-why-choose-page .aq-partner-item {
        flex: 1 1 40%;
    }
}

/* =============================================================================
   WHY CHOOSE US PAGE - CREATIVE FEATURES SECTION
   ============================================================================= */

.aq-why-features-creative {
    background-color: #fcfbf9;
    overflow: hidden;
}

.aq-ambient-glow-1,
.aq-ambient-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.aq-ambient-glow-1 {
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(181, 128, 50, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.aq-ambient-glow-2 {
    bottom: -100px;
    right: -150px;
    background: radial-gradient(circle, rgba(0, 49, 8, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.aq-staggered-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.aq-stagger-item {
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .aq-stagger-item.delay-1 {
        transform: translateY(40px);
    }

    .aq-stagger-item.delay-2 {
        transform: translateY(80px);
    }
}

.aq-creative-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aq-creative-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(181, 128, 50, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.aq-creative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(128, 0, 0, .08);
    border-color: rgba(181, 128, 50, 0.4);
}

.aq-creative-card:hover .aq-creative-card-glow {
    opacity: 1;
}

.aq-creative-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #b58032;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.aq-creative-card:hover .aq-creative-icon {
    transform: scale(1.1) rotate(5deg);
    background: #C98F9D;
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 49, 8, 0.2);
}

/* .aq-creative-title {
    font-family: var(--bd-ff-heading, 'Playfair Display', serif);
    font-size: 22px;
    font-weight: 700;
    color: #C98F9D;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
} */

.aq-creative-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}



.aq-luxury-cta-section {
    background: var(--aq-color-maroon);
    overflow: hidden;
}

.aq-cta-btn-primary {
    background: #ffffff;
    color: #C98F9D;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.aq-cta-btn-primary:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.aq-cta-btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.aq-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Premium Modal Styles */
.aq-premium-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.aq-premium-modal.final-quote-modal .modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.aq-premium-modal .btn-close.position-absolute {
    top: 20px;
    right: 20px;
    z-index: 10;
    filter: grayscale(1) invert(0);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.aq-premium-modal.bulk-order-modal .btn-close.position-absolute {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.aq-premium-modal .aq-modal-left-panel {
    padding: 50px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.aq-premium-modal .aq-modal-right-panel {
    background: #ffffff;
    padding: 50px 40px;
}

.aq-premium-modal .aq-form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.5px;
}

.aq-premium-modal .form-control,
.aq-premium-modal .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background-color: #faf9f7;
    width: 100%;
    transition: all 0.3s ease;
}

.aq-premium-modal .form-control.with-icon {
    padding-left: 40px;
}

.aq-premium-modal textarea.form-control {
    resize: none;
}

.aq-premium-modal .form-select {
    cursor: pointer;
}

.aq-premium-modal .aq-btn-submit {
    border-radius: 8px !important;
    padding: 16px !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background-color: #C98F9D;
    border: none;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aq-premium-modal.bulk-order-modal .aq-btn-submit {
    background-color: #ab1f24;
    /* btn-red-bg */
}

.aq-premium-modal .aq-btn-submit i {
    margin-left: 10px;
}

/* Specific Panel Backgrounds */
.aq-premium-modal.bulk-order-modal .aq-modal-left-panel {
    background: linear-gradient(135deg, rgba(201, 143, 157, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%), url('../img/corporate/p-02.jpg') center/cover no-repeat;
}

.aq-premium-modal.final-quote-modal .aq-modal-left-panel {
    background: linear-gradient(135deg, rgba(201, 143, 157, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%), url('../img/corporate/p-01.jpg') center/cover no-repeat;
}

/* Modifiers for elements that need less padding */
.aq-premium-modal.bulk-order-modal .aq-modal-left-panel,
.aq-premium-modal.bulk-order-modal .aq-modal-right-panel {
    padding: 40px;
}

.aq-premium-modal.bulk-order-modal .form-control {
    padding: 10px 15px;
}

.aq-premium-modal.bulk-order-modal .aq-btn-submit {
    padding: 14px !important;
}

/* Other inner inline styles */
.aq-premium-modal .aq-modal-left-panel img.aq-modal-logo {
    max-width: 120px;
    filter: brightness(0) invert(1);
}

.aq-premium-modal .aq-modal-left-panel h3.aq-modal-title {
    font-weight: 700;
    color: #fff;
    font-size: 26px;
}

.aq-premium-modal .aq-modal-left-panel p.aq-modal-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.aq-premium-modal .aq-modal-right-panel h3.aq-modal-title {
    font-weight: 700;
    color: #000;
    font-size: 24px;
    margin-bottom: 8px;
}

.aq-premium-modal .aq-modal-right-panel p.aq-modal-desc {
    color: #666;
    font-size: 14px;
}

.aq-premium-modal.final-quote-modal .aq-modal-left-panel h3.aq-modal-title {
    font-size: 32px;
    line-height: 1.2;
}

.aq-premium-modal.final-quote-modal .aq-modal-left-panel h3.aq-modal-title span {
    color: #d4af37;
    font-style: italic;
}

.aq-premium-modal.final-quote-modal .aq-modal-left-panel p.aq-modal-desc {
    font-size: 15px;
    margin-bottom: 30px;
}

.aq-premium-modal.final-quote-modal .aq-modal-right-panel h3.aq-modal-title {
    font-size: 26px;
}

.aq-premium-modal .aq-modal-left-panel i.aq-modal-icon {
    font-size: 30px;
    color: #d4af37;
}

.aq-premium-modal .aq-modal-left-features {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.aq-premium-modal .aq-modal-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.aq-premium-modal .aq-modal-feature-item span {
    font-size: 13px;
    color: #ddd;
}

.aq-premium-modal .input-icon {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
}

.aq-bulk-success-message {
    text-align: center;
    padding: 30px 10px;
}

.aq-bulk-success-icon {
    width: 70px;
    height: 70px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #28a745;
    margin: 0 auto 20px;
}

.aq-bulk-success-message h4 {
    font-weight: 700;
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
}

.aq-bulk-success-message p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

/* Contact Page Styles */
.aq-contact-page .aq-contact-hero {
    background: linear-gradient(135deg, rgba(0, 49, 8, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%), url('../img/corporate/welcome_kit_1778668006890.webp') center/cover no-repeat;
}

.aq-contact-page .aq-contact-hero h1 {
    font-weight: 700;
    font-size: 52px;
}

.aq-contact-page .aq-contact-hero-desc {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 16px;
}

.aq-contact-page .aq-contact-content {
    background-color: #fcfbf9;
}

.aq-contact-page .aq-contact-info-wrapper h3 {
    color: #C98F9D;
    font-size: 32px;
}

.aq-contact-page .aq-office-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.aq-contact-page .aq-office-card:hover {
    transform: translateY(-5px);
}

.aq-contact-page .aq-office-card.corporate-card {
    border-left: 4px solid #C98F9D;
}

.aq-contact-page .aq-office-icon {
    color: #d4af37;
    font-size: 24px;
}

.aq-contact-page .aq-office-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.aq-contact-page .aq-office-address {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.aq-contact-page .aq-office-details {
    font-size: 14px;
    color: #333;
}

.aq-contact-page .aq-contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.aq-contact-page .aq-contact-form-title {
    font-weight: 700;
    color: #000;
    font-size: 32px;
}

.aq-contact-page .aq-contact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.aq-contact-page .aq-contact-input {
    border-radius: 8px;
    padding: 14px 15px 14px 45px;
    font-size: 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background-color: #faf9f7;
    width: 100%;
    transition: all 0.3s ease;
}

.aq-contact-page select.aq-contact-input {
    padding-left: 15px;
    /* no icon for select */
    cursor: pointer;
}

.aq-contact-page textarea.aq-contact-input {
    padding-left: 15px;
    /* no icon for textarea */
    resize: none;
}

.aq-contact-page .aq-contact-input:focus {
    border-color: #C98F9D;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 49, 8, 0.1);
    outline: none;
}

.aq-contact-page .aq-contact-input-icon {
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    z-index: 2;
}

.aq-contact-page .aq-contact-btn-submit {
    border-radius: 8px !important;
    padding: 16px !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background-color: #C98F9D;
    border: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aq-contact-page .aq-contact-btn-submit:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.aq-contact-page .aq-contact-btn-submit i {
    margin-left: 10px;
}

/* Blog Page Styles */
.aq-blog-page-wrap .aq-blog-section {
    padding-top: 80px;
    padding-bottom: 100px;
    /* background-color: #C98F9D; */
}

.aq-blog-page-wrap .aq-blog-title-sm {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.aq-blog-page-wrap .aq-blog-main-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.aq-blog-page-wrap .aq-section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.aq-blog-page-wrap .aq-blog-desc {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.aq-blog-page-wrap .aq-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.aq-blog-page-wrap .aq-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.aq-blog-page-wrap .aq-blog-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.aq-blog-page-wrap .aq-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.aq-blog-page-wrap .aq-blog-card:hover .blog-img-hover {
    transform: scale(1.05);
}

.aq-blog-page-wrap .aq-blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aq-blog-page-wrap .aq-blog-content {
    padding: 30px;
}

.aq-blog-page-wrap .aq-blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #777;
}

.aq-blog-page-wrap .aq-blog-icon {
    color: #d4af37;
    margin-right: 5px;
}

.aq-blog-page-wrap .aq-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.aq-blog-page-wrap .aq-blog-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.aq-blog-page-wrap .aq-blog-title a:hover {
    color: #d4af37 !important;
}

.aq-blog-page-wrap .aq-blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.aq-blog-page-wrap .aq-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.aq-blog-page-wrap .aq-blog-read-more:hover {
    color: #000 !important;
}

.aq-blog-page-wrap .aq-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.aq-blog-page-wrap .aq-pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.aq-blog-page-wrap .aq-pagination a.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.aq-blog-page-wrap .aq-pagination a:not(.active):hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Awards Page Styles */
.aq-awards-page-wrap .aq-awards-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.aq-awards-page-wrap .aq-awards-title-sm {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.aq-awards-page-wrap .aq-awards-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

.aq-awards-page-wrap .aq-awards-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.aq-awards-page-wrap .aq-awards-promise-box {
    background: #fcfbf9;
    padding: 30px;
    border-left: 4px solid #d4af37;
    border-radius: 0 10px 10px 0;
    margin-top: 40px;
}

.aq-awards-page-wrap .aq-awards-promise-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.aq-awards-page-wrap .aq-awards-promise-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.aq-awards-page-wrap .aq-awards-image-wrap {
    position: relative;
    z-index: 1;
}

.aq-awards-page-wrap .aq-awards-img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.aq-awards-page-wrap .aq-awards-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.aq-awards-page-wrap .aq-awards-icon {
    font-size: 45px;
    color: #d4af37;
}

.aq-awards-page-wrap .aq-awards-rank {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #000;
}

.aq-awards-page-wrap .aq-awards-label {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aq-awards-page-wrap .aq-awards-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #d4af37 10%, transparent 10%);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: -1;
}

/* Recycling Pledge Page */
.aq-recycling-page-wrap .aq-recycling-section {
    padding: 100px 0;
    background-color: #C98F9D;
    position: relative;
}

.aq-recycling-page-wrap .aq-recycling-title-sm {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.aq-recycling-page-wrap .aq-recycling-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

.aq-recycling-page-wrap .aq-section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.aq-recycling-page-wrap .aq-recycling-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.aq-recycling-page-wrap .aq-recycling-expert-btn {
    background: #4a8b51;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(74, 139, 81, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.aq-recycling-page-wrap .aq-recycling-expert-btn:hover {
    background: #3a6d3f;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(74, 139, 81, 0.3);
}

/* Expert Modal Styles */
.aq-recycling-modal-wrap .aq-expert-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.aq-recycling-modal-wrap .aq-expert-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
    filter: invert(1);
    transition: all 0.3s ease;
}

.aq-recycling-modal-wrap .aq-expert-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.aq-recycling-modal-wrap .aq-expert-modal-header {
    background: linear-gradient(135deg, #4a8b51 0%, #2e5932 100%);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    position: relative;
}

.aq-recycling-modal-wrap .aq-expert-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.aq-recycling-modal-wrap .aq-expert-modal-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.aq-recycling-modal-wrap .aq-expert-modal-body {
    padding: 40px 30px;
    background: #fff;
}

.aq-recycling-modal-wrap .aq-expert-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.aq-recycling-modal-wrap .aq-expert-input-wrapper {
    position: relative;
}

.aq-recycling-modal-wrap .aq-expert-input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
}

.aq-recycling-modal-wrap .aq-textarea-wrapper i {
    top: 20px;
    transform: none;
}

.aq-recycling-modal-wrap .aq-expert-input,
.aq-recycling-modal-wrap .aq-expert-textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fdfdfd;
    padding: 12px 15px 12px 45px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.aq-recycling-modal-wrap .aq-expert-input:focus,
.aq-recycling-modal-wrap .aq-expert-textarea:focus {
    border-color: #4a8b51;
    box-shadow: 0 0 0 4px rgba(74, 139, 81, 0.1);
    outline: none;
    background: #fff;
}

.aq-recycling-modal-wrap .aq-expert-submit-btn {
    width: 100%;
    background: #4a8b51;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.aq-recycling-modal-wrap .aq-expert-submit-btn:hover {
    background: #3a6d3f;
    box-shadow: 0 5px 15px rgba(74, 139, 81, 0.3);
}


/* Reduce Expert Modal Size */
.aq-recycling-modal-wrap .modal-dialog {
    max-width: 450px;
    margin: 1.75rem auto;
}

/* Engraving Gallery Page */
.aq-engraving-page-wrap .aq-engraving-intro-section {
    padding: 100px 0 80px;
    background-color: #C98F9D;
}

.aq-engraving-page-wrap .aq-engraving-title-sm {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.aq-engraving-page-wrap .aq-engraving-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

.aq-engraving-page-wrap .aq-section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.aq-engraving-page-wrap .aq-engraving-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.aq-engraving-page-wrap .aq-engraving-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.aq-engraving-page-wrap .aq-engraving-btn:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.aq-engraving-page-wrap .aq-engraving-gallery-section {
    padding: 80px 0 100px;
}

.aq-engraving-page-wrap .aq-engraving-card,
.aq-personalised-page-wrap .aq-engraving-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.aq-engraving-page-wrap .aq-engraving-card:hover,
.aq-personalised-page-wrap .aq-engraving-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.aq-engraving-page-wrap .aq-engraving-img-wrap,
.aq-personalised-page-wrap .aq-engraving-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #f8f8f8;
}

.aq-engraving-page-wrap .aq-engraving-img-wrap::after,
.aq-personalised-page-wrap .aq-engraving-img-wrap::after {
    display: none;
}

.aq-engraving-page-wrap .aq-engraving-img-wrap,
.aq-personalised-page-wrap .aq-engraving-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.aq-engraving-page-wrap .aq-engraving-card:hover,
.aq-personalised-page-wrap .aq-engraving-card:hover .aq-engraving-img-wrap img {
    transform: scale(1.05);
}

.aq-engraving-page-wrap .aq-engraving-overlay,
.aq-personalised-page-wrap .aq-engraving-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.aq-engraving-page-wrap .aq-engraving-card:hover,
.aq-personalised-page-wrap .aq-engraving-card:hover .aq-engraving-overlay {
    opacity: 1;
}

.aq-engraving-page-wrap .aq-engraving-overlay,
.aq-personalised-page-wrap .aq-engraving-overlay i {
    color: #fff;
    font-size: 30px;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.aq-engraving-page-wrap .aq-engraving-card:hover,
.aq-personalised-page-wrap .aq-engraving-card:hover .aq-engraving-overlay i {
    transform: scale(1);
}

.aq-engraving-page-wrap .aq-engraving-content,
.aq-personalised-page-wrap .aq-engraving-content {
    padding: 15px 0 0 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.aq-engraving-page-wrap .aq-engraving-card-title,
.aq-personalised-page-wrap .aq-engraving-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.aq-engraving-page-wrap .aq-engraving-card:hover,
.aq-personalised-page-wrap .aq-engraving-card:hover .aq-engraving-card-title {
    color: #000;
}

.aq-engraving-page-wrap .aq-engraving-card-desc,
.aq-personalised-page-wrap .aq-engraving-card-desc {
    display: none;
}

/* Boxy details alignment */
.aq-engraving-page-wrap .aq-engraving-card-details,
.aq-personalised-page-wrap .aq-engraving-card-details {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.aq-engraving-page-wrap .aq-engraving-price,
.aq-personalised-page-wrap .aq-engraving-price {
    font-size: 15px;
    font-weight: 600;
    color: #555;
}

.aq-engraving-page-wrap .aq-engraving-moq,
.aq-personalised-page-wrap .aq-engraving-moq {
    font-size: 13px;
    color: #888;
}

.aq-engraving-page-wrap .aq-engraving-btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #000;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aq-engraving-page-wrap .aq-engraving-btn-outline:hover {
    background: #000;
    color: #fff;
}

.aq-engraving-page-wrap .aq-engraving-cta-section {
    padding: 0 0 100px;
}

.aq-engraving-page-wrap .aq-engraving-cta-box {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    padding: 60px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.aq-engraving-page-wrap .aq-engraving-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.aq-engraving-page-wrap .aq-engraving-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.aq-engraving-page-wrap .aq-engraving-btn-solid {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.aq-engraving-page-wrap .aq-engraving-btn-solid:hover {
    background: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .aq-engraving-page-wrap .aq-engraving-cta-box {
        padding: 40px 30px;
    }

    .aq-engraving-page-wrap .aq-engraving-cta-title {
        font-size: 28px;
    }
}

/* Personalised Engraving Page */
.aq-personalised-page-wrap {
    background-color: #C98F9D;
}

/* Intro */
.aq-personalised-page-wrap .aq-personalised-intro-section {
    padding: 100px 0 80px;
}

.aq-personalised-page-wrap .aq-personalised-title-sm {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.aq-personalised-page-wrap .aq-personalised-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

.aq-personalised-page-wrap .aq-section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.aq-personalised-page-wrap .aq-personalised-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.aq-personalised-page-wrap .aq-personalised-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.aq-personalised-page-wrap .aq-personalised-btn:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.aq-personalised-page-wrap .aq-personalised-why-box {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.aq-personalised-page-wrap .aq-personalised-why-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.aq-personalised-page-wrap .aq-personalised-why-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Works */
.aq-personalised-page-wrap .aq-personalised-works-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.aq-personalised-page-wrap .aq-personalised-empty-state {
    padding: 60px 40px;
    background: #C98F9D;
    border-radius: 20px;
    border: 2px dashed #eaeaea;
    margin-top: 40px;
}

.aq-personalised-page-wrap .aq-personalised-empty-icon {
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 25px;
    opacity: 0.8;
}

.aq-personalised-page-wrap .aq-personalised-empty-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.aq-personalised-page-wrap .aq-personalised-empty-desc {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.aq-personalised-page-wrap .aq-personalised-btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #000;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aq-personalised-page-wrap .aq-personalised-btn-outline:hover {
    background: #000;
    color: #fff;
}

/* Process */
.aq-personalised-page-wrap .aq-personalised-process-section {
    padding: 100px 0;
}

.aq-personalised-page-wrap .aq-personalised-step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1;
}

.aq-personalised-page-wrap .aq-personalised-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.aq-personalised-page-wrap .aq-step-number {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.aq-personalised-page-wrap .aq-personalised-step-card:hover .aq-step-number {
    background: #d4af37;
    color: #fff;
}

.aq-personalised-page-wrap .aq-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.aq-personalised-page-wrap .aq-step-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}


/* Timeline Process Styling */
.aq-personalised-page-wrap .aq-timeline-wrapper {
    position: relative;
    padding-left: 40px;
}

.aq-personalised-page-wrap .aq-timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 19px;
    height: 100%;
    width: 2px;
    background-color: #f4a261;
}

.aq-personalised-page-wrap .aq-timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.aq-personalised-page-wrap .aq-timeline-item:last-child {
    margin-bottom: 0;
}

.aq-personalised-page-wrap .aq-timeline-icon {
    position: absolute;
    left: -40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
}

.aq-personalised-page-wrap .aq-timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    width: 100%;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.aq-personalised-page-wrap .aq-timeline-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.aq-personalised-page-wrap .aq-timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.aq-personalised-page-wrap .aq-timeline-desc {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .aq-personalised-page-wrap .aq-timeline-wrapper {
        padding-left: 30px;
    }

    .aq-personalised-page-wrap .aq-timeline-wrapper::before {
        left: 14px;
    }

    .aq-personalised-page-wrap .aq-timeline-icon {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .aq-personalised-page-wrap .aq-timeline-content {
        padding: 20px;
        margin-left: 15px;
    }

    .aq-personalised-page-wrap .aq-timeline-title {
        font-size: 18px;
    }
}

\n

/* Creative Styles for Blog Details Page */
.aq-blog-details-parent-wrapper {
    padding: 80px 0;
    background-color: #C98F9D;
}

.aq-blog-details-parent-wrapper .aq-blog-content-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 49, 8, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.aq-blog-details-parent-wrapper .aq-blog-title {
    font-size: 36px;
    color: #C98F9D;
    margin-bottom: 20px;
    font-weight: 700;
}

.aq-blog-details-parent-wrapper .aq-blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 49, 8, 0.1);
    padding-bottom: 20px;
}

.aq-blog-details-parent-wrapper .aq-blog-meta span {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.aq-blog-details-parent-wrapper .aq-blog-meta span i {
    margin-right: 8px;
    color: #C98F9D;
}

.aq-blog-details-parent-wrapper .aq-blog-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.aq-blog-details-parent-wrapper .aq-blog-body h3 {
    font-size: 24px;
    color: #C98F9D;
    margin: 30px 0 15px;
}

.aq-blog-details-parent-wrapper .aq-blog-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.aq-blog-details-parent-wrapper .aq-blog-body ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

/* .aq-blog-details-parent-wrapper .aq-blog-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #C98F9D;
    border-radius: 50%;
} */

/* Creative Styles for FAQ Page */
.aq-faq-parent-wrapper {
    padding: 80px 0;
    background-color: #ffffff;
}

.aq-faq-parent-wrapper .aq-faq-main-title {
    font-size: 40px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 15px;
}

.aq-faq-parent-wrapper .aq-faq-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.aq-faq-parent-wrapper .aq-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aq-faq-parent-wrapper .aq-faq-item {
    background: #C98F9D;
    border: 1px solid rgba(0, 49, 8, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.aq-faq-parent-wrapper .aq-faq-item:hover {
    box-shadow: 0 10px 30px rgba(128, 0, 0, .08);
    transform: translateY(-5px);
}

.aq-faq-parent-wrapper .aq-faq-question {
    font-size: 20px;
    color: #C98F9D;
    font-weight: 600;
    margin-bottom: 15px;
}

.aq-faq-parent-wrapper .aq-faq-answer {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Creative Styles for Terms & Conditions Page */
.aq-terms-parent-wrapper {
    padding: 80px 0;
    /* background-color: #C98F9D; */
}

.aq-terms-parent-wrapper .aq-terms-content-wrapper {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    border-left: 5px solid #C98F9D;
}

.aq-terms-parent-wrapper .aq-terms-title {
    font-size: 38px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 10px;
}

.aq-terms-parent-wrapper .aq-terms-update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.aq-terms-parent-wrapper .aq-terms-section {
    margin-bottom: 35px;
}

.aq-terms-parent-wrapper .aq-terms-subtitle {
    font-size: 22px;
    color: #222;
    font-weight: 600;
    margin-bottom: 15px;
}

.aq-terms-parent-wrapper .aq-terms-text {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}

\n

/* Creative Styles for Blog Details Page - 2 Column Layout */
.aq-blog-main-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 49, 8, 0.05);
}

.aq-blog-featured-img-wrap {
    margin: -40px -40px 30px -40px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.aq-blog-featured-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.aq-blog-main-content:hover .aq-blog-featured-img {
    transform: scale(1.03);
}

.aq-blog-sidebar {
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 49, 8, 0.05);
    /* position: sticky; */
    top: 100px;
}

.aq-sidebar-title {
    font-size: 22px;
    color: #C98F9D;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.aq-sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #C98F9D;
}

.aq-sidebar-blog-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aq-sidebar-blog-card {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.aq-sidebar-blog-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.aq-sidebar-blog-card:hover {
    transform: translateX(5px);
}

.aq-sidebar-blog-thumb-wrap {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.aq-sidebar-blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aq-sidebar-blog-info {
    display: flex;
    flex-direction: column;
}

.aq-sidebar-blog-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.aq-sidebar-blog-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.aq-sidebar-blog-title a {
    color: #222;
    transition: color 0.3s ease;
}

.aq-sidebar-blog-title a:hover {
    color: #C98F9D;
}

@media (max-width: 767px) {
    .aq-blog-main-content {
        padding: 20px 10px;
    }

    .aq-blog-featured-img-wrap {
        margin: -20px -20px 20px -20px;
    }

    .aq-blog-sidebar {
        padding: 20px;
    }
}

\n

/* Creative Styles for Membership Page */
.aq-membership-page-wrap {
    padding: 100px 0 120px !important;
    background-color: #fcfcfc;
    box-shadow: inset 0 20px 100px #C98F9D;
    position: relative;
    z-index: 1;
}

.aq-membership-page-wrap .aq-membership-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 15px;
    position: relative;
}

.aq-membership-page-wrap .aq-membership-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
    margin: 8px auto 0;
}

.aq-membership-page-wrap .aq-membership-title {
    font-size: 42px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 20px;
}

.aq-membership-page-wrap .aq-membership-desc {
    font-size: 18px;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Membership Cards */
.aq-membership-page-wrap .aq-membership-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 49, 8, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow: hidden;
}

/* Shadow effect tied to #C98F9D */
.aq-membership-page-wrap .aq-membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #C98F9D;
    border-color: rgba(212, 175, 55, 0.3);
}

.aq-membership-page-wrap .aq-membership-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf9 100%);
    z-index: -1;
}

.aq-membership-page-wrap .aq-membership-card-popular {
    border-color: #d4af37;
    box-shadow: 0 15px 40px #C98F9D;
    transform: scale(1.05);
    z-index: 2;
}

.aq-membership-page-wrap .aq-membership-card-popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.aq-membership-page-wrap .aq-membership-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #d4af37;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.aq-membership-page-wrap .aq-membership-card-inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.aq-membership-page-wrap .aq-membership-icon {
    width: 80px;
    height: 80px;
    background: #fdfbf9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #d4af37;
    box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.aq-membership-page-wrap .aq-membership-card:hover .aq-membership-icon {
    background: #d4af37;
    color: #ffffff;
}

.aq-membership-page-wrap .aq-membership-tier-name {
    font-size: 24px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 15px;
}

.aq-membership-page-wrap .aq-membership-price {
    margin-bottom: 20px;
}

.aq-membership-page-wrap .aq-membership-price .currency {
    font-size: 24px;
    color: #C98F9D;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
}

.aq-membership-page-wrap .aq-membership-price .amount {
    font-size: 48px;
    color: #C98F9D;
    font-weight: 800;
    line-height: 1;
}

.aq-membership-page-wrap .aq-membership-price .period {
    font-size: 16px;
    color: #777;
    font-weight: 500;
}

.aq-membership-page-wrap .aq-membership-tier-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.aq-membership-page-wrap .aq-membership-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
    flex-grow: 1;
}

.aq-membership-page-wrap .aq-membership-features li {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.aq-membership-page-wrap .aq-membership-features li i {
    color: #d4af37;
    font-size: 14px;
    margin-top: 4px;
}

.aq-membership-page-wrap .aq-membership-features li.disabled {
    color: #999;
}

.aq-membership-page-wrap .aq-membership-features li.disabled i {
    color: #ccc;
}

.aq-membership-page-wrap .aq-membership-btn {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.aq-membership-page-wrap .aq-membership-btn-outline {
    background: transparent;
    color: #C98F9D;
    border: 2px solid #C98F9D;
}

.aq-membership-page-wrap .aq-membership-btn-outline:hover {
    background: #C98F9D;
    color: #ffffff;
}

.aq-membership-page-wrap .aq-membership-btn-solid {
    background: #C98F9D;
    color: #ffffff;
    border: 2px solid #C98F9D;
}

.aq-membership-page-wrap .aq-membership-btn-solid:hover {
    background: #d4af37;
    border-color: #d4af37;
}

@media (max-width: 1199px) {
    .aq-membership-page-wrap .aq-membership-card-popular {
        transform: none;
    }

    .aq-membership-page-wrap .aq-membership-card-popular:hover {
        transform: translateY(-10px);
    }
}

.aq-membership-page .aq-catpage-hero {
    height: auto;
    min-height: 300px;
    padding-top: 130px;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    .aq-membership-page .aq-catpage-hero {
        height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
}

\n
/* ==========================================================================
   Bulk & Vendor Pages Luxury Styles 
   ========================================================================== */

.aq-luxury-page-wrap {
    background-color: #fdfcfb;
    box-shadow: inset 0 20px 100px #C98F9D;
    position: relative;
    z-index: 1;
}

.aq-luxury-page-wrap .aq-luxury-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 15px;
    position: relative;
}

.aq-luxury-page-wrap .aq-luxury-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
    margin: 8px 0 0;
}

.aq-luxury-page-wrap .text-center .aq-luxury-subtitle::after {
    margin: 8px auto 0;
}

.aq-luxury-page-wrap .aq-luxury-title {
    font-size: 38px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.aq-luxury-page-wrap .aq-luxury-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

/* Luxury Form Design */
.aq-luxury-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 49, 8, 0.05);
    border: 1px solid rgba(0, 49, 8, 0.05);
}

.aq-luxury-form-wrapper .form-title {
    font-size: 28px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 10px;
}

.aq-luxury-form-wrapper .form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.aq-luxury-form .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.aq-luxury-form .form-control {
    background: #fdfcfb;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
}

.aq-luxury-form .form-control:focus {
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Contact Info Side Panel */
.aq-luxury-contact-info {
    margin-top: 40px;
}

.aq-luxury-contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.aq-luxury-contact-info .info-item i {
    width: 50px;
    height: 50px;
    background: #C98F9D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 20px;
}

.aq-luxury-contact-info .info-item h6 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #C98F9D;
}

.aq-luxury-contact-info .info-item p {
    margin: 0;
    color: #555;
}

/* Vendor Page Specifics */
.aq-vendor-feature-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 49, 8, 0.05);
    border-bottom: 3px solid #d4af37;
    height: 100%;
    transition: transform 0.3s ease;
}

.aq-vendor-feature-box:hover {
    transform: translateY(-5px);
}

.aq-vendor-feature-box .icon-wrap {
    width: 70px;
    height: 70px;
    background: #fdfcfb;
    color: #d4af37;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.aq-vendor-feature-box h4 {
    font-size: 20px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 15px;
}

.aq-vendor-feature-box p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

/* Vendor Capabilities List */
.aq-luxury-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aq-luxury-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.aq-luxury-list li i {
    color: #d4af37;
    font-size: 22px;
    margin-top: 4px;
    margin-right: 15px;
}

.aq-luxury-list li h5 {
    font-size: 18px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 5px;
}

.aq-luxury-list li p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

/* Process Steps */
.aq-vendor-process-wrapper {
    background: #C98F9D;
    border-radius: 20px;
    padding: 50px 40px;
    color: #ffffff;
}

.aq-vendor-process-wrapper .aq-luxury-title {
    color: #ffffff;
}

.aq-vendor-process-wrapper p {
    color: rgba(255, 255, 255, 0.8);
}

.aq-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.aq-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -20px;
    width: 2px;
    background: rgba(212, 175, 55, 0.3);
}

.aq-process-step .step-num {
    width: 42px;
    height: 42px;
    background: #d4af37;
    color: #C98F9D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.aq-process-step .step-content h5 {
    color: #d4af37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.aq-process-step .step-content p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Custom Hero Fix for these pages */
/* .aq-bulk-page .aq-catpage-hero,
.aq-vendor-page .aq-catpage-hero {
    height: auto;
    min-height: 300px;
    padding-top: 130px;
    padding-bottom: 50px;
} */

/* @media (max-width: 768px) {

    .aq-bulk-page .aq-catpage-hero,
    .aq-vendor-page .aq-catpage-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }
} */


.aq-engraving-page-wrap .aq-engraving-card-details,
.aq-personalised-page-wrap .aq-engraving-card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 49, 8, 0.15);
    margin-top: auto;
}

.aq-engraving-page-wrap .aq-engraving-price,
.aq-personalised-page-wrap .aq-engraving-price {
    font-size: 22px;
    font-weight: 800;
    color: #C98F9D;
    display: flex;
    align-items: center;
}

.aq-engraving-page-wrap .aq-engraving-price::before,
.aq-personalised-page-wrap .aq-engraving-price::before {
    content: 'Starting at';
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 8px;
    margin-top: 4px;
}

.aq-engraving-page-wrap .aq-engraving-moq,
.aq-personalised-page-wrap .aq-engraving-moq {
    font-size: 12px;
    color: #d4af37;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ========================================= */
/* RECYCLING PLEDGE PAGE STYLES */
/* ========================================= */
.aq-recycling-page-wrap {
    background: #fdfcfb;
    position: relative;
}

/* Team Section */
.aq-recycling-page-wrap .aq-recycling-team-section {
    position: relative;
    z-index: 1;
}

.aq-recycling-page-wrap .aq-recycling-team-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 49, 8, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.aq-recycling-page-wrap .aq-team-since {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.aq-recycling-page-wrap .aq-team-name {
    font-size: 28px;
    color: #C98F9D;
    font-weight: 800;
    margin-bottom: 20px;
}

.aq-recycling-page-wrap .aq-team-icon {
    font-size: 30px;
    margin-bottom: 20px;
    animation: floatGift 3s ease-in-out infinite;
}

@keyframes floatGift {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.aq-recycling-page-wrap .aq-team-tagline {
    font-size: 18px;
    color: #d4af37;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Pledge Section */
.aq-recycling-page-wrap .aq-pledge-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 49, 8, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
}

.aq-recycling-page-wrap .aq-pledge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 49, 8, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.aq-recycling-page-wrap .aq-pledge-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 49, 8, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #C98F9D;
    font-size: 24px;
    transition: all 0.4s ease;
}

.aq-recycling-page-wrap .aq-pledge-card:hover .aq-pledge-icon {
    background: #C98F9D;
    color: #d4af37;
    transform: scale(1.1);
}

.aq-recycling-page-wrap .aq-pledge-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Sustainability Section */
.aq-recycling-page-wrap .aq-sustainability-section {
    background: #C98F9D;
    position: relative;
    overflow: hidden;
}

.aq-recycling-page-wrap .aq-sus-title-sm {
    color: #d4af37;
}

.aq-recycling-page-wrap .aq-sus-main-title {
    color: #ffffff;
}

.aq-recycling-page-wrap .aq-sus-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.aq-recycling-page-wrap .aq-sus-btn {
    display: inline-block;
    padding: 16px 45px;
    background: #d4af37;
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.aq-recycling-page-wrap .aq-sus-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.aq-recycling-page-wrap .aq-sustainability-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.aq-recycling-page-wrap .aq-sus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aq-recycling-page-wrap .aq-sus-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 20px 100px #C98F9D;
    pointer-events: none;
}


/* Intro Section */
.aq-recycling-page-wrap .aq-recycling-intro-section {
    position: relative;
    z-index: 1;
}

.aq-recycling-page-wrap .aq-recycling-intro-subtitle {
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.aq-recycling-page-wrap .aq-recycling-intro-title {
    font-size: 48px;
    color: #C98F9D;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.aq-recycling-page-wrap .aq-recycling-intro-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.aq-recycling-page-wrap .aq-recycling-expert-btn {
    display: inline-block;
    padding: 16px 45px;
    background: #C98F9D;
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.aq-recycling-page-wrap .aq-recycling-expert-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.aq-recycling-page-wrap .aq-recycling-expert-btn:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.aq-recycling-page-wrap .aq-recycling-expert-btn:hover i {
    transform: translateX(5px);
}


/* ========================================= */
/* NEW LUXURY RECYCLING PLEDGE PAGE STYLES */
/* ========================================= */

/* Luxury Intro & Team Overlap Section */
.aq-recycling-page-wrap .aq-recycling-intro-luxury {
    background: #fdfcfb;
    position: relative;
    overflow: hidden;
}

.aq-recycling-page-wrap .aq-recycling-intro-content {
    position: relative;
    z-index: 2;
}

.aq-recycling-page-wrap .aq-recycling-team-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(128, 0, 0, .08);
    position: relative;
    z-index: 2;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transform: translateY(-20px);
}

.aq-recycling-page-wrap .aq-team-card-inner {
    position: relative;
    z-index: 3;
}

.aq-recycling-page-wrap .aq-team-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: floatGift 3s ease-in-out infinite;
}

.aq-recycling-page-wrap .aq-team-card-since {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.aq-recycling-page-wrap .aq-team-card-name {
    font-size: 26px;
    color: #C98F9D;
    font-weight: 800;
    margin-bottom: 10px;
}

.aq-recycling-page-wrap .aq-team-card-tagline {
    font-size: 16px;
    color: #d4af37;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Decorative background elements for Team Card */
.aq-recycling-page-wrap .aq-team-card-decor-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    z-index: 1;
}

.aq-recycling-page-wrap .aq-team-card-decor-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(0, 49, 8, 0.03);
    z-index: 1;
}

/* Pledge List / Timeline Section */
.aq-recycling-page-wrap .aq-pledge-list-section {
    background: #ffffff;
    position: relative;
    border-top: 1px solid rgba(0, 49, 8, 0.05);
}

.aq-recycling-page-wrap .aq-pledge-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.aq-recycling-page-wrap .aq-pledge-list-item {
    background: #fdfcfb;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.aq-recycling-page-wrap .aq-pledge-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 49, 8, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
    background: #ffffff;
}

.aq-recycling-page-wrap .aq-pledge-list-num {
    font-size: 32px;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
    font-family: serif;
    opacity: 0.8;
}

.aq-recycling-page-wrap .aq-pledge-list-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}


.aq-bulk-submit-btn {
    background: #C98F9D;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.aq-bulk-submit-btn:hover {
    background: #d4af37;
    color: #000000;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}


/* ========================================= */
/* VENDOR REGISTRATION PAGE STYLES */
/* ========================================= */

.aq-vendor-page-wrap {
    background: #fdfcfb;
}

/* Vendor Intro Cards */
.aq-vendor-card-lux {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 49, 8, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    transition: all 0.4s ease;
}

.aq-vendor-card-lux:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 49, 8, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.aq-vendor-card-lux .icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(0, 49, 8, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #C98F9D;
    font-size: 24px;
    transition: all 0.4s ease;
}

.aq-vendor-card-lux:hover .icon-wrap {
    background: #C98F9D;
    color: #d4af37;
    transform: scale(1.1);
}

.aq-vendor-card-lux h4 {
    font-size: 18px;
    color: #C98F9D;
    font-weight: 700;
    margin-bottom: 15px;
}

.aq-vendor-card-lux p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Vendor Expertise List (Dark Mode) */
.aq-vendor-list-dark {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aq-vendor-list-dark li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.aq-vendor-list-dark .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 20px;
    flex-shrink: 0;
}

.aq-vendor-list-dark h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.aq-vendor-list-dark p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Vendor Timeline */
.aq-vendor-timeline-lux {
    position: relative;
    padding-left: 30px;
    border-left: 2px dashed rgba(255, 255, 255, 0.2);
}

.timeline-step-lux {
    position: relative;
    margin-bottom: 40px;
}

.timeline-step-lux:last-child {
    margin-bottom: 0;
}

.timeline-step-lux .step-num {
    position: absolute;
    left: -52px;
    top: 0;
    width: 44px;
    height: 44px;
    background: #C98F9D;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 0 0 5px rgba(0, 49, 8, 1);
}

.timeline-step-lux .step-info h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.timeline-step-lux .step-info p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Vendor Form Container */
.aq-vendor-form-container {
    box-shadow: 0 25px 60px rgba(128, 0, 0, .08);
    padding: 60px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}


/* Awards Gallery Section */
.aq-gallery-card-luxury {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 49, 8, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.aq-gallery-card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 49, 8, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.aq-gallery-img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.aq-gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.aq-gallery-card-luxury:hover .aq-gallery-img-box img {
    transform: scale(1.1);
}

.aq-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 49, 8, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.aq-gallery-card-luxury:hover .aq-gallery-overlay {
    opacity: 1;
}

.aq-gallery-overlay i {
    color: #fff;
    font-size: 32px;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.aq-gallery-card-luxury:hover .aq-gallery-overlay i {
    transform: scale(1);
}

.aq-gallery-content {
    padding: 24px;
    text-align: center;
    background: #fff;
}

.aq-gallery-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.aq-gallery-date {
    font-size: 14px;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   Awards CTA Section
========================================= */
.aq-awards-cta-section {
    position: relative;
    background-color: #ffffff;
}

.aq-awards-cta-section .aq-awards-cta-wrapper {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 80px 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 49, 8, 0.05);
}

.aq-awards-cta-section .aq-awards-cta-shape-1,
.aq-awards-cta-section .aq-awards-cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    z-index: 1;
}

.aq-awards-cta-section .aq-awards-cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.aq-awards-cta-section .aq-awards-cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.aq-awards-cta-section .row {
    position: relative;
    z-index: 2;
}

.aq-awards-cta-section .aq-awards-cta-title {
    color: #111111;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.aq-awards-cta-section .aq-awards-cta-desc {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.aq-awards-cta-section .aq-awards-cta-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.aq-awards-cta-section .aq-awards-cta-btn {
    padding: 15px 35px !important;
    border-radius: 8px !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.aq-awards-cta-section .aq-awards-cta-btn-outline {
    padding: 15px 35px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111111;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    transition: all 0.3s ease;
}

.aq-awards-cta-section .aq-awards-cta-btn-outline:hover {
    background: rgba(212, 175, 55, 1);
    border-color: rgba(212, 175, 55, 1);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .aq-awards-cta-section .aq-awards-cta-wrapper {
        padding: 50px 20px;
    }

    .aq-awards-cta-section .aq-awards-cta-title {
        font-size: 28px;
    }

    .aq-awards-cta-section .aq-awards-cta-btn-wrap {
        flex-direction: column;
        gap: 15px;
    }

    .aq-awards-cta-section .aq-awards-cta-btn,
    .aq-awards-cta-section .aq-awards-cta-btn-outline {
        width: 100%;
        margin-right: 0;
    }
}

/* ==========================================================================
   OUDHYANA CHIKANKARI - LUXURY WEB THEME
   ========================================================================== */

/* Poppins & Roboto Google Fonts Imports with Luxury Serif and Classical Accents */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Marcellus&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* Luxury Chikankari Design Variables */
:root {
    --aq-color-maroon: #C98F9D;
    /* Elegant Onion Pink / Dusty Rose Accent */
    --aq-color-black: #5A3E36;
    /* Cocoa Brown Typography */
    --aq-color-white: #ffffff;
    --aq-color-cream: #F8F2E9;
    /* Warm Creamish Heritage Background */
    --aq-color-cream-dark: #EFE7DC;
    /* Rich warm-white border color */
    --aq-color-pink-light: #FAF5EE;
    /* Transparent Soft Pink Backgrounds */
    --aq-color-gold: #C6A769;
    /* Antique Gold Highlights */
    --aq-color-gold-light: #FAF2E6;
    /* Subtle Soft Gold accent */
    --aq-color-cocoa-dark: #3E2923;
    /* Deeper Cocoa Brown for royal grounding */

    --aq-ff-body: 'Montserrat', sans-serif;
    --aq-ff-heading: 'Cormorant Garamond', Georgia, serif;
    --aq-ff-p: 'Montserrat', sans-serif;
    --aq-ff-satoshi-light: 'Montserrat', sans-serif;
    --aq-ff-satoshi-regular: 'Montserrat', sans-serif;
    --aq-ff-satoshi-medium: 'Montserrat', sans-serif;
    --aq-ff-satoshi-bold: 'Montserrat', sans-serif;
    --aq-ff-onest: 'Montserrat', sans-serif;
    --aq-ff-libre: 'Cormorant Garamond', Georgia, serif;
    --aq-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --aq-footer-bg: #3E2923;
    /* Grounded Dark Cocoa Footer for luxurious contrast */
}

/* Custom Selection Override */
::selection {
    background-color: var(--aq-color-maroon);
    color: var(--aq-color-white);
}

body {
    font-family: var(--aq-ff-body) !important;
    background-color: var(--aq-color-cream) !important;
    color: var(--aq-color-black) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--aq-ff-heading) !important;
    font-weight: 500;
    color: var(--aq-color-maroon);
    letter-spacing: .5px;
}

p {
    font-family: var(--aq-ff-body) !important;
    color: #725D56;
    /* Soft Cocoa secondary typography */
    line-height: 1.8;
}

/* Elegant Theme Buttons */
.aq-btn-black {
    border-radius: 50px !important;
    padding: 14px 18px !important;
    text-transform: uppercase;
    font-family: 'Marcellus', serif !important;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 13px;
    transition: var(--aq-transition) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--aq-color-black) !important;
    background-color: var(--aq-color-black) !important;
    color: var(--aq-color-white) !important;
    box-shadow: 0 4px 15px rgba(90, 62, 54, 0.15);
}

.aq-btn-black:hover {
    background-color: var(--aq-color-white) !important;
    border-color: var(--aq-color-maroon) !important;
    color: var(--aq-color-maroon) !important;
    box-shadow: 0 4px 15px rgba(201, 143, 157, 0.25);
}

.aq-btn-black.btn-red-bg {
    background-color: var(--aq-color-maroon) !important;
    border-color: var(--aq-color-maroon) !important;
}

.aq-btn-black.btn-red-bg:hover {
    background-color: var(--aq-color-white) !important;
    color: var(--aq-color-maroon) !important;
    border-color: var(--aq-color-maroon) !important;
}

/* Inline SVG Vector Logo Styles */
.oudhyana-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
    transition: var(--aq-transition);
}

.oudhyana-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aq-color-gold);
    transition: var(--aq-transition);
}

.oudhyana-logo-wrap:hover .oudhyana-logo-icon {
    transform: rotate(12deg) scale(1.05);
}

.oudhyana-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.oudhyana-logo-text .brand-name {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--aq-color-maroon);
    line-height: 0.95;
    transition: var(--aq-transition);
}

.oudhyana-logo-text .brand-sub {
    font-family: 'Marcellus', serif !important;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 7px;
    color: var(--aq-color-maroon);
    margin-top: 4px;
    line-height: 1;
    transition: var(--aq-transition);
}

.aq-wishlist-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--aq-color-maroon);
}

/* ====================================================
   Address Page (.aq-address-page)
==================================================== */
.aq-address-page {
    font-family: 'Inter', sans-serif;
}

.aq-address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.aq-address-card {
    background: #fff;
    border: 1px solid rgba(201, 143, 157, 0.15);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.aq-address-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(201, 143, 157, 0.4);
}

.aq-address-card.default-address {
    border-color: var(--aq-color-maroon);
    background: linear-gradient(135deg, rgba(201, 143, 157, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.aq-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.aq-address-type {
    font-weight: 600;
    font-size: 14px;
    color: var(--aq-color-maroon);
    background: rgba(201, 143, 157, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aq-address-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: #222;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}

.aq-address-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.aq-address-details {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.aq-address-phone {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    margin-bottom: 20px;
}

.aq-address-actions {
    display: flex;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.aq-btn-action {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: 0.3s;
}

.aq-btn-action:hover {
    color: var(--aq-color-maroon);
}

.aq-btn-action.text-danger:hover {
    color: #ff4757 !important;
}

.aq-set-default {
    margin-left: auto;
    font-size: 13px;
    color: var(--aq-color-maroon);
}

/* Add New Address Card */
.aq-address-add-card {
    border: 2px dashed rgba(201, 143, 157, 0.4);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    min-height: 250px;
}

.aq-address-add-card:hover {
    background: rgba(201, 143, 157, 0.05);
    border-color: var(--aq-color-maroon);
}

.aq-add-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 143, 157, 0.1);
    color: var(--aq-color-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.aq-address-add-card:hover .aq-add-icon {
    background: var(--aq-color-maroon);
    color: #fff;
    transform: scale(1.1);
}

.aq-address-add-card h5 {
    font-family: 'Outfit', sans-serif;
    color: #333;
    font-weight: 600;
}

/* Logo Dark background variants */
.bg-dark-logo .brand-name {
    color: var(--aq-color-cream) !important;
}

.bg-dark-logo .brand-sub {
    color: var(--aq-color-gold) !important;
}

/* Delicate hand-embroidered Chikankari floral creeper background pattern */
.chikankari-mesh-bg {
    background-color: var(--aq-color-cream) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M60 10 C60 10, 68 25, 60 40 C52 25, 60 10, 60 10 Z' stroke='%23C6A769' stroke-width='0.5' opacity='0.08'/%3E%3Cpath d='M60 40 C60 40, 65 48, 60 55 C55 48, 60 40, 60 40 Z' stroke='%23C98F9D' stroke-width='0.5' opacity='0.08'/%3E%3Ccircle cx='60' cy='10' r='1.5' fill='%23C6A769' opacity='0.08'/%3E%3Cpath d='M30 60 C30 60, 38 75, 30 90 C22 75, 30 60, 30 60 Z' stroke='%23C6A769' stroke-width='0.5' opacity='0.08'/%3E%3Ccircle cx='30' cy='60' r='1.5' fill='%23C6A769' opacity='0.08'/%3E%3Cpath d='M90 60 C90 60, 98 75, 90 90 C82 75, 90 60, 90 60 Z' stroke='%23C6A769' stroke-width='0.5' opacity='0.08'/%3E%3Ccircle cx='90' cy='60' r='1.5' fill='%23C6A769' opacity='0.08'/%3E%3Cpath d='M0 60 C30 60, 30 120, 60 120 C90 120, 90 60, 120 60' stroke='%23C98F9D' stroke-width='0.4' stroke-dasharray='1,2' opacity='0.06'/%3E%3Cpath d='M0 120 C30 120, 30 60, 60 60 C90 60, 90 0, 120 0' stroke='%23C98F9D' stroke-width='0.4' stroke-dasharray='1,2' opacity='0.06'/%3E%3C/svg%3E") !important;
}

/* Slider Section Rules */
.aqf-slider-item {
    position: relative;
    background-color: var(--aq-color-cream) !important;
}

.aqf-slider-btn-wrap {
    position: absolute !important;
    bottom: 50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100%;
    justify-content: center !important;
    z-index: 5;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .aq-btn-black {
        padding: 10px 24px !important;
        font-size: 12px;
    }

    .aqf-slider-btn-wrap {
        bottom: 30px !important;
        gap: 10px !important;
    }
}

/* Collection Cards */
.aqf-collection-item {
    background: var(--aq-color-white);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 32, 28, 0.04);
    transition: var(--aq-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
}

.aqf-collection-item:hover {
    box-shadow: 0 10px 25px rgba(44, 32, 28, 0.08);
    transform: translateY(-5px);
}

.aqf-collection-thumb {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.aqf-collection-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: var(--aq-transition);
    z-index: 1;
}

.aqf-collection-item:hover .aqf-collection-thumb::after {
    background: rgba(44, 32, 28, 0.3);
}

.aqf-collection-thumb img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.4, 0, .2, 1) !important;
}

.aqf-collection-item:hover .aqf-collection-thumb img {
    transform: scale(1.08) !important;
}

.aqf-collection-content-wrap {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(44, 32, 28, 0.9), transparent);
    border-radius: 0 0 12px 12px;
}

.aqf-collection-content span {
    color: var(--aq-color-pink-light) !important;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.aqf-collection-title a {
    color: var(--aq-color-white) !important;
    text-decoration: none;
    font-weight: 600;
}

.aqf-collection-title {
    margin-bottom: 4px;
    font-size: 20px;
}

.aqf-collection-link-wrap a {
    background-color: var(--aq-color-maroon);
    color: var(--aq-color-white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--aq-transition);
}

.aqf-collection-link-wrap a:hover {
    background-color: var(--aq-color-white);
    color: var(--aq-color-maroon) !important;
}

/* Reels & Videos */
.aqf-reel-item {
    background: var(--aq-color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 32, 28, 0.04);
    transition: var(--aq-transition);
    height: 450px;
    position: relative;
    cursor: pointer;
}

.aqf-reel-item:hover {
    box-shadow: 0 10px 25px rgba(44, 32, 28, 0.08);
    transform: translateY(-5px);
}

.aqf-reel-video {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.aqf-reel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aqf-reel-content-wrap {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(44, 32, 28, 0.8) 0%, rgba(44, 32, 28, 0.4) 50%, transparent 100%);
}

.aqf-reel-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aqf-reel-profile img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid var(--aq-color-white);
}

.aqf-reel-title {
    color: var(--aq-color-white) !important;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Lightbox Modal */
.aqf-video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s ease;
}

.aqf-video-lightbox.show {
    display: flex;
    opacity: 1;
}

.aqf-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 32, 28, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.aqf-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 80vh;
    z-index: 2;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(.9);
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.aqf-video-lightbox.show .aqf-lightbox-content {
    transform: scale(1);
}

.aqf-lightbox-video-wrapper {
    width: 100%;
    height: 100%;
}

.aqf-lightbox-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aqf-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: .3s;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aqf-lightbox-close:hover {
    background: #fff;
    color: #000;
    transform: rotate(90deg);
}

.aqf-lightbox-next,
.aqf-lightbox-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(5px);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aqf-lightbox-next:hover,
.aqf-lightbox-prev:hover {
    background: #fff;
    color: #000;
}

.aqf-lightbox-prev {
    left: 40px;
}

.aqf-lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .aqf-lightbox-content {
        max-width: 90%;
        height: 70vh;
    }

    .aqf-lightbox-prev {
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .aqf-lightbox-next {
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .aqf-lightbox-close {
        right: 15px;
        top: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Brand Grid Override */
.aqf-brand-area {
    position: relative;
    overflow: hidden;
    background-color: var(--aq-color-cream-dark) !important;
    padding: 80px 0;
}

.aq-brand-item {
    background: var(--aq-color-white);
    border: 1px solid var(--aq-color-cream-dark);
    border-radius: 15px;
    padding: 40px 20px;
    margin: 15px;
    text-align: center;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    opacity: .9;
    box-shadow: 0 5px 15px rgba(44, 32, 28, .03);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.aq-brand-item img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    transition: all .5s ease;
}

.aq-brand-item:hover {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(197, 108, 125, .12);
    border-color: rgba(197, 108, 125, .2);
}

.aqf-brand-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--aq-color-maroon) .5px, transparent .5px);
    background-size: 30px 30px;
    opacity: .03;
    pointer-events: none;
}

/* Category Slider overrides */
.aqf-categories-area {
    background-color: var(--aq-color-pink-light) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.aqf-cat-floating-shape {
    position: absolute;
    z-index: -1;
    opacity: .12;
    pointer-events: none;
    animation: cat-float 10s ease-in-out infinite;
    transition: all .5s ease;
}

.aqf-cat-shape-1 {
    left: -30px;
    width: 130px;
    color: var(--aq-color-maroon);
    bottom: 0;
}

.aqf-cat-shape-2 {
    right: -18px;
    width: 160px;
    color: var(--aq-color-maroon);
    animation-delay: -5s;
    top: 22px;
}

@keyframes cat-float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(30px, -20px) rotate(15deg);
    }
}

.aqf-categories-item {
    justify-content: center;
    transition: var(--aq-transition);
    padding: 0px 0px;
    /*background: transparent;*/
    display: flex;
}

.aqf-categories-img {
    width: 130px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
    /* border-radius: 50%; */
    background: var(--aq-color-white);
    box-shadow: 0 10px 25px rgba(44, 32, 28, 0.05);
    border: 5px solid var(--aq-color-white);
    transition: var(--aq-transition);
}

.aqf-categories-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.aqf-categories-item:hover .aqf-categories-img {
    box-shadow: 0 15px 35px rgba(197, 108, 125, 0.25);
    border-color: var(--aq-color-maroon);
    transform: translateY(-5px);
}

.aqf-categories-item:hover .aqf-categories-img img {
    transform: scale(1.1);
}

.aqf-categories-item span {
    display: block;
    font-weight: 500;
    color: var(--aq-color-maroon);
    font-size: 13px !important;
    transition: var(--aq-transition);
    margin-top: 0px;
    margin-bottom: 10px;
}

.aqf-categories-item:hover span {
    color: var(--aq-color-maroon);
}

.aqf-categories-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--aq-color-cream-dark);
    background: var(--aq-color-white);
    color: var(--aq-color-maroon);
    transition: var(--aq-transition);
    margin-left: 10px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.aqf-categories-nav button:hover {
    background: var(--aq-color-maroon);
    color: var(--aq-color-white);
    border-color: var(--aq-color-maroon);
    box-shadow: 0 5px 15px rgba(197, 108, 125, 0.3);
}

/* Sections Typography & Borders */
.aqf-section-title-6 {
    font-size: 32px;
    font-weight: 700;
    color: var(--aq-color-maroon);
    position: relative;
    padding-bottom: 15px;
}

.aqf-section-title-6::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--aq-color-maroon);
}

.aq-section-title {
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif !important;
    font-size: 38px;
}

.aq-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--aq-color-maroon);
}

/* Pastel Trust Cards */
.aqf-pastel-features-section {
    background-color: var(--aq-color-pink-light) !important;
    position: relative;
    z-index: 10;
}

.aqf-pastel-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 35px 28px;
    border-radius: 20px;
    height: 100%;
    border: 1.5px solid rgba(197, 108, 125, 0.08);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 32, 28, 0.01);
    background: var(--aq-color-white);
}

.aqf-pastel-card::before {
    content: '\2726';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 16px;
    opacity: .15;
    transition: all .5s cubic-bezier(.165, .84, .44, 1);
    transform: rotate(0);
    color: var(--aq-color-maroon);
}

.aqf-pastel-card:hover::before {
    opacity: .8;
    transform: rotate(180deg) scale(1.2);
}

.aqf-pastel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aq-color-maroon), #e29ba7);
    transition: width .4s cubic-bezier(.165, .84, .44, 1);
}

.aqf-pastel-card:hover::after {
    width: 100%;
}

.aqf-pastel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 108, 125, 0.25);
    box-shadow: 0 20px 40px rgba(197, 108, 125, 0.06);
}

.aqf-pastel-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    background-color: var(--aq-color-pink-light);
    color: var(--aq-color-maroon);
    box-shadow: 0 4px 10px rgba(197, 108, 125, 0.04);
}

.aqf-pastel-card:hover .aqf-pastel-icon {
    background-color: var(--aq-color-maroon);
    color: var(--aq-color-white);
    box-shadow: 0 8px 20px rgba(197, 108, 125, 0.2);
    transform: scale(1.08) rotate(-6deg);
}

.aqf-pastel-content {
    flex-grow: 1;
    padding-right: 10px;
}

.aqf-pastel-title {
    font-family: var(--aq-ff-heading) !important;
    font-size: 19px;
    font-weight: 700;
    color: var(--aq-color-maroon);
    margin-bottom: 8px;
    line-height: 1.2;
}

.aqf-pastel-desc {
    font-family: var(--aq-ff-body) !important;
    font-size: 14px;
    color: #6e5e59;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.aqf-why-us-section {
    position: relative;
    /* padding: 100px 0 50px; */
    background: var(--aq-color-white);
    overflow: hidden;
}

.aqf-why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--aq-color-maroon) .5px, transparent .5px);
    background-size: 28px 28px;
    opacity: .025;
    pointer-events: none;
}

.aqf-why-us-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--aq-color-cream-dark);
}

.aqf-why-us-title {
    font-size: 44px;
    color: var(--aq-color-maroon);
    line-height: 1.1;
    margin: 0;
    font-family: var(--aq-ff-heading) !important;
    font-weight: 700;
}

.aqf-why-us-title em {
    font-style: normal;
    color: var(--aq-color-maroon);
}

.aqf-why-us-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.aqf-why-us-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--aq-color-maroon), transparent);
    flex-shrink: 0;
    opacity: .4;
}

.aqf-why-us-subtitle {
    font-size: 16px;
    color: #6e5e59;
    line-height: 1.7;
    margin: 0;
    max-width: 450px;
}

.aqf-why-us-cards .aqf-why-card {
    background: var(--aq-color-white);
    border: 1px solid var(--aq-color-cream-dark);
    border-radius: 20px;
    padding: 36px 28px 32px;
    height: 100%;
    position: relative;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 32, 28, 0.02);
}

.aqf-why-us-cards .aqf-why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aq-color-maroon), #e29ba7);
    border-radius: 0 0 20px 20px;
    transition: width .4s ease;
}

.aqf-why-us-cards .aqf-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(197, 108, 125, 0.12);
    border-color: rgba(197, 108, 125, 0.2);
}

.aqf-why-us-cards .aqf-why-card:hover::after {
    width: 100%;
}

.aqf-why-card-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 42px;
    font-weight: 900;
    color: rgba(197, 108, 125, 0.06);
    line-height: 1;
    font-family: var(--aq-ff-heading) !important;
    pointer-events: none;
    user-select: none;
}

.aqf-why-card-icon {
    width: 64px;
    height: 64px;
    background: var(--aq-color-pink-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--aq-color-maroon);
    margin-bottom: 22px;
    transition: all .35s ease;
}

.aqf-why-card:hover .aqf-why-card-icon {
    background: var(--aq-color-maroon);
    color: var(--aq-color-white);
    transform: rotate(-6deg) scale(1.1);
    border-radius: 50%;
}

.aqf-why-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--aq-color-maroon);
    margin-bottom: 12px;
    font-family: var(--aq-ff-heading) !important;
}

.aqf-why-card-desc {
    font-size: 14.5px;
    color: #6e5e59;
    line-height: 1.7;
    margin: 0;
}

/* Tab Filtering Buttons */
.aq-product-tab-btn .nav-tab {
    border: none !important;
}

.aq-product-tab-btn .nav-links {
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    background: var(--aq-color-white) !important;
    color: #6e5e59 !important;
    margin-left: 12px !important;
    transition: all .3s cubic-bezier(.4, 0, .2, 1) !important;
    border: 1px solid var(--aq-color-cream-dark) !important;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.aq-product-tab-btn .nav-links.active {
    background: var(--aq-color-maroon) !important;
    color: var(--aq-color-white) !important;
    border-color: var(--aq-color-maroon) !important;
    box-shadow: 0 8px 20px rgba(197, 108, 125, 0.25) !important;
    transform: translateY(-2px);
}

.aq-product-tab-btn .nav-links:hover:not(.active) {
    background: var(--aq-color-cream-dark) !important;
    color: var(--aq-color-black) !important;
    border-color: var(--aq-color-cream-dark) !important;
    transform: translateY(-1px);
}

/* Premium Testimonials */
.aqf-testimonial-area-creative::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: var(--aq-color-pink-light);
    border: 1px solid var(--aq-color-cream-dark);
    border-radius: 50%;
    z-index: -1;
}

.aqf-testimonial-area-creative::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--aq-color-cream-dark);
    border: 1px solid var(--aq-color-cream-dark);
    border-radius: 50%;
    z-index: -1;
}

.aqf-testimonial-card-creative {
    background: var(--aq-color-maroon);
    border-radius: 30px;
    padding: 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    transition: var(--aq-transition);
    box-shadow: 0 20px 50px rgba(197, 108, 125, 0.15);
    min-height: 500px;
    height: 500px;
}

/*.aqf-testimonial-image-creative {*/
/*    flex: 0 0 320px;*/
/*    height: 420px;*/
/*    border-radius: 20px;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    box-shadow: 0 15px 35px rgba(44, 32, 28, 0.25);*/
/*}*/

.aqf-testimonial-image-creative::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    margin: 15px;
    pointer-events: none;
}

/*.aqf-testimonial-image-creative img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: fill;*/
/*    transition: transform 1.5s ease;*/
/*}*/

/*.aqf-testimonial-image-creative img {*/
/*    width: 400px;*/
/*    height: 500px;*/
/*    object-fit: contain;*/
/*    transition: transform 1.5s ease;*/
/*}*/

.swiper-slide-active .aqf-testimonial-image-creative img {
    /*transform: scale(1.1);*/
}

.aqf-testimonial-content-creative {
    flex: 1;
    text-align: left;
}

.aqf-testimonial-quote-v2 {
    color: var(--aq-color-white);
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    opacity: .8;
    font-family: serif;
}

.aqf-testimonial-text-v2 p {
    font-size: 26px;
    color: var(--aq-color-white) !important;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: var(--aq-ff-heading) !important;
    letter-spacing: .5px;
    position: relative;
}

.aqf-testimonial-author-v2 {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 30px;
}

.aqf-testimonial-author-v2 h4 {
    color: var(--aq-color-white) !important;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.aqf-testimonial-author-v2 span {
    color: var(--aq-color-pink-light) !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.aqf-testimonial-dot .swiper-pagination-bullet {
    width: 30px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: rgba(197, 108, 125, 0.15) !important;
    border: none !important;
    transition: all .3s ease !important;
}

.aqf-testimonial-dot .swiper-pagination-bullet-active {
    background: var(--aq-color-maroon) !important;
    width: 50px !important;
}

.aqf-testimonial-arrow button {
    background: var(--aq-color-white) !important;
    border: 1px solid var(--aq-color-cream-dark) !important;
    color: var(--aq-color-black) !important;
    width: 60px !important;
    height: 60px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(44, 32, 28, .05);
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.aqf-testimonial-prev {
    left: -100px !important;
}

.aqf-testimonial-next {
    right: -100px !important;
}

.aqf-testimonial-arrow button:hover {
    background: var(--aq-color-maroon) !important;
    border-color: var(--aq-color-maroon) !important;
    color: var(--aq-color-white) !important;
}

/* Premium Highlight Banners & Deals overrides */
.aqf-deals-area {
    background-color: var(--aq-color-cream) !important;
}

.aqf-deals-wrap {
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(197, 108, 125, 0.05);
    border: 1px solid var(--aq-color-cream-dark);
}

.aqf-deals-banner-content .aq-section-title {
    /* color: var(--aq-color-black) !important; */
}

.aqf-deals-banner-content .aq-section-title::after {
    display: none !important;
}

.aq-footer-menu-luxury i {
    margin-right: 8px;
}

.aqf-deals-banner-content span {
    color: var(--aq-color-maroon) !important;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.aqf-deals-tag-premium {
    background: var(--aq-color-maroon);
    color: var(--aq-color-white);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(197, 108, 125, 0.2);
    transition: var(--aq-transition);
    white-space: nowrap;
}

.aqf-deals-tag-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(197, 108, 125, 0.3);
}

.aqf-deals-subtitle-premium {
    font-family: var(--aq-ff-heading);
    font-weight: 500;
    font-size: 16px;
    color: #6e5e59;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid var(--aq-color-cream-dark);
}

/* WhatsApp Widget styles */
.aq-cta-whatsapp-btn {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: var(--aq-color-white) !important;
    margin-left: 15px;
}

.aq-cta-whatsapp-btn:hover {
    background-color: var(--aq-color-white) !important;
    border-color: #25d366 !important;
    color: #25d366 !important;
}

/* Megamenu Redesign Layout */
.aq-corp-megamenu {
    background: var(--aq-color-cream);
    border-top: 3px solid var(--aq-color-maroon);
    box-shadow: 0 35px 70px rgba(44, 32, 28, 0.12);
    border-radius: 0 0 15px 15px;
}

.aq-corp-megamenu-inner {
    display: flex;
    gap: 0;
    padding: 40px 0 44px;
}

.aq-corp-megamenu-col {
    flex: 1;
    padding: 0 30px;
    border-right: 1px solid var(--aq-color-cream-dark);
}

.aq-corp-megamenu-col:first-child {
    padding-left: 10px;
}

.aq-corp-megamenu-col:last-child {
    border-right: none;
}

.aq-corp-megamenu-heading {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--aq-color-maroon) !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--aq-color-pink-light);
}

.aq-corp-megamenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aq-corp-megamenu-col ul li {
    display: block;
    margin-bottom: 2px;
}

.aq-corp-megamenu-col ul li a {
    display: inline-block;
    font-size: 14.5px;
    font-weight: 400;
    color: #554844;
    font-family: var(--aq-ff-body) !important;
    padding: 6px 0;
    line-height: 1.3;
    position: relative;
    transition: color .25s ease, padding-left .25s ease;
    text-decoration: none;
}

.aq-corp-megamenu-col ul li a:hover {
    color: var(--aq-color-maroon);
    padding-left: 8px;
}

/* Footer Section Styling */
.aq-footer-area-luxury {
    background-color: black !important;
    color: var(--aq-color-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.aq-footer-shape-top-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.aq-footer-shape-top-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.aq-footer-shape-top-wave .shape-fill {
    fill: var(--aq-color-cream) !important;
}

.aq-footer-intro-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 25px;
}

.aq-footer-title-luxury {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--aq-color-white);
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aq-footer-title-luxury::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--aq-color-maroon);
}

.aq-footer-menu-luxury {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aq-footer-menu-luxury li {
    margin-bottom: 12px;
}

.aq-footer-menu-luxury li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    transition: all .3s ease;
    text-decoration: none;
}

.aq-footer-menu-luxury li a:hover {
    color: var(--aq-color-white);
    padding-left: 5px;
}

.aq-footer-social-luxury .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--aq-color-white);
    margin-right: 12px;
    transition: all .3s ease;
    text-decoration: none;
}

.aq-footer-social-luxury .social-icon:hover {
    background: var(--aq-color-white);
    color: var(--aq-color-maroon);
    transform: translateY(-3px);
}

.aq-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.aq-footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.aq-footer-policy-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-left: 20px;
    transition: all .3s ease;
    text-decoration: none;
}

.aq-footer-policy-links a:hover {
    color: var(--aq-color-white);
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.copyright-text span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ==========================================================================
   OUDHYANA CHIKANKARI - CTA BANNER STYLING
   ========================================================================== */
.aq-cta-offer-section {
    background: linear-gradient(135deg, #FCF9F5 0%, #F5EFEB 100%);
    border: 1.5px solid var(--aq-color-cream-dark);
    border-radius: 24px;
    padding: 60px;
    margin: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(44, 32, 28, 0.04);
}

.aq-cta-offer-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 108, 125, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.aq-cta-offer-img-box {
    flex: 0 0 260px;
    max-width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(44, 32, 28, 0.06);
    border: 4px solid var(--aq-color-white);
    background: var(--aq-color-white);
}

.aq-cta-offer-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.aq-cta-offer-section:hover .aq-cta-offer-img-box img {
    transform: scale(1.05);
}

.aq-cta-offer-content {
    flex: 1;
    text-align: left;
}

.aq-cta-offer-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--aq-color-maroon);
    font-weight: 700;
    background: rgba(197, 108, 125, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.aq-cta-offer-title {
    font-family: var(--aq-ff-heading) !important;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--aq-color-maroon);
    margin-bottom: 30px;
}

.aq-cta-offer-btn {
    border-radius: 50px;
    padding: 14px 32px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-size: 13px;
    transition: var(--aq-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--aq-color-maroon);
    background-color: var(--aq-color-maroon);
    color: var(--aq-color-white) !important;
    box-shadow: 0 4px 10px rgba(44, 32, 28, 0.15);
    text-decoration: none;
}

.aq-cta-offer-btn:hover {
    background-color: transparent;
    color: var(--aq-color-black) !important;
    border-color: var(--aq-color-maroon);
    transform: translateY(-2px);
}

.aq-cta-whatsapp-btn {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: var(--aq-color-white) !important;
}

.aq-cta-whatsapp-btn:hover {
    background-color: transparent !important;
    border-color: #25d366 !important;
    color: #25d366 !important;
}

@media (max-width: 991px) {
    .aq-cta-offer-section {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        gap: 30px;
    }

    .aq-cta-offer-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .aq-cta-offer-title {
        font-size: 30px;
    }
}

/* ==========================================================================
   OUDHYANA CHIKANKARI - FLOATING DECORATIVE SHAPES
   ========================================================================== */
.aqf-floating-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.08;
    color: var(--aq-color-maroon);
    transition: var(--aq-transition);
}

.aqf-floating-shape svg {
    width: 100%;
    height: 100%;
}

/* Elegant luxury float keyframes */
@keyframes aq-float-y {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

@keyframes aq-float-x {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(20px) rotate(-8deg);
    }
}

/* Specific Positions for Hero Section 2 Shapes */
.hero-section2 .aqf-floating-shape-1 {
    top: 15%;
    left: 5%;
    width: 120px;
    height: 120px;
    animation: aq-float-y 12s ease-in-out infinite;
}

.hero-section2 .aqf-floating-shape-2 {
    bottom: 12%;
    right: 8%;
    width: 140px;
    height: 140px;
    color: var(--aq-color-maroon);
    opacity: 0.06;
    animation: aq-float-x 16s ease-in-out infinite;
}

/* Specific Positions for Summer Suit Section Shapes */
.aqf-summer-suit-area .aqf-floating-shape-1 {
    top: 10%;
    right: 6%;
    width: 110px;
    height: 110px;
    animation: aq-float-y 10s ease-in-out infinite;
}

.aqf-summer-suit-area .aqf-floating-shape-2 {
    bottom: 15%;
    left: 8%;
    width: 130px;
    height: 130px;
    color: var(--aq-color-maroon);
    opacity: 0.06;
    animation: aq-float-x 14s ease-in-out infinite;
}

/* ==========================================================================
   OUDHYANA CHIKANKARI - FEATURED PRODUCTS CAROUSEL OVERRIDES
   ========================================================================== */
.wpbingo-section--products {
    background-color: var(--aq-color-cream) !important;
    padding: 80px 0;
}

.wpbingo-section__content {
    position: relative;
}

.jss-grid {
    background: var(--aq-color-white);
    border: 1px solid var(--aq-color-cream-dark);
    border-radius: 12px;
    padding: 20px;
    transition: var(--aq-transition);
    box-shadow: 0 4px 15px rgba(44, 32, 28, 0.02);
}

.jss-grid:hover {
    box-shadow: 0 10px 30px rgba(197, 108, 125, 0.08);
    border-color: rgba(197, 108, 125, 0.25);
    transform: translateY(-5px);
}

/* Product Preloader */
.preload-img-product {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 13px !important;
    letter-spacing: 3px !important;
    color: var(--aq-color-maroon) !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    background: rgba(252, 249, 245, 0.9) !important;
}

/* Swatches */
.product-card-swatch {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--aq-color-cream-dark);
}

.product-card-swatch .swatch-title {
    font-family: 'Marcellus', serif;
    font-size: 11px;
    color: var(--aq-color-maroon);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card-swatch label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    color: var(--aq-color-black) !important;
    border: 1px solid var(--aq-color-cream-dark) !important;
    background: var(--aq-color-white) !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    cursor: pointer !important;
    transition: var(--aq-transition) !important;
}

.product-card-swatch label:hover,
.product-card-swatch input:checked+label,
.product-card-swatch label.active {
    border-color: var(--aq-color-maroon) !important;
    color: var(--aq-color-white) !important;
    background-color: var(--aq-color-maroon) !important;
}

/* Quantity Selection */
.wpbingo-qty-adjuster {
    border: 1px solid var(--aq-color-cream-dark) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: var(--aq-color-white) !important;
}

.wpbingo-qty-adjuster button {
    background: transparent !important;
    border: none !important;
    color: var(--aq-color-black) !important;
    transition: var(--aq-transition) !important;
}

.wpbingo-qty-adjuster button:hover {
    background: var(--aq-color-cream) !important;
    color: var(--aq-color-maroon) !important;
}

.wpbingo-qty-adjuster input {
    background: transparent !important;
    border: none !important;
    color: var(--aq-color-black) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

/* Add to Cart button override */
.wpbingo-add-to-cart {
    background-color: var(--aq-color-maroon) !important;
    border: 1px solid var(--aq-color-maroon) !important;
    color: var(--aq-color-white) !important;
    font-family: 'Marcellus', serif !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    transition: var(--aq-transition) !important;
}

.wpbingo-add-to-cart:hover {
    background-color: var(--aq-color-white) !important;
    color: var(--aq-color-maroon) !important;
    box-shadow: 0 4px 15px rgba(197, 108, 125, 0.2);
}

/* Slick slider arrows overrides for wpbingo products carousel */
.wpbingo-section--featured_products_wJWpAW .slick-prev,
.wpbingo-section--featured_products_wJWpAW .slick-next {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: var(--aq-color-white) !important;
    border: 1px solid var(--aq-color-cream-dark) !important;
    color: var(--aq-color-black) !important;
    z-index: 10 !important;
    transition: var(--aq-transition) !important;
}

.wpbingo-section--featured_products_wJWpAW .slick-prev:hover,
.wpbingo-section--featured_products_wJWpAW .slick-next:hover {
    background: var(--aq-color-maroon) !important;
    color: var(--aq-color-white) !important;
    border-color: var(--aq-color-maroon) !important;
    box-shadow: 0 5px 15px rgba(197, 108, 125, 0.25);
}

/* Luxury Curation WhatsApp Button Overrides */
.aq-cta-curation-btn {
    background-color: #4A5C4A !important;
    border-color: #4A5C4A !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aq-cta-curation-btn:hover {
    background-color: #FAF7F2 !important;
    border-color: #4A5C4A !important;
    color: #4A5C4A !important;
}

.aq-cta-curation-btn i {
    color: #E5C38C !important;
    transition: color 0.3s ease;
}

.aq-cta-curation-btn:hover i {
    color: #4A5C4A !important;
}


/* Category Page Hero Section */
.aq-catpage-hero {
    background-color: var(--aq-color-maroon);
}

/* Category Tabs */
.aqf-categories-area .nav-pills .nav-link.active {
    background-color: var(--aq-color-maroon) !important;
    color: #fff !important;
    border-color: var(--aq-color-maroon) !important;
}

.aqf-categories-area .nav-pills .nav-link:hover {
    background-color: var(--aq-color-maroon);
    color: #fff !important;
    border-color: var(--aq-color-maroon) !important;
}

/* Product Details Luxury Enhancements */
.aq-details-suitable-wrap {
    background: #fbfbf9;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 49, 8, 0.05);
}

.aq-details-suitable-title {
    font-size: 14px;
    font-weight: 600;
    color: #4a3c31;
    margin-bottom: 20px;
    font-family: var(--tp-ff-outfit);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.aq-details-suitable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.aq-details-suitable-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(201, 143, 157, 0.15);
    transition: transform 0.3s ease;
}

.aq-details-suitable-item:hover {
    transform: translateY(-3px);
    border-color: #C98F9D;
}

.aq-details-suitable-icon {
    width: 40px;
    height: 40px;
    background: #fdf5f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #C98F9D;
    font-size: 16px;
}

.aq-details-suitable-item span {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    font-family: var(--tp-ff-inter);
}

.aq-luxury-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.aq-luxury-list li i {
    color: #C98F9D;
    font-size: 16px;
    margin-top: 3px;
}

.luxury-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 50px;
    width: 130px;
}

.luxury-qty button {
    background: transparent;
    border: none;
    width: 40px;
    height: 100%;
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.luxury-qty button:hover {
    background: #f5f5f5;
    color: #000;
}

.luxury-qty input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    -moz-appearance: textfield;
}

.luxury-btn-outline {
    height: 50px;
    font-weight: 600;
    font-family: var(--tp-ff-outfit);
    background: transparent;
    border: 2px solid #5a4b41;
    color: #5a4b41;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.luxury-btn-outline:hover {
    background: #5a4b41;
    color: #ffffff;
}

.luxury-btn-solid {
    height: 50px;
    font-weight: 600;
    font-family: var(--tp-ff-outfit);
    background: #c98f9d;
    border: none;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-btn-solid:hover {
    background: #b67b89;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 143, 157, 0.4);
}

.aq-creative-details-block {
    display: flex;
    /* flex-direction: column; */
    gap: 30px;
    padding: 20px;
    background: #fbfbf9;
    border-radius: 12px;
    border-left: 3px solid #C98F9D;
    align-items: normal;
}

.aq-detail-item {
    display: grid;
    /*grid-template-columns: 80px 1fr;*/
    align-items: center;
    font-family: var(--tp-ff-inter);
}

.aq-detail-item .detail-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aq-detail-item .detail-value {
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: #c98f9d;
    display: inline;
    padding: 3px 11px;
}

.color-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.aq-apparel-hero {
    background-color: #C98F9D !important;
    position: relative;
    overflow: hidden;
}

.aq-apparel-hero .aq-hero-glow {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.aq-apparel-hero .aq-catpage-title {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.aq-apparel-hero .aq-catpage-breadcrumbs a,
.aq-apparel-hero .aq-catpage-breadcrumbs span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.aq-apparel-hero .aq-catpage-breadcrumbs a:hover {
    color: #ffffff !important;
}

.aq-apparel-hero .aq-floating-gift-box {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

/* CTA Section Scoped Styles */
.aq-luxury-cta-section .aq-cta-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.12);
    filter: blur(120px);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.aq-luxury-cta-section .aq-cta-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 255, 68, 0.08);
    filter: blur(120px);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

.aq-luxury-cta-section .container {
    z-index: 2;
}

.aq-luxury-cta-section .aq-section-title-sm {
    color: #ffffff !important;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.aq-luxury-cta-section .font-family-heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.aq-luxury-cta-section .font-family-heading span {
    color: #ffffff;
    font-style: italic;
}

.aq-luxury-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Benefit Cards */
.aq-partner-benefit-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.aq-partner-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 143, 157, 0.15);
    border-color: rgba(201, 143, 157, 0.3);
}

.aq-partner-benefit-card .icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(201, 143, 157, 0.1);
    color: var(--aq-color-maroon);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

.aq-partner-benefit-card:hover .icon-wrap {
    background: var(--aq-color-maroon);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.aq-partner-benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    transition: color 0.3s ease;
}

.aq-partner-benefit-card:hover h4 {
    color: var(--aq-color-maroon);
}

.aq-partner-benefit-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Auth Pages Styles */
.aq-auth-section {
    padding: 80px 0;
    background: #fdfcfb;
}

.aq-auth-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 49, 8, 0.05);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(201, 143, 157, 0.15);
}

.aq-auth-left {
    background: linear-gradient(135deg, rgba(201, 143, 157, 0.05) 0%, rgba(201, 143, 157, 0.15) 100%);
    padding: 60px 40px;
    position: relative;
    border-right: 1px solid rgba(201, 143, 157, 0.15);
}

.aq-auth-left-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/corporate/gallery_bridal_lehenga.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.aq-auth-left-content {
    position: relative;
    z-index: 1;
}

.aq-auth-right {
    padding: 60px 50px;
    background: #ffffff;
}

.aq-auth-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.aq-auth-benefit-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aq-color-maroon);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.aq-auth-benefit-text h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: #222;
}

.aq-auth-benefit-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.aq-auth-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.aq-auth-form-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.aq-auth-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.aq-auth-checkbox-group input[type='checkbox'] {
    margin-top: 4px;
    accent-color: var(--aq-color-maroon);
}

.aq-auth-checkbox-group label {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
}

.aq-auth-checkbox-group label a {
    color: var(--aq-color-maroon);
    font-weight: 600;
    text-decoration: underline;
}

.aq-auth-alt-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.aq-auth-alt-link a {
    color: var(--aq-color-maroon);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.aq-auth-alt-link a:hover {
    color: #222;
}

@media (max-width: 991px) {
    .aq-auth-left {
        border-right: none;
        border-bottom: 1px solid rgba(201, 143, 157, 0.15);
    }
}


/* Foolproof Custom Checkbox */
.aq-custom-check {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #555;
    margin-bottom: 0;
}

.aq-custom-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.aq-custom-check .checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.aq-custom-check input:checked~.checkmark {
    background-color: var(--aq-color-maroon);
    border-color: var(--aq-color-maroon);
}

.aq-custom-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.aq-custom-check input:checked~.checkmark:after {
    display: block;
}

.aq-custom-check a {
    color: var(--aq-color-maroon);
    font-weight: 600;
    text-decoration: underline;
    margin-left: 4px;
}


/* ====================================================
   Checkout Page Styles
==================================================== */
.aq-checkout-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(201, 143, 157, 0.2);
    box-shadow: 0 10px 40px rgba(0, 49, 8, 0.04);
}

.aq-checkout-container .aq-checkout-section-title {
    border-bottom: 1px solid #eee;
    font-size: 20px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.aq-checkout-container select.aq-contact-input {
    height: 55px;
    appearance: auto;
}

.aq-checkout-container .payment-method-box {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.aq-checkout-container .payment-method-box.active {
    border-color: var(--aq-color-maroon);
    background: rgba(201, 143, 157, 0.03);
}

.aq-checkout-container .payment-method-box label {
    cursor: pointer;
}

.aq-checkout-container .payment-method-box input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--aq-color-maroon);
    margin-right: 15px;
    cursor: pointer;
}

.aq-checkout-container .payment-method-box span.payment-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.aq-checkout-container .aq-checkout-disclaimer {
    font-size: 13px;
    color: #6c757d;
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.aq-checkout-btn-submit {
    background: var(--aq-color-maroon) !important;
    border-color: var(--aq-color-maroon) !important;
    padding: 18px 20px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    margin-top: 10px !important;
    width: 100% !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .aq-checkout-container {
        padding: 25px;
    }
}


/* Foolproof Custom Radio Button */
.aq-custom-radio-container {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
    width: 100%;
}

.aq-custom-radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.aq-custom-radio-container .checkmark-radio {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.aq-custom-radio-container:hover input~.checkmark-radio {
    border-color: #999;
}

.aq-custom-radio-container input:checked~.checkmark-radio {
    background-color: #fff;
    border-color: var(--aq-color-maroon);
}

.aq-custom-radio-container .checkmark-radio:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--aq-color-maroon);
}

.aq-custom-radio-container input:checked~.checkmark-radio:after {
    display: block;
}

.aq-checkout-container select.aq-contact-input {
    padding-left: 45px !important;
}



/* ====================================================
   User Dashboard Styles
==================================================== */
.aq-user-dashboard {
    padding: 60px 0;
    background: #fdfbfb;
}

.aq-dashboard-sidebar {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(201, 143, 157, 0.15);
    box-shadow: 0 5px 25px rgba(0, 49, 8, 0.02);
    overflow: hidden;
    padding: 20px 0;
}

.aq-dashboard-user-info {
    text-align: center;
    padding: 10px 20px 25px;
    border-bottom: 1px solid rgba(201, 143, 157, 0.1);
    margin-bottom: 15px;
}

.aq-dashboard-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--aq-color-maroon);
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(201, 143, 157, 0.3);
}

.aq-dashboard-user-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.aq-dashboard-user-email {
    font-size: 13px;
    color: #777;
}

.aq-dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aq-dashboard-nav ul li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    font-size: 15px;
    color: #555;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.aq-dashboard-nav ul li a i {
    width: 25px;
    font-size: 16px;
    color: #999;
    transition: 0.3s;
}

.aq-dashboard-nav ul li a:hover,
.aq-dashboard-nav ul li a.active {
    background: rgba(201, 143, 157, 0.05);
    color: var(--aq-color-maroon);
    border-left-color: var(--aq-color-maroon);
}

.aq-dashboard-nav ul li a:hover i,
.aq-dashboard-nav ul li a.active i {
    color: var(--aq-color-maroon);
}

.aq-dashboard-content {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(201, 143, 157, 0.15);
    box-shadow: 0 5px 25px rgba(0, 49, 8, 0.02);
    padding: 35px;
}

.aq-dashboard-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.aq-dashboard-welcome {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.aq-dashboard-welcome strong {
    color: var(--aq-color-maroon);
}

.aq-dashboard-cards-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.aq-dashboard-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(201, 143, 157, 0.2);
    padding: 25px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.aq-dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 143, 157, 0.1);
}

.aq-dashboard-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(201, 143, 157, 0.1);
    color: var(--aq-color-maroon);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.aq-dashboard-card-info h5 {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aq-dashboard-card-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.aq-dashboard-recent-orders h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.aq-dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.aq-dashboard-table th {
    background: #fafafa;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    border-bottom: 2px solid #eee;
    text-align: left;
}

.aq-dashboard-table td {
    padding: 15px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.aq-order-status {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.aq-order-status.processing {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.aq-order-status.completed {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.aq-order-status.cancelled {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.aq-btn-view-order {
    background: transparent;
    color: var(--aq-color-maroon);
    border: 1px solid var(--aq-color-maroon);
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.aq-btn-view-order:hover {
    background: var(--aq-color-maroon);
    color: #fff;
}

@media (max-width: 991px) {
    .aq-dashboard-sidebar {
        margin-bottom: 30px;
    }

    .aq-dashboard-content {
        padding: 25px 15px;
    }

    .aq-dashboard-table {
        display: block;
        overflow-x: auto;
    }
}


/* ====================================================
   Modern Luxury Standalone Dashboard
==================================================== */
body {
    background-color: #f7f5f5;
    /* Light elegant grey */
}

.aq-modern-dashboard * {
    box-sizing: border-box;
}

.aq-modern-dashboard {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: #f7f5f5;
}

/* Sidebar */
.aq-modern-sidebar {
    width: 280px;
    background: #fff;
    border-right: 1px solid rgba(201, 143, 157, 0.15);
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.02);
    z-index: 10;
}

.aq-sidebar-logo {
    padding: 40px 25px 30px 25px;
    /* Increased top padding to match search bar */
    border-bottom: 1px solid rgba(201, 143, 157, 0.1);
    text-align: center;
}

.aq-sidebar-logo img {
    max-width: 140px;
}

.aq-sidebar-user {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(201, 143, 157, 0.1);
}

.aq-sidebar-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--aq-color-maroon);
    padding: 2px;
}

.aq-sidebar-user-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #222;
}

.aq-sidebar-user-info p {
    font-size: 12px;
    color: var(--aq-color-maroon);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aq-sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.aq-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aq-sidebar-nav li {
    margin-bottom: 5px;
}

.aq-sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    border-right: 3px solid transparent;
}

.aq-sidebar-nav a i {
    width: 24px;
    font-size: 18px;
    margin-right: 12px;
    color: #aaa;
    transition: 0.3s;
}

.aq-sidebar-nav li.active a,
.aq-sidebar-nav a:hover {
    background: rgba(201, 143, 157, 0.06);
    color: var(--aq-color-maroon);
    border-right-color: var(--aq-color-maroon);
}

.aq-sidebar-nav li.active a i,
.aq-sidebar-nav a:hover i {
    color: var(--aq-color-maroon);
}

.aq-sidebar-nav .badge {
    margin-left: auto;
    background: var(--aq-color-maroon);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
}

.aq-sidebar-bottom {
    padding: 20px 25px;
    border-top: 1px solid rgba(201, 143, 157, 0.1);
}

.aq-logout-btn {
    display: flex;
    align-items: center;
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.aq-logout-btn i {
    margin-right: 10px;
}

.aq-logout-btn:hover {
    color: #c0392b;
    transform: translateX(5px);
}

/* Main Content Area */
.aq-modern-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Topbar */
.aq-modern-topbar {
    min-height: 90px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 20px 40px;
    /* Increased top padding to add gap */
    box-sizing: border-box;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
    z-index: 5;
}

.aq-topbar-search {
    position: relative;
    width: 350px;
}

.aq-topbar-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.aq-topbar-search input {
    width: 100%;
    background: #f7f5f5;
    border: 1px solid transparent;
    padding: 10px 15px 10px 45px;
    border-radius: 30px;
    outline: none;
    transition: 0.3s;
}

.aq-topbar-search input:focus {
    background: #fff;
    border-color: rgba(201, 143, 157, 0.5);
    box-shadow: 0 0 0 4px rgba(201, 143, 157, 0.1);
}

.aq-topbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.aq-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f7f5f5;
    border: none;
    color: #555;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.aq-icon-btn:hover {
    background: var(--aq-color-maroon);
    color: #fff;
}

.aq-icon-btn .indicator {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    border: 2px solid #fff;
}

.aq-btn-store {
    background: transparent;
    border: 1px solid var(--aq-color-maroon);
    color: var(--aq-color-maroon);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.aq-btn-store:hover {
    background: var(--aq-color-maroon);
    color: #fff;
}

/* Dashboard Content */
.aq-modern-content {
    padding: 40px;
}

.aq-dashboard-header {
    margin-bottom: 35px;
}

.aq-dashboard-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.aq-dashboard-header p {
    color: #777;
    font-size: 15px;
}

/* Stats Cards */
.aq-modern-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.aq-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.aq-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(201, 143, 157, 0.15);
}

.aq-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.aq-stat-details p {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.aq-stat-details h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #222;
}

/* Modern Cards */
.aq-modern-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.aq-card-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aq-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.aq-btn-link {
    color: var(--aq-color-maroon);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.aq-btn-link:hover {
    text-decoration: underline;
}

.aq-card-body {
    padding: 30px;
}

/* Modern Table */
.aq-modern-table {
    width: 100%;
    border-collapse: collapse;
}

.aq-modern-table th {
    text-align: left;
    padding: 15px 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
    background: #fafafa;
}

.aq-modern-table td {
    padding: 20px 30px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: #555;
    font-size: 14px;
}

.aq-modern-table tr:last-child td {
    border-bottom: none;
}

.aq-order-items-imgs {
    display: flex;
}

.aq-order-items-imgs img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: -10px;
}

.aq-order-items-imgs img:first-child {
    margin-left: 0;
}

/* Badges */
.aq-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.aq-badge-success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.aq-badge-warning {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.aq-badge-info {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.aq-btn-icon-only {
    background: transparent;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.aq-btn-icon-only:hover {
    color: #222;
}

/* Promo Card Gradient */
.aq-bg-gradient {
    background: linear-gradient(135deg, var(--aq-color-maroon) 0%, #a06874 100%);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.aq-promo-content {
    position: relative;
    z-index: 2;
}

.aq-promo-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.aq-promo-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.aq-btn-primary-glow {
    background: #fff;
    color: var(--aq-color-maroon);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.aq-btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.aq-promo-img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 200px;
    opacity: 0.4;
    mix-blend-mode: multiply;
}

/* Responsiveness */
@media (max-width: 991px) {
    .aq-modern-dashboard {
        flex-direction: column;
        height: auto;
    }

    .aq-modern-sidebar {
        position: fixed;
        left: -320px;
        top: 0;
        width: 280px;
        height: 100vh;
        z-index: 1050;
        background: #fff;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(201, 143, 157, 0.15);
        border-bottom: none;
        overflow-y: auto;
    }

    .aq-modern-sidebar.open {
        left: 0;
    }

    .aq-sidebar-toggle-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(201, 143, 157, 0.1);
        color: #C98F9D;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        margin-right: 15px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .aq-sidebar-close-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: #C98F9D;
        cursor: pointer;
        z-index: 1060;
    }

    .aq-modern-content {
        padding: 20px;
    }

    .aq-topbar-search {
        display: none;
        /* Hide on mobile to save space */
    }

    .aq-modern-topbar {
        min-height: 80px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 40px;
        box-sizing: border-box;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
        z-index: 5;
    }
}

/* Closing brace for @media */

/* ====================================================
   User Orders & Payment Details Page (.aq-orders-page)
==================================================== */
.aq-orders-page {
    font-family: 'Inter', sans-serif;
}

.aq-orders-page .aq-page-header {
    margin-bottom: 30px;
}

.aq-orders-page .aq-page-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.aq-orders-page .aq-page-header p {
    color: #777;
    font-size: 15px;
}

.aq-orders-page .aq-order-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(201, 143, 157, 0.2);
    padding-bottom: 15px;
}

.aq-orders-page .aq-order-tabs button {
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.aq-orders-page .aq-order-tabs button.active,
.aq-orders-page .aq-order-tabs button:hover {
    background: rgba(201, 143, 157, 0.1);
    color: var(--aq-color-maroon);
}

.aq-orders-page .aq-order-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(201, 143, 157, 0.1);
}

.aq-orders-page .aq-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.aq-orders-page .aq-order-id {
    font-size: 18px;
    font-weight: 800;
    color: #222;
}

.aq-orders-page .aq-order-date {
    font-size: 14px;
    color: #888;
    margin-left: 10px;
}

.aq-orders-page .aq-order-status {
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.aq-orders-page .status-delivered {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.aq-orders-page .status-processing {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.aq-orders-page .status-cancelled {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.aq-orders-page .aq-order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aq-orders-page .aq-order-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.aq-orders-page .aq-order-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #eee;
}

.aq-orders-page .aq-order-item-details {
    flex-grow: 1;
}

.aq-orders-page .aq-order-item-details h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #333;
}

.aq-orders-page .aq-order-item-details p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.aq-orders-page .aq-order-item-price {
    font-weight: 800;
    font-size: 16px;
    color: #222;
}

.aq-orders-page .aq-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.aq-orders-page .aq-order-payment-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.aq-orders-page .aq-payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.aq-orders-page .aq-payment-method i {
    color: var(--aq-color-maroon);
}

.aq-orders-page .aq-order-total-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--aq-color-maroon);
}

.aq-orders-page .aq-btn-track {
    background: var(--aq-color-maroon);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.aq-orders-page .aq-btn-track:hover {
    background: #a06874;
    transform: translateY(-2px);
    color: #fff;
}

.aq-orders-page .aq-btn-invoice {
    background: transparent;
    color: #555;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    margin-right: 10px;
}

.aq-orders-page .aq-btn-invoice:hover {
    border-color: var(--aq-color-maroon);
    color: var(--aq-color-maroon);
}

@media (max-width: 991px) {
    .aq-orders-page .aq-order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .aq-orders-page .aq-order-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
}

/* Creative Tracking Timeline */
.aq-order-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    position: relative;
    padding: 0 10px;
}

.aq-order-tracker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #f0f0f0;
    z-index: 1;
    transform: translateY(-50%);
}

.aq-order-tracker-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 0 10px;
}

.aq-order-tracker-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.aq-order-tracker-step.completed .aq-order-tracker-icon {
    background: var(--aq-color-maroon);
    color: #fff;
    box-shadow: 0 5px 15px rgba(201, 143, 157, 0.3);
}

.aq-order-tracker-step.active .aq-order-tracker-icon {
    background: #fff;
    color: var(--aq-color-maroon);
    border: 2px solid var(--aq-color-maroon);
    box-shadow: 0 5px 15px rgba(201, 143, 157, 0.2);
}

.aq-order-tracker-label {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
}

.aq-order-tracker-step.completed .aq-order-tracker-label,
.aq-order-tracker-step.active .aq-order-tracker-label {
    color: #222;
}

@media (max-width: 767px) {

    /* Tabs */
    .aq-orders-page .aq-order-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap;
    }

    .aq-orders-page .aq-order-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .aq-orders-page .aq-order-tabs::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 4px;
    }

    /* Header */
    .aq-orders-page .aq-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .aq-orders-page .aq-order-status {
        align-self: flex-start;
    }

    /* Tracker */
    .aq-order-tracker {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-left: 15px;
        margin: 20px 0;
    }

    .aq-order-tracker::before {
        left: 32px;
        top: 20px;
        bottom: 20px;
        width: 3px;
        height: auto;
        transform: none;
    }

    .aq-order-tracker-step {
        flex-direction: row;
        gap: 15px;
        padding: 0;
    }

    .aq-order-tracker-label {
        font-size: 13px;
    }

    /* Footer Buttons */
    .aq-orders-page .aq-order-actions {
        flex-direction: column;
        gap: 10px;
    }

    .aq-orders-page .aq-btn-invoice,
    .aq-orders-page .aq-btn-track {
        width: 100%;
        text-align: center;
        margin: 0;
    }
}

@media (max-width: 767px) {

    /* Prevent Price Breaking */
    .aq-orders-page .aq-order-item-price,
    .aq-orders-page .aq-order-total-price {
        white-space: nowrap;
    }

    /* Make Order Items Wrap Better */
    .aq-orders-page .aq-order-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .aq-orders-page .aq-order-item-details {
        min-width: 150px;
        flex: 1 1 100%;
    }

    .aq-orders-page .aq-order-item-price {
        width: 100%;
        text-align: left;
        margin-top: -10px;
    }

    /* Payment Info Stacking */
    .aq-orders-page .aq-order-payment-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .aq-orders-page .aq-payment-method {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================================
   Wishlist Page (.aq-wishlist-page)
==================================================== */
.aq-wishlist-page {
    font-family: 'Inter', sans-serif;
}

.aq-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.aq-wishlist-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid rgba(201, 143, 157, 0.1);
    transition: 0.3s;
}

.aq-wishlist-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.aq-wishlist-remove {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #999;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.aq-wishlist-remove:hover {
    color: #ff4757;
    background: #fff;
    transform: scale(1.1);
}

.aq-wishlist-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.aq-wishlist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.aq-wishlist-card:hover .aq-wishlist-img-wrapper img {
    transform: scale(1.05);
}

.aq-wishlist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.aq-wishlist-card:hover .aq-wishlist-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aq-btn-cart-overlay {
    width: 100%;
    background: #fff;
    color: var(--aq-color-maroon);
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s;
}

.aq-btn-cart-overlay:hover {
    background: var(--aq-color-maroon);
    color: #fff;
}

.aq-wishlist-info {
    margin-top: 15px;
    text-align: center;
}

.aq-wishlist-cat {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.aq-wishlist-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aq-wishlist-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--aq-color-maroon);
}

/* ====================================================
   Address Page (.aq-address-page)
==================================================== */
.aq-address-page {
    font-family: 'Inter', sans-serif;
}

.aq-address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.aq-address-card {
    background: #fff;
    border: 1px solid rgba(201, 143, 157, 0.15);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.aq-address-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(201, 143, 157, 0.4);
}

.aq-address-card.default-address {
    border-color: var(--aq-color-maroon);
    background: linear-gradient(135deg, rgba(201, 143, 157, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.aq-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.aq-address-type {
    font-weight: 600;
    font-size: 14px;
    color: var(--aq-color-maroon);
    background: rgba(201, 143, 157, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aq-address-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: #222;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}

.aq-address-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.aq-address-details {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.aq-address-phone {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    margin-bottom: 20px;
}

.aq-address-actions {
    display: flex;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.aq-btn-action {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: 0.3s;
}

.aq-btn-action:hover {
    color: var(--aq-color-maroon);
}

.aq-btn-action.text-danger:hover {
    color: #ff4757 !important;
}

.aq-set-default {
    margin-left: auto;
    font-size: 13px;
    color: var(--aq-color-maroon);
}

/* Add New Address Card */
.aq-address-add-card {
    border: 2px dashed rgba(201, 143, 157, 0.4);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    min-height: 250px;
}

.aq-address-add-card:hover {
    background: rgba(201, 143, 157, 0.05);
    border-color: var(--aq-color-maroon);
}

.aq-add-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 143, 157, 0.1);
    color: var(--aq-color-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.aq-address-add-card:hover .aq-add-icon {
    background: var(--aq-color-maroon);
    color: #fff;
    transform: scale(1.1);
}

.aq-address-add-card h5 {
    font-family: 'Outfit', sans-serif;
    color: #333;
    font-weight: 600;
}

/* ====================================================
   Account Details Page (.aq-account-page)
==================================================== */
.aq-account-page {
    font-family: 'Inter', sans-serif;
}

.aq-account-card {
    background: #fff;
    border: 1px solid rgba(201, 143, 157, 0.15);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.aq-account-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.aq-avatar-upload {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.aq-avatar-preview {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aq-avatar-preview img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.aq-avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--aq-color-maroon);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    border: 2px solid #fff;
    transition: 0.3s;
}

.aq-avatar-edit-btn:hover {
    background: #222;
    transform: scale(1.1);
}

.aq-avatar-text h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.aq-avatar-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

.aq-account-form .form-control,
.aq-account-form .form-select {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    color: #444;
    transition: 0.3s;
    background-color: #fafafa;
}

.aq-account-form .form-control:focus,
.aq-account-form .form-select:focus {
    border-color: var(--aq-color-maroon);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(201, 143, 157, 0.1);
}

.aq-btn-submit.outline-btn {
    background: transparent;
    color: var(--aq-color-maroon);
    border: 1px solid var(--aq-color-maroon);
}

.aq-btn-submit.outline-btn:hover {
    background: var(--aq-color-maroon);
    color: #fff;
}

.delete-account-card {
    border-color: rgba(255, 71, 87, 0.2);
    background: rgba(255, 71, 87, 0.02);
}

.aq-btn-delete-account {
    background: #ff4757;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.aq-btn-delete-account:hover {
    background: #ff2a3d;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

/* Additional Account Page Styles */
.aq-account-page .aq-btn-save {
    background: var(--aq-color-maroon);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
}

.aq-account-page .aq-btn-save:hover {
    background: #222;
    color: #fff;
}

.aq-account-page .aq-security-subtitle {
    font-size: 14px;
}

.aq-account-page .aq-danger-subtitle {
    font-size: 13px;
}

/* Update Password Button Styles */
.aq-account-page .outline-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s;
}

/* ====================================================
   Notification Page (.aq-notification-page)
==================================================== */
.aq-notification-page {
    font-family: 'Inter', sans-serif;
}

.aq-btn-read-all {
    background: transparent;
    color: var(--aq-color-maroon);
    border: 1px solid var(--aq-color-maroon);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aq-btn-read-all:hover {
    background: var(--aq-color-maroon);
    color: #fff;
}

.aq-notification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.aq-notification-card {
    background: #fff;
    border: 1px solid rgba(201, 143, 157, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

.aq-notification-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.aq-notification-card.unread {
    background: linear-gradient(90deg, rgba(201, 143, 157, 0.05) 0%, rgba(255, 255, 255, 1) 50%);
    border-left: 4px solid var(--aq-color-maroon);
}

.aq-notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.aq-notification-icon.order-icon {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.aq-notification-icon.offer-icon {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.aq-notification-icon.security-icon {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

.aq-notification-icon.system-icon {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.aq-notification-icon.success-icon {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.aq-notification-content {
    flex-grow: 1;
}

.aq-notification-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.aq-notification-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
}

.aq-notification-time {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.aq-unread-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--aq-color-maroon);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .aq-notification-card {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .aq-unread-dot {
        top: 20px;
        right: 20px;
        transform: none;
    }

    .aq-about-page .aq-vision-mission-section {
        padding: 50px 0 20px;

    }
}

/* Mobile Product Tabs Scroll */
@media (max-width: 767px) {


    .aq-product-tab-btn {
        width: 100%;
        display: block;
    }

    .aq-product-tab-btn ul.nav-tab {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: scroll !important;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        padding-bottom: 12px;
        margin-bottom: 5px;
        width: 100%;
        scrollbar-width: thin;
        scrollbar-color: #C98F9D #f5f5f5;
    }

    .aq-product-tab-btn ul.nav-tab::-webkit-scrollbar {
        height: 6px;
        display: block;
    }

    .aq-product-tab-btn ul.nav-tab::-webkit-scrollbar-thumb {
        background-color: #C98F9D;
        border-radius: 10px;
    }

    .aq-product-tab-btn ul.nav-tab::-webkit-scrollbar-track {
        background-color: #f5f5f5;
        border-radius: 10px;
    }

    .aq-product-tab-btn ul.nav-tab li {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }

    .aq-product-tab-btn ul.nav-tab li button {
        white-space: nowrap !important;
    }

    .aqf-seller-area.fix {
        background: white;
    }

    .masonry-wrapper {
        width: 100%;
        text-align: center;
        margin: auto;
    }

    .aqf-testimonial-card-creative {

        padding: 15px 10px;

        gap: 30px;

    }

    .aqf-testimonial-quote-v2 {

        font-size: 40px;

        margin-bottom: 0px;

    }

    .aqf-testimonial-text-v2 p {
        font-size: 16px;
        color: var(--aq-color-white) !important;
        line-height: 1.5;
        font-weight: 300;
        margin-bottom: 20px;
        font-family: var(--aq-ff-heading) !important;
        letter-spacing: .5px;
        position: relative;
    }

    .aqf-testimonial-author-v2 h4 {
        color: var(--aq-color-white) !important;
        font-size: 18px;
        margin-bottom: 8px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .aqf-testimonial-author-v2 span {

        font-size: 12px;

    }

    .aqf-why-us-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
        margin-bottom: 0px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--aq-color-cream-dark);
    }

    .aq-about-page .aq-discover-section {
        padding: 40px 0;
        position: relative;
    }

    .aq-about-page .aq-tech-section {
        padding: 40px 0;

    }

    .aq-about-page .aq-promise-section {
        padding: 40px 0;
    }

    .aq-contact-content.pt-100.pb-100 {
        padding: 40px 0;
    }

    .aq-auth-right {
        padding: 20px 25px;
        background: #ffffff;
    }

    .aq-partner-content.pt-100.pb-100 {
        padding: 30px 6px 20px;
    }

    .aq-contact-page .aq-contact-form-wrapper {
        padding: 20px 25px !important;
    }

    .aq-details-breadcrumbs.mb-40 {
        margin-bottom: 20px;
    }

    section.aq-product-details-area.pt-50.pb-60 {
        padding-top: 30px;
        padding-bottom: 0px;
    }

    .aq-price-offered-row {
        flex-wrap: wrap;
    }

    .aq-details-rating-wrap {
        flex-wrap: wrap;
    }

    section.aq-new-arrivals-section.pt-60.pb-60 {
        padding: 30px 0px;
    }

    section.aq-related-products-section.pt-60.pb-60 {
        padding: 0px 0px;
    }

    .aq-luxury-page-wrap .aq-luxury-title {
        font-size: 28px;
    }

    .aq-luxury-form-wrapper {

        padding: 32px 20px;

    }

    .aq-offcanvas-logo a div,
    .aq-header-logo a div {

        font-size: 10px;

    }

    .aqf-why-us-title {
        font-size: 29px !important;
    }

    .aq-contact-page .aq-contact-btn-submit {

        padding: 10px 6px !important;

        font-size: 13px;

    }

    .aq-product-details-area .aq-product-gallery {

        padding: 0px 2px;

    }

    .aq-category-grid-section-main .aq-category-grid-section {
        padding: 0px 0;
    }

    .aq-filter-close-btn {
        position: absolute;
        top: 1px;
        right: 1px;
        padding: 2px 9px;
        font-size: 20px;
        border-radius: 10px;
        color: #ffffff;
        background: #c98f9d;
        border: none;
        cursor: pointer;
        display: none;
    }

    .aq-auth-section {
        padding: 30px 0;
        background: #fdfcfb;
    }

    .aq-terms-parent-wrapper {
        padding: 30px 0;
        /* background-color: #C98F9D; */
    }

    .aq-terms-parent-wrapper .aq-terms-content-wrapper {
        background: #ffffff;
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
        max-width: 900px;
        margin: 0 auto;
        border-left: 5px solid #C98F9D;
    }

    .aq-thankyou-wrapper {
        /* display: none; */
        padding: 30px 20px;

    }

    .aq-thankyou-card {

        padding: 60px 20px;

    }

    .aq-why-features-creative {
        padding: 30px 20px;
    }


}

/* Logo custom styling */
.aq-offcanvas-logo a,
.aq-header-logo a {
    text-decoration: none;
    display: inline-block;
}

.aq-offcanvas-logo a img,
.aq-header-logo a img {
    width: 220px;
    max-width: 100%;
    height: auto;
}

.aq-offcanvas-logo a div,
.aq-header-logo a div {
    font-family: 'Lucida Handwriting', cursive;
    text-align: center;
    font-size: 16px;
    margin-top: 0px;
    color: #000;
    padding-left: 50px;
}

/* Product Details Price Box */
.aq-details-price-box {
    background-color: var(--aq-color-cream);
    border-radius: 12px;
    border-left: 6px solid var(--aq-color-maroon);
}

.aq-details-price-box .mrp-label {
    color: #666;
    font-weight: 600;
    font-size: 14px;
}

.aq-details-price-box .mrp-value {
    text-decoration: line-through;
}

.aq-details-price-box .discount-badge {
    background-color: var(--aq-color-cream-dark);
    color: var(--aq-color-maroon);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.aq-details-price-box .aq-price-offered-row {
    margin-bottom: 12px;
}

.aq-details-price-box .offered-label {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.aq-details-price-box .aq-details-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--aq-color-maroon);
}

.aq-details-price-box .aq-details-price-unit {
    color: #666;
    font-size: 14px;
}

.aq-details-price-box .aq-moq-info-list {
    color: #555;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.aq-details-price-box .aq-moq-info-list i {
    color: #777;
    width: 20px;
}

.aq-details-price-box .aq-moq-info-list strong {
    color: #333;
}

.aq-product-size-row {
    display: flex;
}

.aq-details-nav-tabs .nav-link {
    white-space: nowrap;
}

/* Bulk Enquiry Modal Styles */
.aq-bulk-modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.aq-bulk-modal-close {
    top: 20px;
    right: 20px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 10px;
}

.aq-bulk-modal-left {
    background: linear-gradient(135deg, rgba(90, 62, 54, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%), url('../img/corporate/hero_gift_box_1778667986732.webp') center/cover no-repeat;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aq-bulk-modal-logo {
    max-width: 120px;
    filter: brightness(0) invert(1);
}

.aq-bulk-modal-title {
    font-weight: 700;
    color: #fff;
    font-size: 26px;
}

.aq-bulk-modal-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.aq-bulk-modal-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.aq-bulk-modal-feature-title {
    font-size: 13px;
    font-weight: 700;
}

.aq-bulk-modal-feature-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.aq-bulk-modal-right {
    background: #ffffff;
    padding: 40px;
}

.aq-bulk-modal-right-title {
    font-weight: 700;
    color: #000;
    font-size: 24px;
    margin-bottom: 8px;
}

.aq-bulk-modal-right-desc {
    color: #666;
    font-size: 14px;
}

.aq-bulk-modal-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.aq-bulk-modal-input {
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background-color: #fcfbf9;
    width: 100%;
}

.aq-bulk-modal-btn {
    border-radius: 8px !important;
    padding: 14px !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.aq-bulk-modal-success {
    text-align: center;
    padding: 30px 10px;
}

.aq-bulk-modal-success-icon {
    width: 70px;
    height: 70px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #28a745;
    margin: 0 auto 20px;
}

.aq-bulk-modal-success-title {
    font-weight: 700;
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
}

.aq-bulk-modal-success-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

/* Header Styles */
.aq-header-top-area.aq-header-top-bdr {
    position: sticky;
    top: 0;
    z-index: 1020;
    /* background-color: #fff !important; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
    background: rgb(255 246 246) !IMPORTANT;
}

.aq-header-top-bdr {
    background: rgb(255 246 246 / 43%);
}

.aq-header-search-form {
    position: relative;
}

.aq-header-search-form form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    padding: 2px 2px 2px 20px;
}

.aq-header-search-form form input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    background: transparent;
    box-shadow: none;
}

.aq-header-search-form form button {
    background: #c98f9d;
    color: #fff;
    border: none;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 2px;
}

.aq-header-right-options ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.aq-header-right-options button {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    color: #1c1c1c;
    cursor: pointer;
    z-index: 99;
}

.aq-header-right-options .count-box {
    background: #c98f9d;
    color: #fff;
}

/* JS Template Styles */
.aq-empty-state-icon {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 1rem;
}

.aq-empty-state-title {
    font-family: Outfit, sans-serif;
    color: #666;
}

.aq-empty-state-desc {
    font-family: Inter, sans-serif;
    color: #888;
}

.aq-product-card-desc {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #777;
    margin-bottom: 12px;
}


@media (max-width: 767px) {

    .aq-offcanvas-logo a div,
    .aq-header-logo a div {

        font-size: 10px;

    }

    .aqf-deals-subtitle-premium {
        margin-left: 0;
    }

    .aqf-deals-slider-arrow {
        margin-right: 0px;
    }

    .aqf-slider-dot {

        display: none;
    }

    .aqf-categories-area {

        padding-top: 40px;
    }

    .hero-section2 {
        padding: 20px 0 20px;

    }

    .aq-offcanvas-logo a img {
        width: 140px;
        max-width: 100%;
        height: auto;
    }

    .aq-corp-megamenu-col {

        padding: 20px 30px 0px;

    }

    .aq-corp-megamenu-heading {

        margin-bottom: 0px;
        padding-bottom: 12px;

    }

    .aqf-deals-tag-premium {

        width: 100%;
        text-align: center;
    }

    button.aq-offcanvas-close.aq-menu-close i.fal.fa-times {
        font-weight: 900;
    }

    .aq-cart-wrapper {
        padding: 30px 0 30px;
    }

    .aq-cart-wrapper {
        padding: 30px 0 30px;
    }

    .aq-blog-details-parent-wrapper.pt-120.pb-120 {
        padding-top: 30px;
    }



    .aq-blog-details-parent-wrapper .aq-blog-title {
        font-size: 26px;

    }

    .aq-blog-details-parent-wrapper .aq-blog-meta {
        display: flex;
        gap: 10px !important;
        /* margin-bottom: 10px; */
        border-bottom: 1px solid rgba(0, 49, 8, 0.1);
        padding-bottom: 13px;
    }

    .aq-blog-details-parent-wrapper .aq-blog-body p {

        margin-bottom: 10px !important;
    }

    .aq-blog-details-parent-wrapper .aq-blog-body h3 {

        margin: 20px 0 14px !important;
    }

    .aq-blog-highlight-box {
        padding: 0px !IMPORTANT;
    }

    .aq-blog-details-parent-wrapper .aq-blog-body ul li {

        align-items: baseline !IMPORTANT;
    }

    .aq-blog-footer {
        padding-top: 0px !IMPORTANT;
        margin-top: 0px !IMPORTANT;
    }

    .aq-blog-page-wrap .aq-blog-section {
        padding-top: 30px;
        padding-bottom: 40px;

    }

    .aq-faq-parent-wrapper {
        padding: 30px 0;

    }

    .aq-faq-header {
        margin-bottom: 30px;
        outline: none;
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
        background: transparent;
        box-shadow: none;
    }

    .aq-header-search-form form button {
        background: #c98f9d;
        color: #fff;
        border: none;
        border-radius: 50px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-left: 10px;
        margin-right: 2px;
    }

    .aq-header-right-options ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
    }

    .aq-header-right-options button {
        position: relative;
        background: transparent;
        border: none;
        padding: 0;
        color: #1c1c1c;
        cursor: pointer;
        z-index: 99;
    }

    .aq-header-right-options .count-box {
        background: #c98f9d;
        color: #fff;
    }

    /* JS Template Styles */
    .aq-empty-state-icon {
        font-size: 48px;
        color: #ccc;
        margin-bottom: 1rem;
    }

    .aq-empty-state-title {
        font-family: Outfit, sans-serif;
        color: #666;
    }

    .aq-empty-state-desc {
        font-family: Inter, sans-serif;
        color: #888;
    }

    .aq-product-card-desc {
        font-family: Inter, sans-serif;
        font-size: 12px;
        color: #777;
        margin-bottom: 12px;
    }


    @media (max-width: 767px) {

        .aq-offcanvas-logo a div,
        .aq-header-logo a div {

            font-size: 10px;

        }

        .aqf-deals-subtitle-premium {
            margin-left: 0;
        }

        .aqf-deals-slider-arrow {
            margin-right: 0px;
        }

        .aqf-slider-dot {

            display: none;
        }

        .aqf-categories-area {

            padding-top: 40px;
        }

        .hero-section2 {
            padding: 20px 0 20px;

        }

        .aq-offcanvas-logo a img {
            width: 140px;
            max-width: 100%;
            height: auto;
        }

        .aq-corp-megamenu-col {

            padding: 20px 30px 0px;

        }

        .aq-corp-megamenu-heading {

            margin-bottom: 0px;
            padding-bottom: 12px;

        }

        .aqf-deals-tag-premium {

            width: 100%;
            text-align: center;
        }

        button.aq-offcanvas-close.aq-menu-close i.fal.fa-times {
            font-weight: 900;
        }

        .aq-cart-wrapper {
            padding: 30px 0 30px;
        }

        .aq-cart-wrapper {
            padding: 30px 0 30px;
        }

        .aq-blog-details-parent-wrapper.pt-120.pb-120 {
            padding-top: 30px;
        }



        .aq-blog-details-parent-wrapper .aq-blog-title {
            font-size: 26px;

        }

        .aq-blog-details-parent-wrapper .aq-blog-meta {
            display: flex;
            gap: 10px !important;
            /* margin-bottom: 10px; */
            border-bottom: 1px solid rgba(0, 49, 8, 0.1);
            padding-bottom: 13px;
        }

        .aq-blog-details-parent-wrapper .aq-blog-body p {

            margin-bottom: 10px !important;
        }

        .aq-blog-details-parent-wrapper .aq-blog-body h3 {

            margin: 20px 0 14px !important;
        }

        .aq-blog-highlight-box {
            padding: 0px !IMPORTANT;
        }

        .aq-blog-details-parent-wrapper .aq-blog-body ul li {

            align-items: baseline !IMPORTANT;
        }

        .aq-blog-footer {
            padding-top: 0px !IMPORTANT;
            margin-top: 0px !IMPORTANT;
        }

        .aq-blog-page-wrap .aq-blog-section {
            padding-top: 30px;
            padding-bottom: 40px;

        }

        .aq-faq-parent-wrapper {
            padding: 30px 0;

        }

        .aq-faq-header {
            margin-bottom: 30px;
        }

        .aq-faq-parent-wrapper .aq-faq-main-title {
            font-size: 30px;

        }

        .faq-category h3 {
            font-size: 26px;
        }

        .aq-occasions-wrap.pt-90.pb-90 {
            padding-top: 30px;
        }
    }

    @media (max-width: 767px) {
        .aq-section-title {
            font-size: 28px !important;
        }
    }

    .text-center .aq-section-title::after,
    .aq-section-title.text-center::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }

    /* Scoped styles extracted from FAQ and Occasions */
    .aq-faq-parent-wrapper {
        background-color: #FAFAFA;
    }

    .aq-occasions-wrap {
        background-color: #fdfbfb;
    }

    .aq-faq-parent-wrapper .aq-section-desc,
    .aq-occasions-wrap .aq-section-desc {
        max-width: 600px;
        margin: 0 auto;
        color: #555;
    }

    .aq-section-title.force-center-line::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

}



.aq-blog-share.d-flex.align-items-center.gap-3 {
    margin-bottom: 10px;
}




@media (min-width: 992px) and (max-width: 1280px) {
    .aqf-slider-thumb.include-bg {
        /* Add your custom styles here */
        background-size: contain;
        /* Example */
    }

    .carddesign .col {
        flex: 0 0 auto;
        width: 25%;
    }

    .custom-fluid-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .aqf-collection-thumb {
        width: 100%;
        /*height: 330px;*/
        overflow: hidden;
        position: relative;
    }

    .gifting_left_button {
        /*display: none;*/
    }

    .aqf-testimonial-prev {
        left: -10px !important;
    }

    .aqf-testimonial-next {
        right: -10px !important;
    }

    .aqf-pastel-card {
        padding: 16px 28px;

    }

    .aq-catpage-main-layout .aq-btn-black {

        padding: 8px 8px !important;
        font-size: 11px !important;

    }
}




/* ===========================
   AQ Premium Product Accordion
   Theme: #C98F9D
=========================== */

.aq-product-accordion {
    --theme: #C98F9D;
    --theme-light: #FDF4F6;
    --border: #efd6dc;
    --text: #2d2d2d;
    --radius: 18px;
}

.aq-product-accordion .accordion {
    border: none;
}

.aq-product-accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0px !important;
    overflow: hidden;
    margin-bottom: 6px;
    box-shadow:
        0 10px 30px rgba(201, 143, 157, .10);
    transition: .35s ease;
}

.aq-product-accordion .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(201, 143, 157, .18);
}

/* Header */

.aq-product-accordion .accordion-header {
    margin: 0;
}

.aq-product-accordion .accordion-button {
    background: #fff;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    padding: 14px 26px;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
}

.aq-product-accordion .accordion-button:focus {
    box-shadow: none;
}

/* Open State */

.aq-product-accordion .accordion-button:not(.collapsed) {

    background: linear-gradient(90deg, #FDF4F6, #FFF);
    color: #000;
    border-bottom: 1px solid var(--border);

}

/* Left Pink Circle Icon */

.aq-product-accordion .accordion-button::before {

    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme);
    margin-right: 18px;
    flex-shrink: 0;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px;

}

/* Default Icon (Document) */

.aq-product-accordion .accordion-item:nth-child(1) .accordion-button::before {

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M6 2h9l5 5v15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1.5V8h4.5'/%3E%3C/svg%3E");

}

/* Fabric */

.aq-product-accordion .accordion-item:nth-child(2) .accordion-button::before {

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l6 4v5c0 5-3.5 8-6 9-2.5-1-6-4-6-9V7l6-4z'/%3E%3C/svg%3E");

}

/* Shipping */

.aq-product-accordion .accordion-item:nth-child(3) .accordion-button::before {

    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M3 5h11v10H3zm11 3h3l3 3v4h-6z"/%3E%3C/svg%3E');

}

/* Review */

.aq-product-accordion .accordion-item:nth-child(4) .accordion-button::before {

    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"%3E%3Cpath d="M12 2l3 7h7l-5.5 4.5L18 21l-6-3.5L6 21l1.5-7.5L2 9h7z"/%3E%3C/svg%3E');

}

/* Customization */

.aq-product-accordion .accordion-item:nth-child(5) .accordion-button::before,
.aq-product-accordion #headingCustomization .accordion-button::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9v7c0 1.1.9 2 2 2h4v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h4c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9z'/%3E%3C/svg%3E");
}

/* Reviews */

.aq-product-accordion .accordion-item:nth-child(6) .accordion-button::before,
.aq-product-accordion #headingReviews .accordion-button::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E");
}

/* Arrow */

.aq-product-accordion .accordion-button::after {

    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F9ECEF;
    background-position: center;
    background-size: 18px;
    transition: .35s;

}

.aq-product-accordion .accordion-button:not(.collapsed)::after {

    background-color: var(--theme);

    /*filter:brightness(0) invert(1);*/

    transform: rotate(-180deg);

}

/* Body */

.aq-product-accordion .accordion-body {

    background: #fff;
    padding: 30px;
    color: #555;
    line-height: 1.9;
    font-size: 15px;
    position: relative;

}

/* Decorative left border */

/*.aq-product-accordion .accordion-body::before{*/

/*    content:"";*/
/*    position:absolute;*/
/*    left:30px;*/
/*    top:30px;*/
/*    bottom:30px;*/
/*    width:4px;*/
/*    border-radius:30px;*/
/*    background:*/
/*    repeating-linear-gradient(*/
/*    to bottom,*/
/*    var(--theme),*/
/*    var(--theme) 5px,*/
/*    transparent 5px,*/
/*    transparent 12px*/
/*    );*/

/*}*/

.aq-product-accordion .accordion-body>* {

    margin-left: 28px;

}

/* Review Images */

.aq-product-accordion .aq-review-images img {

    border-radius: 12px;
    transition: .3s;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);

}

.aq-product-accordion .aq-review-images img:hover {

    transform: scale(1.05);

}

.aq-product-details-area .aq-qty-selector {
    width: 75%;
}


/* Mobile */

@media(max-width:768px) {

    .aq-product-accordion .accordion-button {

        padding: 18px;

        font-size: 16px;

    }

    .aq-product-accordion .accordion-button::before {

        width: 42px;
        height: 42px;
        margin-right: 12px;

    }

    .aq-product-accordion .accordion-button::after {

        width: 36px;
        height: 36px;

    }

    .aq-product-accordion .accordion-body {

        padding: 20px;

    }


    .aq-product-details-area .aq-qty-selector {
        width: 100%;
        justify-content: center;
    }

}





/*=================================
      AQ STITCHING BOX
==================================*/

.aq-stitching-box {

    --theme: #C98F9D;
    --theme-light: #FDF6F8;
    --border: #e5e5e5;
    --text: #222;

    margin: 15px 0;

}

.aq-stitching-box .aq-stitch-card {

    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    overflow: hidden;

}

.aq-stitching-box .card-body {
    padding: 20px 30px;
}

/* Heading */

.aq-stitching-box .aq-title {

    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
    font-family: Georgia, serif;

}

.aq-stitching-box .aq-subtitle {

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 15px !IMPORTANT;

}

/* Option */

.aq-stitching-box .aq-option {

    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 12px;
    user-select: none;

}

.aq-stitching-box .aq-option input {

    display: none;

}

/* Custom Checkbox */

.aq-stitching-box .aq-checkbox {

    width: 20px;
    height: 20px;
    border: 2px solid #444;
    background: #fff;
    margin-right: 18px;
    position: relative;
    transition: .3s;

}

/* Checked */

.aq-stitching-box .aq-option input:checked+.aq-checkbox {

    background: var(--theme);
    border-color: var(--theme);

}

.aq-stitching-box .aq-option input:checked+.aq-checkbox::after {

    content: "âœ“";
    position: absolute;
    color: #fff;
    font-size: 18px;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);

}

/* Text */

.aq-stitching-box .aq-text {

    font-size: 12px;
    color: #222;
    font-family: Georgia, serif;
    line-height: 1.5;

}

.aq-stitching-box .aq-text strong {

    font-weight: 500;
    color: #222;

}

/* Hover */

.aq-stitching-box .aq-option:hover .aq-text {

    color: var(--theme);

}

.aq-stitching-box .aq-option:hover .aq-checkbox {

    border-color: var(--theme);

}

/* Responsive */

@media(max-width:991px) {

    .aq-stitching-box .card-body {

        padding: 30px;

    }

    .aq-stitching-box .aq-title {

        font-size: 32px;

    }

    .aq-stitching-box .aq-subtitle {

        font-size: 18px;

    }

    .aq-stitching-box .aq-text {

        font-size: 18px;

    }

}

@media(max-width:576px) {

    .aq-stitching-box .card-body {

        padding: 20px;

    }

    .aq-stitching-box .aq-title {

        font-size: 28px;

    }

    .aq-stitching-box .aq-subtitle {

        margin-bottom: 20px;
        letter-spacing: 1px;

    }

    .aq-stitching-box .aq-checkbox {

        width: 20px;
        height: 20px;
        margin-right: 12px;

    }

    .aq-stitching-box .aq-text {

        font-size: 16px;

    }

}



/*=====================================
        PRODUCT DETAILS CARD
======================================*/

.aq-creative-details-block {

    display: flex;
    flex-direction: column;
    gap: 22px;

}

/* One Card */

.aq-creative-details-block .aq-detail-item {

    position: relative;
    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

    transition: .35s;

}

/* Left Pink Border */

.aq-creative-details-block .aq-detail-item::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #C98F9D;

}

/* Hover */

.aq-creative-details-block .aq-detail-item:hover {

    transform: translateY(-3px);

    box-shadow: 0 18px 40px rgba(201, 143, 157, .18);

}

/* Inner Content */

.aq-creative-details-block .aq-detail-content {
    padding: 12px 24px 12px 24px;
}

/* Label */

.aq-creative-details-block .aq-detail-label {

    display: block;

    color: #8b8b8b;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 6px;

}

/* Value */

.aq-creative-details-block .aq-detail-value {
    display: inline-block;
    background: #C98F9D;
    color: #fff;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    transition: .3s;
}

/* Hover Value */

.aq-creative-details-block .aq-detail-item:hover .aq-detail-value {

    background: #b67b89;

}

/* Mobile */

@media(max-width:768px) {

    .aq-creative-details-block .aq-detail-content {

        padding: 18px;

    }

    .aq-creative-details-block .aq-detail-label {

        font-size: 14px;

    }

    .aq-creative-details-block .aq-detail-value {

        font-size: 15px;

        padding: 9px 14px;

    }

    .aq-offcanvas-logo a div,
    .aq-header-logo a div {

        padding-left: 0px;
        font-size: 12px;
    }

}


#aq-pagination-wrapper .hidden.sm\:flex-1.sm\:flex.sm\:gap-2.sm\:items-center.sm\:justify-between {
    display: none;
}


/* ===========================
   Category List
=========================== */

.aq-filter-widget.aq-filter-sidebar .aq-filter-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.aq-filter-widget.aq-filter-sidebar .aq-filter-item {
    list-style: none;
    border-bottom: 1px solid #e7e7e7;
    padding: 0;
    transition: all .3s ease;
}

.aq-filter-widget.aq-filter-sidebar .aq-filter-item:last-child {
    border-bottom: none;
}

.aq-filter-widget.aq-filter-sidebar .aq-filter-item>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.aq-filter-widget.aq-filter-sidebar .aq-filter-label {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    transition: .3s;
}

.aq-filter-widget.aq-filter-sidebar .aq-category-count {
    color: #8b8b8b;
    font-weight: 400;
    margin-left: 4px;
}

.aq-filter-widget.aq-filter-sidebar .fa-chevron-right {
    font-size: 12px;
    color: #999;
    transition: .3s;
}

.aq-filter-widget.aq-filter-sidebar .aq-filter-item:hover>.d-flex,
.aq-filter-widget.aq-filter-sidebar .aq-filter-item.active>.d-flex {
    color: #000;
}

.aq-filter-widget.aq-filter-sidebar .aq-filter-item:hover .aq-filter-label,
.aq-filter-widget.aq-filter-sidebar .aq-filter-item.active .aq-filter-label {
    font-weight: 600;
}

.aq-filter-widget.aq-filter-sidebar .aq-filter-item:hover .fa-chevron-right,
.aq-filter-widget.aq-filter-sidebar .aq-filter-item.active .fa-chevron-right {
    transform: translateX(-3px);
    color: #000;
}


.aqf-testimonial-image-creative {
    flex: 0 0 250px;
    width: 250px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: var(--aq-color-maroon) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aqf-testimonial-image-creative img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* --- First Time Modal Styles --- */
.first-time-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

.first-time-modal {
    background: #fff;
    width: 750px;
    max-width: 90%;
    height: 400px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
}

.close-modal-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    z-index: 10;
    font-weight: 300;
}

.first-time-modal-content {
    display: flex;
    height: 100%;
}

.modal-left-side {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e9dcc9;
}

.modal-left-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* cover ki jagah contain */
    display: block;
}

.modal-left-text {
    position: absolute;
    top: 25px;
    left: 20px;
    color: #4a2f26;
}

.modal-left-text span {
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
    color: white;
}

.modal-left-text h2 {
    font-size: 34px;
    margin: 0;
    font-style: italic;
    /*font-family: 'Times New Roman', serif;*/
    font-weight: bold;
    letter-spacing: -0.5px;
    color: white;
}

.modal-left-text .arrivals-text {
    font-size: 18px;
    font-style: italic;
    text-align: right;
    margin-top: -2px;
    color: white;
}

.modal-right-side {
    width: 55%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.modal-right-side h3 {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.modal-right-side p {
    font-size: 14px;
    color: #444;
    margin-bottom: 22px;
    line-height: 1.5;
}

.first-time-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.first-time-form input[type="email"],
.first-time-form input[type="tel"] {
    width: 100%;
    padding: 0px 15px;
    border: 1px solid #c0c0c0;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
    color: #333;
}

.first-time-form input::placeholder {
    color: #999;
}

.phone-input-group {
    display: flex;
    border: 1px solid #c0c0c0;
    border-radius: 3px;
    overflow: hidden;
}

.phone-input-group .country-code {
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #f7f7f7;
    border-right: 1px solid #c0c0c0;
    gap: 6px;
    font-size: 14px;
    color: #333;
}

.phone-input-group .country-code img {
    border-radius: 1px;
}

.phone-input-group .dropdown-arrow {
    font-size: 10px;
    color: #666;
    margin-left: 2px;
}

.phone-input-group input[type="tel"] {
    border: none;
    border-radius: 0;
    flex: 1;
}

.phone-input-group input[type="tel"]:focus {
    outline: none;
}

.whatsapp-optin {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #333;
    gap: 6px;
    text-align: left;
    margin-top: 2px;
    cursor: pointer;
}

.whatsapp-optin input[type="checkbox"] {
    margin: 0 !important;
    cursor: pointer !important;
    appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    border: 1px solid #999 !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: white !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    position: relative !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.whatsapp-optin img {
    vertical-align: middle;
    margin-left: 2px;
    margin-right: 2px;
}

.claim-now-btn {
    background: #c98f9d;
    color: white;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 5px;
}

.claim-now-btn:hover {
    background: #c98f9d;
}

/* Promo Discount Box */
.aq-promo-discount-box {
    display: flex;
    align-items: center;
    background-color: #fafdfc;
    border: 1px solid #eef2f1;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 25px;
    border-left: 6px solid #3b827a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.aq-promo-icon-bg {
    width: 54px;
    height: 54px;
    background-color: #e4f4f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.aq-promo-svg {
    color: #222;
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

.aq-promo-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aq-promo-code {
    background-color: #3b827a;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.aq-promo-text {
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.first-time-modal-content .whatsapp-optin input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    accent-color: #007bff;
    height: auto;
    width: auto;
}


.coupon-container {
    max-width: 600px;
    margin: 0 auto;
}


.coupon-card {
    display: flex;
    align-items: center;
    background-color: #f9fdfd;
    border-left: 5px solid var(--aq-color-maroon);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 16px 20px;
    margin-bottom: 24px;
    gap: 16px;
    transition: transform 0.2s ease;
}


.coupon-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #e0f4f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.coupon-icon img {
    width: 32px;
    height: 32px;
}


.coupon-details {
    display: flex;
    flex-direction: column;
}

.coupon-code {
    background-color: var(--aq-color-maroon);
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 18px;
    margin-bottom: 6px;
    display: inline-block;
    width: fit-content;
}

.coupon-desc {
    color: #444;
    font-size: 14px;
    font-weight: 600;
}


.aq-product-tab-btn .nav-links {
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    background: var(--aq-color-white) !important;
    color: #6e5e59 !important;
    margin-left: 12px !important;
    transition: all .3s cubic-bezier(.4, 0, .2, 1) !important;
    border: 1px solid var(--aq-color-cream-dark) !important;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .first-time-modal {
        flex-direction: column;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .first-time-modal-content {
        flex-direction: column;
    }

    .modal-left-side,
    .modal-right-side {
        width: 100%;
    }

    .modal-left-side {
        height: 250px;
    }
}

/* Offer Bar Slider Styles */
.offer-bar {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 40px;
    /* Adjust height based on content */
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-item {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    pointer-events: none;
    font-size: 14px;
    font-weight: 500;
}

.offer-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.offer-item.prev {
    opacity: 0;
    transform: translateY(-100%);
}

/* Mobile Header Logo fixes */
@media (max-width: 767px) {
    .mobile-logo-img {
        width: 140px !important;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

}

/* Mobile View */
@media (min-width: 768px) and (max-width: 1199px) {
    .aq-header-bottom-area {
        display: block !Important;
    }
}

@media (max-width: 768px) {

    .modal-left-side {
        display: none;
    }

    .modal-right-side {
        width: 100%;
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .first-time-modal {
        width: calc(100% - 30px);
        max-width: 420px;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 8px;
    }

    .first-time-modal-content {
        display: block;
    }

    .close-modal-btn {
        top: 10px;
        right: 12px;
        font-size: 30px;
    }
}

/* Custom mobile menu inner list styling for 776px to 1080px */
@media (min-width: 776px) and (max-width: 1207px) {
   .aq-mobile-menu-active > ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 15px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    overflow-y: hidden;
}
    
    .aq-mobile-menu-active > ul::-webkit-scrollbar {
        height: 7px;
    }
    
    .aq-mobile-menu-active > ul::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .aq-mobile-menu-active > ul::-webkit-scrollbar-thumb {
        background: var(--aq-color-maroon, #C98F9D);
        border-radius: 10px;
    }
    
    .aq-mobile-menu-active > ul > li {
        flex: 0 0 auto !important;
        display: inline-block !important;
    }
}




@media (min-width: 776px) and (max-width: 992px) {
    
 .aqf-pastel-inner > div:last-child {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}  


    .aqf-testimonial-card-creative {
        flex-direction: row;
    
    }
    
 
    
  
}


@media (max-width: 576px)  {



    .aqf-testimonial-card-creative {
        flex-direction: column;
    
    }
    
  
}










/* Custom mobile tab nav styling for screens up to 767px */
@media (max-width: 992px) {
    .aq-luxury-tab-nav.flex-column {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        overflow-y: hidden;
    }

    .aq-luxury-tab-nav::-webkit-scrollbar {
        height: 5px;
    }

    .aq-luxury-tab-nav::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .aq-luxury-tab-nav::-webkit-scrollbar-thumb {
        background: var(--aq-color-maroon, #C98F9D);
        border-radius: 10px;
    }

    .aq-luxury-tab-nav > .aq-luxury-tab-card {
        flex: 0 0 auto !important;
        display: inline-block !important;
        width: auto !important;
        margin-bottom: 0 !important;
    }
    
    
    .coupon-code {
 
    font-size: 13px;
   
}

.aq-product-accordion .accordion-button {
    font-size: 12px!important;
    
}

.coupon-container {
    max-width: 100%;
    margin: 0 auto;
}
}



@media (min-width: 992px) and (max-width: 1200px) {
    
   .last_child_hide_in_tabs> div:last-child {
       
        display:none !Important;
   
    }
   
    }
    



