.section-hero {
    min-height: auto !important;
    padding: 0 !important;
    aspect-ratio: 1920 / 650;
}

.section-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid {
    grid-template-columns: 1fr !important;
}

@media (min-width: 1024px) {
    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ===========================
   GRID LAYOUT
=========================== */

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
}

@media (min-width: 1024px) {
    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ===========================
   PREMIUM CARDS
=========================== */

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div {
    position: relative;
    overflow: hidden;

    padding: 90px 25px 35px !important;

    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(212,175,55,.15);

    box-shadow:
        0 10px 30px rgba(0,0,0,.05),
        0 2px 10px rgba(0,0,0,.03);

    transition: all .4s cubic-bezier(.22,1,.36,1);

    text-align: center;
}

/* Gold Glow Background */

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div::after {
    content: "";
    position: absolute;

    top: -50px;
    right: -50px;

    width: 140px;
    height: 140px;

    background: radial-gradient(
        circle,
        rgba(212,175,55,.15),
        transparent 70%
    );

    pointer-events: none;
}

/* ===========================
   ICONS
=========================== */

/* Base Icon */

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div::before {
    position: absolute;

    top: 24px;
    left: 50%;

    transform: translateX(-50%);

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #D4AF37,
        #F7E7A8
    );

    font-size: 28px;

    box-shadow:
        0 8px 20px rgba(212,175,55,.25);

    transition: all .4s ease;
}

/* Money Back */

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div:nth-child(1)::before {
    content: "💰";
}

/* Natural Ingredients */

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div:nth-child(2)::before {
    content: "🌿";
}

/* Shipping */

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div:nth-child(3)::before {
    content: "🚚";
}

/* ===========================
   TEXT
=========================== */

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 12px !important;
    transition: .3s;
}

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] p {
    color: #666 !important;
    line-height: 1.8;
    font-size: 15px !important;
    max-width: 280px;
    margin: 0 auto;
}

/* ===========================
   DESKTOP HOVER
=========================== */

@media (hover:hover) {

    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div:hover {

        transform:
            translateY(-12px)
            scale(1.03);

        border-color:
            rgba(212,175,55,.35);

        box-shadow:
            0 25px 50px rgba(0,0,0,.12),
            0 10px 25px rgba(212,175,55,.18);
    }

    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div:hover::before {

        transform:
            translateX(-50%)
            scale(1.15)
            rotate(8deg);
    }

    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div:hover h3 {
        color: #D4AF37 !important;
    }
}

/* ===========================
   MOBILE PREMIUM EFFECT
=========================== */

@media (max-width:1023px) {

    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div {

        animation:
            luxuryFloat 4s ease-in-out infinite;

        border-color:
            rgba(212,175,55,.25);

        box-shadow:
            0 15px 35px rgba(0,0,0,.08),
            0 6px 15px rgba(212,175,55,.12);
    }

    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div:nth-child(2) {
        animation-delay: .5s;
    }

    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] .grid > div:nth-child(3) {
        animation-delay: 1s;
    }

    [section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] h3 {
        color: #D4AF37 !important;
    }
}

/* ===========================
   FLOATING ANIMATION
=========================== */

@keyframes luxuryFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ===== PREMIUM PRODUCT CARD ===== */

[data-product-card]{
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    overflow: hidden;
    position: relative;
    transition: all .4s ease;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow:
        0 10px 30px rgba(0,0,0,.06),
        0 1px 2px rgba(0,0,0,.04);
}

[data-product-card]:hover{
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0,0,0,.15),
        0 10px 25px rgba(0,0,0,.08);
}

/* Shine Effect */
[data-product-card]::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
    transition:1s;
    z-index:2;
}

[data-product-card]:hover::before{
    left:150%;
}

/* Product Image */
[data-product-card] > a:first-child{
    border-radius:20px;
    overflow:hidden;
    position:relative;
    background:#f8f8f8;
}

[data-product-card] img{
    width:100%;
    transition:all .6s ease;
}

[data-product-card]:hover img{
    transform:scale(1.08);
}

/* Dark Overlay */
[data-product-card] > a:first-child::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.25),
        transparent 50%
    );
    opacity:0;
    transition:.4s;
}

[data-product-card]:hover > a:first-child::after{
    opacity:1;
}

/* Product Title */
[data-product-card] h3{
    margin-top:10px;
}

[data-product-card] h3 a{
    font-size:18px !important;
    font-weight:700 !important;
    line-height:1.5;
    color:#111;
    transition:.3s;
}

[data-product-card]:hover h3 a{
    color:#d89a4e;
}

/* Current Price */
[data-product-card] .font-semibold{
    font-size:24px !important;
    font-weight:800 !important;
    color:#111;
}

/* Old Price */
[data-product-card] .line-through{
    color:#999 !important;
    font-size:14px !important;
}

/* Discount Badge */
[data-product-card] .bg-success\/20{
    background: linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    ) !important;

    color:#fff !important;
    border-radius:50px;
    padding:6px 14px !important;
    font-weight:700;
    box-shadow:0 8px 20px rgba(34,197,94,.3);
}

/* Pre Order Badge */
[data-product-card] .bg-\[\#6f42c1\]{
    background: linear-gradient(
        135deg,
        #8b5cf6,
        #6d28d9
    ) !important;

    border:none !important;
    border-radius:50px;
    padding:8px 14px !important;
    font-weight:600;
    backdrop-filter:blur(10px);
}

/* Wishlist Button */
[data-wishlist-btn]{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.95)!important;
    backdrop-filter:blur(15px);
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

[data-wishlist-btn]:hover{
    transform:scale(1.15);
    background:#fff!important;
}

[data-wishlist-btn]:hover svg{
    stroke:#ef4444;
}

/* CTA Button */
[data-product-card] .btn-outlined{
    width:100%;
    border:none !important;
    border-radius:14px !important;
    background:linear-gradient(
        135deg,
        #111,
        #333
    ) !important;

    color:#fff !important;
    font-weight:700;
    height:54px;
    transition:.4s;
    overflow:hidden;
    position:relative;
}

[data-product-card] .btn-outlined:hover{
    background:linear-gradient(
        135deg,
        #d89a4e,
        #f4c27a
    ) !important;

    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(216,154,78,.35);
}

/* Description */
[data-product-card] .text-muted{
    color:#777;
    line-height:1.7;
}

/* Mobile Optimization */
@media(max-width:768px){

    [data-product-card]{
        padding:12px;
        border-radius:18px;
    }

    [data-product-card] h3 a{
        font-size:15px !important;
    }

    [data-product-card] .font-semibold{
        font-size:20px !important;
    }

    [data-product-card] .btn-outlined{
        height:48px;
        font-size:14px;
    }

    [data-wishlist-btn]{
        width:42px;
        height:42px;
    }

    [data-product-card]:hover{
        transform:none;
    }

    [data-product-card]:hover img{
        transform:scale(1.04);
    }
}

/* =========================
   PREMIUM LUXURY FOOTER
========================= */

#footer{
    position:relative;
    background:#0f0f0f !important;
    color:#fff;
    overflow:hidden;
}

/* Background Effect */
#footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(212,175,55,.15),
        transparent 35%),
        radial-gradient(circle at bottom left,
        rgba(255,255,255,.05),
        transparent 40%);
    pointer-events:none;
}

/* Main Container */
#footer .theme-container{
    position:relative;
    z-index:2;
}

/* Logo */
#footer img{
    transition:.5s;
}

#footer img:hover{
    transform:scale(1.05);
}

/* Headings */
#footer h3{
    font-size:18px !important;
    font-weight:700 !important;
    color:#D4AF37 !important;
    margin-bottom:20px;
    position:relative;
}

#footer h3::after{
    content:"";
    display:block;
    width:50px;
    height:2px;
    background:linear-gradient(
        90deg,
        #D4AF37,
        transparent
    );
    margin-top:10px;
}

/* Brand Story */
#footer p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    font-size:14px;
}

/* Links */
#footer ul li a{
    color:rgba(255,255,255,.75) !important;
    transition:.3s;
    position:relative;
}

#footer ul li a:hover{
    color:#D4AF37 !important;
    padding-right:10px;
}

#footer ul li a::before{
    content:"›";
    opacity:0;
    margin-left:0;
    transition:.3s;
}

#footer ul li a:hover::before{
    opacity:1;
    margin-left:6px;
}

/* Social Icons */
#footer .flex.gap-3 a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

#footer .flex.gap-3 a:hover{
    transform:translateY(-6px);
    background:#D4AF37;
    color:#111 !important;
    box-shadow:
        0 15px 35px rgba(212,175,55,.35);
}

#footer .flex.gap-3 svg{
    width:20px;
    height:20px;
}

/* Contact Section */
#footer [href^="mailto"],
#footer [href^="tel"]{
    color:#fff !important;
    font-weight:500;
}

#footer [href^="mailto"]:hover,
#footer [href^="tel"]:hover{
    color:#D4AF37 !important;
}

/* Bottom Bar */
#footer .border-t{
    border-color:rgba(255,255,255,.08) !important;
    margin-top:50px;
    padding-top:30px;
}

/* Payment Icons */
#footer .border-t img{
    background:#fff;
    padding:8px;
    border-radius:12px;
    transition:.3s;
}

#footer .border-t img:hover{
    transform:translateY(-4px);
    box-shadow:
        0 10px 25px rgba(212,175,55,.25);
}

/* Commercial Registration */
#footer .text-muted{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    padding:10px 16px;
    border-radius:50px;
    color:#D4AF37 !important;
    font-weight:600;
}

/* Copyright */
#footer .text-foreground.text-sm{
    color:rgba(255,255,255,.75) !important;
}

/* Footer Columns */
#footer .grid{
    gap:50px !important;
}

/* Floating Glow */
#footer::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(212,175,55,.05);
    filter:blur(100px);
    top:-250px;
    right:-200px;
    pointer-events:none;
}

/* Mobile */
@media(max-width:768px){

    #footer{
        text-align:center;
    }

    #footer h3::after{
        margin:10px auto 0;
    }

    #footer .flex.gap-3{
        justify-content:center;
    }

    #footer ul{
        padding:0;
    }

    #footer ul li{
        margin-bottom:8px;
    }

    #footer .border-t .flex{
        gap:20px;
    }

    #footer .text-muted{
        display:inline-block;
        margin-top:10px;
    }
}

#footer{
    border-top:1px solid rgba(212,175,55,.2);
}

#footer:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #D4AF37,
        #fff,
        #D4AF37,
        transparent
    );
}

/* =========================
   SOCIAL ICONS - WHITE
========================= */

#footer .flex.gap-3 a{
    color:#fff !important;
}

#footer .flex.gap-3 a svg{
    color:#fff !important;
    fill:currentColor;
}

#footer .flex.gap-3 a:hover{
    background:#D4AF37 !important;
    color:#fff !important;
}

#footer .flex.gap-3 a:hover svg{
    color:#fff !important;
}


/* =========================
   BIGGER PAYMENT ICONS
========================= */

#footer .border-t img{
    height:42px !important;
    width:auto !important;
    max-width:none !important;
    padding:10px !important;
    border-radius:14px;
    background:#fff;
}

#footer .border-t a{
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Desktop */
@media (min-width:768px){

    #footer .border-t img{
        height:52px !important;
        padding:12px !important;
    }

}

/* Mobile */
@media (max-width:767px){

    #footer .border-t img{
        height:40px !important;
        padding:8px !important;
    }

}

/* =========================
   PERFECT MOBILE CENTERING
========================= */

@media (max-width: 768px) {

    /* Entire Footer */
    #footer,
    #footer *{
        text-align:center !important;
    }

    /* Footer Columns */
    #footer .grid{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        gap:40px !important;
    }

    /* Logo */
    #footer img{
        margin-left:auto !important;
        margin-right:auto !important;
    }

    /* Social Icons */
    #footer .flex.gap-3{
        justify-content:center !important;
        align-items:center !important;
        width:100%;
    }

    /* Important Links */
    #footer ul{
        padding:0 !important;
        margin:0 auto !important;
    }

    #footer ul li{
        justify-content:center !important;
        text-align:center !important;
    }

    /* Contact Section */
    #footer li.flex.items-center{
        justify-content:center !important;
        align-items:center !important;
        width:100%;
    }

    /* Email + Phone */
    #footer a[href^="mailto"],
    #footer a[href^="tel"]{
        margin:0 !important;
    }

    /* Icons beside email and phone */
    #footer .shrink-0{
        margin-left:8px !important;
        margin-right:8px !important;
    }

    /* Bottom Area */
    #footer .border-t .flex{
        justify-content:center !important;
        align-items:center !important;
        text-align:center !important;
    }

    /* Payment Icons Wrapper */
    #footer .border-t .flex.flex-wrap{
        justify-content:center !important;
        gap:12px !important;
        width:100%;
    }

    /* Payment Icons */
    #footer .border-t img{
        height:50px !important;
        margin:auto !important;
    }

    /* Commercial Registration */
    #footer .text-muted{
        display:block !important;
        width:100%;
        text-align:center !important;
        margin-top:20px !important;
    }

    /* Headings underline */
    #footer h3::after{
        margin:12px auto 0 !important;
    }
}

/* =========================
   PREMIUM LUXURY HEADER
========================= */

header.bg-secondary {
    position: sticky;
    top: 15px;
    z-index: 999;
    width: calc(100% - 40px);
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,.15) !important;
    background: rgba(255,255,255,.75) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow:
        0 10px 40px rgba(0,0,0,.08),
        0 1px 0 rgba(255,255,255,.6) inset;
    transition: all .4s ease;
}

/* Container */
header .theme-container {
    max-width: 1400px;
}

/* =========================
   LOGO
========================= */

header img {
    transition: all .4s ease;
}

header img:hover {
    transform: scale(1.05);
}

/* =========================
   MENU
========================= */

header ul.lg\:flex {
    gap: 40px !important;
}

header ul.lg\:flex a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: all .3s ease;
    padding-bottom: 8px;
}

/* Animated Underline */

header ul.lg\:flex a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #e8b4c7,
        #fed4d5
    );
    transition: .35s ease;
}

header ul.lg\:flex a:hover::after {
    width: 100%;
}

header ul.lg\:flex a:hover {
    color: #e8b4c7 !important;
    transform: translateY(-2px);
}

/* =========================
   ICONS
========================= */

header ul:last-child li a,
header ul:last-child li button {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px;
    transition: all .35s ease;
}

header ul:last-child li a:hover,
header ul:last-child li button:hover {
    background: rgba(232,180,199,.12);
    transform: translateY(-3px);
}

header ul:last-child svg {
    transition: .35s ease;
}

header ul:last-child li:hover svg {
    transform: scale(1.12);
    color: #e8b4c7;
}

/* =========================
   CART BADGE
========================= */

[data-cart-badge] {
    background: linear-gradient(
        135deg,
        #e8b4c7,
        #fed4d5
    ) !important;
    
    color: #000 !important;
    
    font-weight: 700;
    
    width: 22px !important;
    height: 22px !important;
    
    box-shadow:
        0 0 15px rgba(232,180,199,.5);
}

/* =========================
   SEARCH MODAL
========================= */

#search-dialog .bg-background {
    background: rgba(255,255,255,.95) !important;
    backdrop-filter: blur(30px);
}

#search-input {
    border-radius: 14px !important;
    height: 56px !important;
}

/* =========================
   MOBILE MENU
========================= */

#mobile-drawer .bg-background {
    background: rgba(255,255,255,.95) !important;
    backdrop-filter: blur(30px);
}

#mobile-drawer a {
    border-radius: 14px;
    margin: 0 12px;
    transition: all .3s ease;
}

#mobile-drawer a:hover {
    background: rgba(232,180,199,.12);
    transform: translateX(-5px);
}

/* =========================
   HAMBURGER
========================= */

#mobile-drawer-dialog button span {
    height: 2px !important;
    border-radius: 50px;
}

/* =========================
   PREMIUM SCROLL EFFECT
========================= */

header.bg-secondary:hover {
    box-shadow:
        0 15px 50px rgba(0,0,0,.12),
        0 1px 0 rgba(255,255,255,.8) inset;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

header.bg-secondary{
    width: calc(100% - 16px);
    top: 8px;
    border-radius: 16px;
    padding-inline: 10px;
}

header img{
    max-height:40px !important;
}

header ul:last-child li a,
header ul:last-child li button{
    width:42px !important;
    height:42px !important;
}

}

[section-id="3dad4298-9f17-42c8-b0f4-2e4fc2a8bd25"] {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

[section-id="618b4bbe-6df1-478c-90a2-5ebf227a5d59"] {
    margin-block: 40px !important;
}

#main > section:nth-child(5) {
    margin-block: 40px !important;
}