﻿/**
 * Homepage Styles
 */

/* ---- Hero ---- */
.dw-hero {
    position: relative;
    background: var(--dw-bg-primary);
    padding: var(--dw-space-2xl) 0 var(--dw-space-3xl);
    overflow: hidden;
}

    .dw-hero::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 50%;
        height: 80%;
        background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.dw-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--dw-space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .dw-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--dw-space-2xl);
    }
}

.dw-hero-copy {
    position: relative;
    z-index: 2;
}

.dw-hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--dw-border-gold);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dw-gold-premium);
    margin-bottom: var(--dw-space-md);
}

.dw-hero-title {
    /* font-family: var(--dw-font-display); */
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dw-text-primary);
    margin-bottom: var(--dw-space-md);
}

    .dw-hero-title em {
        font-style: normal;
        background: var(--dw-gradient-gold-h);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.dw-hero-lead {
    font-size: 1.125rem;
    color: var(--dw-text-muted);
    line-height: 1.75;
    margin-bottom: var(--dw-space-lg);
    max-width: 520px;
}

.dw-hero-visual {
    position: relative;
}

.dw-hero-carousel-wrap {
    border-radius: var(--dw-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dw-border-gold);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.dw-hero-carousel-wrap.dw-hero-carousel-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
}

.dw-hero-carousel-wrap #myCarousel {
    margin: 0;
}

.dw-hero-carousel-wrap .carousel-inner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.dw-hero-carousel-wrap .carousel-control {
    background: none;
    width: 48px;
    opacity: 0.8;
}

.dw-hero-carousel-wrap .carousel-control .fa {
    color: var(--dw-gold-premium);
    text-shadow: none;
    font-size: 1.25rem;
}

/* ---- Hero wellness animation (replaces slider) ---- */
.dw-hero-wellness {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: var(--dw-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dw-border-gold);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(168, 124, 35, 0.12) 0%, transparent 50%),
        linear-gradient(145deg, #171A20 0%, #1A1D23 45%, #232018 100%);
}

.dw-hero-wellness-glow {
    position: absolute;
    inset: 18% 22%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
    animation: dw-hero-pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.dw-hero-wellness-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.28);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.dw-hero-wellness-ring--outer {
    width: min(72%, 300px);
    aspect-ratio: 1;
    animation: dw-hero-spin 28s linear infinite;
    border-style: dashed;
}

.dw-hero-wellness-ring--mid {
    width: min(52%, 220px);
    aspect-ratio: 1;
    border-color: rgba(230, 195, 90, 0.22);
    animation: dw-hero-spin-rev 22s linear infinite;
}

.dw-hero-wellness-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    background: rgba(35, 39, 48, 0.85);
    border: 1px solid var(--dw-border-gold-strong);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: dw-hero-breathe 5s ease-in-out infinite;
}

.dw-hero-wellness-core i {
    font-size: 1.75rem;
    color: var(--dw-gold-premium);
    line-height: 1;
}

.dw-hero-wellness-core span {
    font-family: var(--dw-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dw-text-muted);
    text-align: center;
    padding: 0 8px;
    line-height: 1.2;
}

.dw-hero-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
    animation: dw-hero-float 7s ease-in-out infinite;
}

.dw-hero-orb--1 {
    width: 88px;
    height: 88px;
    top: 12%;
    left: 10%;
    animation-delay: 0s;
}

.dw-hero-orb--2 {
    width: 56px;
    height: 56px;
    top: 18%;
    right: 14%;
    animation-delay: 1.2s;
}

.dw-hero-orb--3 {
    width: 72px;
    height: 72px;
    bottom: 14%;
    left: 16%;
    animation-delay: 2s;
}

.dw-hero-orb--4 {
    width: 44px;
    height: 44px;
    bottom: 20%;
    right: 12%;
    animation-delay: 0.6s;
}

.dw-hero-leaf {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(35, 39, 48, 0.75);
    border: 1px solid var(--dw-border-gold);
    color: var(--dw-gold-premium);
    font-size: 1.15rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    animation: dw-hero-float 6.5s ease-in-out infinite;
    pointer-events: none;
}

.dw-hero-leaf--1 {
    top: 22%;
    left: 18%;
    animation-delay: 0.3s;
}

.dw-hero-leaf--2 {
    top: 28%;
    right: 16%;
    animation-delay: 1.5s;
}

.dw-hero-leaf--3 {
    bottom: 24%;
    left: 22%;
    animation-delay: 2.4s;
}

.dw-hero-leaf--4 {
    bottom: 28%;
    right: 18%;
    animation-delay: 0.9s;
}

.dw-hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dw-gold-royal);
    opacity: 0.55;
    pointer-events: none;
    animation: dw-hero-particle 8s ease-in-out infinite;
}

.dw-hero-particle--1 { top: 30%; left: 42%; animation-delay: 0s; }
.dw-hero-particle--2 { top: 42%; right: 30%; animation-delay: 1.4s; width: 4px; height: 4px; }
.dw-hero-particle--3 { bottom: 36%; left: 34%; animation-delay: 2.2s; }
.dw-hero-particle--4 { top: 58%; left: 58%; animation-delay: 0.8s; width: 5px; height: 5px; }
.dw-hero-particle--5 { top: 20%; left: 60%; animation-delay: 3s; width: 3px; height: 3px; }
.dw-hero-particle--6 { bottom: 22%; right: 38%; animation-delay: 1.8s; width: 4px; height: 4px; }

@keyframes dw-hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes dw-hero-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes dw-hero-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 36px rgba(212, 175, 55, 0.16); }
    50% { transform: translate(-50%, -50%) scale(1.04); box-shadow: 0 0 52px rgba(212, 175, 55, 0.28); }
}

@keyframes dw-hero-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes dw-hero-spin-rev {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes dw-hero-particle {
    0%, 100% { opacity: 0.25; transform: translateY(0); }
    50% { opacity: 0.85; transform: translateY(-18px); }
}

@media (prefers-reduced-motion: reduce) {
    .dw-hero-wellness *,
    .dw-hero-wellness-glow,
    .dw-hero-wellness-ring,
    .dw-hero-wellness-core,
    .dw-hero-orb,
    .dw-hero-leaf,
    .dw-hero-particle {
        animation: none !important;
    }
}

@media (max-width: 991.98px) {
    .dw-hero-wellness {
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .dw-hero-wellness {
        height: 300px;
    }

    .dw-hero-wellness-core {
        width: 100px;
        height: 100px;
    }

    .dw-hero-wellness-core i {
        font-size: 1.4rem;
    }

    .dw-hero-leaf {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .dw-hero-orb--1 { width: 64px; height: 64px; }
    .dw-hero-orb--3 { width: 52px; height: 52px; }
}

.dw-hero-stat-chip {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--dw-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-md);
    padding: var(--dw-space-sm) var(--dw-space-md);
    display: none;
}

@media (min-width: 768px) {
    .dw-hero-stat-chip {
        display: block;
    }
}

.dw-hero-stat-chip strong {
    display: block;
    font-family: var(--dw-font-display);
    font-size: 1.5rem;
    color: var(--dw-gold-premium);
}

.dw-hero-stat-chip span {
    font-size: 12px;
    color: var(--dw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---- Philosophy grid ---- */
.dw-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--dw-space-md);
}

@media (min-width: 768px) {
    .dw-philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- Why Choose (legacy section restyle) ---- */
body.app-theme .why-choose-block {
    background: var(--dw-bg-section);
    padding: var(--dw-space-3xl) 0;
}

body.app-theme .why-title {
    /* font-family: var(--dw-font-display); */
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dw-text-primary) !important;
    text-align: center;
}

body.app-theme .why-underline {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: var(--dw-gradient-gold-h);
    border-radius: 2px;
}

body.app-theme .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--dw-space-xl);
    max-width: var(--dw-container-max);
    margin: 0 auto;
}

@media (min-width: 992px) {
    body.app-theme .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

body.app-theme .why-card {
    background: var(--dw-bg-card);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-md);
    padding: var(--dw-space-md);
    margin-bottom: var(--dw-space-sm);
    display: flex;
    gap: var(--dw-space-md);
    transition: box-shadow var(--dw-duration-slow) var(--dw-ease);
}

    body.app-theme .why-card:hover {
        box-shadow: 0 12px 32px var(--dw-glow-gold);
    }

body.app-theme .why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--dw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12) !important;
    color: var(--dw-gold-premium) !important;
}

body.app-theme .why-body h5 {
    /* font-family: var(--dw-font-editorial); */
    color: var(--dw-text-primary);
    font-size: 1.125rem;
}

body.app-theme .why-body p {
    color: var(--dw-text-muted);
    font-size: 0.9rem;
}

body.app-theme .why-image-card {
    border-radius: var(--dw-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dw-border-gold);
}

body.app-theme .why-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* Why Choose — HTML/CSS wellness visual (no images) */
body.app-theme .why-wellness-visual {
    position: relative;
    min-height: 420px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 28% 22%, rgba(212, 175, 55, 0.16) 0%, transparent 52%),
        radial-gradient(ellipse at 78% 78%, rgba(168, 124, 35, 0.14) 0%, transparent 48%),
        linear-gradient(155deg, #171A20 0%, #1A1D23 48%, #242018 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.why-wellness-glow {
    position: absolute;
    inset: 16% 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 68%);
    animation: why-wellness-pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.why-wellness-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.26);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.why-wellness-ring--outer {
    width: min(78%, 320px);
    aspect-ratio: 1;
    border-style: dashed;
    animation: why-wellness-spin 30s linear infinite;
}

.why-wellness-ring--mid {
    width: min(58%, 240px);
    aspect-ratio: 1;
    border-color: rgba(230, 195, 90, 0.2);
    animation: why-wellness-spin-rev 24s linear infinite;
}

.why-wellness-ring--inner {
    width: min(38%, 160px);
    aspect-ratio: 1;
    border-color: rgba(212, 175, 55, 0.35);
    animation: why-wellness-spin 18s linear infinite;
}

.why-wellness-core {
    position: relative;
    z-index: 3;
    width: 118px;
    height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    background: rgba(35, 39, 48, 0.88);
    border: 1px solid var(--dw-border-gold-strong);
    box-shadow: 0 0 42px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: why-wellness-breathe 5s ease-in-out infinite;
}

.why-wellness-core i {
    font-size: 1.7rem;
    color: var(--dw-gold-premium);
    line-height: 1;
}

.why-wellness-core span {
    font-family: var(--dw-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dw-text-muted);
    text-align: center;
    line-height: 1.2;
    padding: 0 8px;
}

.why-wellness-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.09);
    border: 1px solid rgba(212, 175, 55, 0.18);
    pointer-events: none;
    animation: why-wellness-float 7s ease-in-out infinite;
}

.why-wellness-orb--1 { width: 86px; height: 86px; top: 10%; left: 8%; }
.why-wellness-orb--2 { width: 54px; height: 54px; top: 14%; right: 10%; animation-delay: 1.2s; }
.why-wellness-orb--3 { width: 70px; height: 70px; bottom: 12%; left: 12%; animation-delay: 2s; }
.why-wellness-orb--4 { width: 42px; height: 42px; bottom: 16%; right: 12%; animation-delay: 0.7s; }

.why-wellness-icon {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(35, 39, 48, 0.8);
    border: 1px solid var(--dw-border-gold);
    color: var(--dw-gold-premium);
    font-size: 1.1rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    animation: why-wellness-float 6.5s ease-in-out infinite;
    pointer-events: none;
}

.why-wellness-icon--1 { top: 20%; left: 16%; animation-delay: 0.2s; }
.why-wellness-icon--2 { top: 24%; right: 14%; animation-delay: 1.4s; }
.why-wellness-icon--3 { bottom: 22%; left: 18%; animation-delay: 2.2s; }
.why-wellness-icon--4 { bottom: 26%; right: 16%; animation-delay: 0.9s; }
.why-wellness-icon--5 { top: 48%; right: 8%; animation-delay: 1.8s; }

.why-wellness-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dw-gold-royal);
    opacity: 0.5;
    pointer-events: none;
    animation: why-wellness-particle 8s ease-in-out infinite;
}

.why-wellness-particle--1 { top: 32%; left: 44%; }
.why-wellness-particle--2 { top: 44%; right: 28%; width: 4px; height: 4px; animation-delay: 1.3s; }
.why-wellness-particle--3 { bottom: 34%; left: 32%; animation-delay: 2.1s; }
.why-wellness-particle--4 { top: 56%; left: 56%; width: 5px; height: 5px; animation-delay: 0.6s; }
.why-wellness-particle--5 { top: 18%; left: 58%; width: 3px; height: 3px; animation-delay: 2.8s; }
.why-wellness-particle--6 { bottom: 20%; right: 36%; width: 4px; height: 4px; animation-delay: 1.7s; }

@keyframes why-wellness-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes why-wellness-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.07); }
}

@keyframes why-wellness-breathe {
    0%, 100% { transform: scale(1); box-shadow: 0 0 36px rgba(212, 175, 55, 0.16); }
    50% { transform: scale(1.05); box-shadow: 0 0 52px rgba(212, 175, 55, 0.28); }
}

@keyframes why-wellness-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes why-wellness-spin-rev {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes why-wellness-particle {
    0%, 100% { opacity: 0.25; transform: translateY(0); }
    50% { opacity: 0.9; transform: translateY(-16px); }
}

@media (prefers-reduced-motion: reduce) {
    .why-wellness-visual *,
    .why-wellness-glow,
    .why-wellness-ring,
    .why-wellness-core,
    .why-wellness-orb,
    .why-wellness-icon,
    .why-wellness-particle {
        animation: none !important;
    }
}

@media (max-width: 991.98px) {
    body.app-theme .why-wellness-visual {
        min-height: 340px;
    }
}

@media (max-width: 575.98px) {
    body.app-theme .why-wellness-visual {
        min-height: 300px;
    }

    .why-wellness-core {
        width: 100px;
        height: 100px;
    }

    .why-wellness-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* ---- New Arrivals / Product carousel ---- */
body.app-theme .dw-products-section {
    background: var(--dw-bg-primary);
    padding: var(--dw-space-3xl) 0;
}

    body.app-theme .dw-products-section .why-head h2 {
        /* font-family: var(--dw-font-display); */
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        color: var(--dw-gold-premium) !important;
        text-transform: none;
        text-align: center;
    }

    body.app-theme .dw-products-section .why-head p {
        text-align: center;
        color: var(--dw-text-muted);
        margin-bottom: var(--dw-space-xl);
    }

body.app-theme .single-makal-product {
    background: var(--dw-bg-card);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-lg);
    overflow: hidden;
    transition: transform var(--dw-duration-slow) var(--dw-ease), box-shadow var(--dw-duration-slow) var(--dw-ease);
    margin: 8px;
}

    body.app-theme .single-makal-product:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px var(--dw-glow-gold);
    }

    body.app-theme .single-makal-product .pro-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    body.app-theme .single-makal-product .pro-content {
        padding: var(--dw-space-md);
    }

    body.app-theme .single-makal-product .pro-title a {
        /* font-family: var(--dw-font-editorial); */
        color: var(--dw-text-primary) !important;
        font-size: 1rem;
    }

    body.app-theme .single-makal-product .product-item_code,
    body.app-theme .single-makal-product .product-qty {
        color: var(--dw-text-subtle) !important;
        font-size: 12px;
    }

    body.app-theme .single-makal-product .price {
        color: var(--dw-gold-premium) !important;
        font-weight: 600;
        display: inline-flex;
    }

    body.app-theme .single-makal-product .add-to-cart,
    body.app-theme .single-makal-product .actions-primary a {
        background: var(--dw-gradient-cta) !important;
        color: var(--dw-bg-primary) !important;
        border-radius: var(--dw-radius-sm);
        font-weight: 600;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 10px 16px;
        display: inline-block;
    }

    body.app-theme .single-makal-product .sticker-new {
        background: var(--dw-gold-dark);
        color: var(--dw-text-primary);
    }

/* ---- Business opportunity teaser ---- */
.dw-opportunity {
    background: var(--dw-bg-alt);
    border-top: 1px solid var(--dw-border-gold);
    border-bottom: 1px solid var(--dw-border-gold);
}

.dw-opportunity-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--dw-space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .dw-opportunity-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---- Testimonials ---- */
body.app-theme .testmonial {
    background: var(--dw-bg-section) !important;
    padding: var(--dw-space-3xl) 0 !important;
}

    body.app-theme .testmonial .section-title h2 {
        font-family: var(--dw-font-display);
        color: var(--dw-text-primary);
    }

    body.app-theme .testmonial .section-title p {
        color: var(--dw-gold-premium);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 12px;
    }

body.app-theme .shadow-effect {
    background: var(--dw-bg-card) !important;
    border: 1px solid var(--dw-border-gold) !important;
    border-radius: var(--dw-radius-lg) !important;
    box-shadow: none !important;
}

body.app-theme .customerstestimonials .review {
    color: var(--dw-text-muted) !important;
    font-style: italic;
}

body.app-theme .customerstestimonials .name {
    color: var(--dw-text-primary);
}

body.app-theme .rating1 {
    background: var(--dw-gold-dark) !important;
}

body.app-theme .owl-carousel .owl-dot {
    background: var(--dw-gold-dark) !important;
}

    body.app-theme .owl-carousel .owl-dot.active {
        background: var(--dw-gold-premium) !important;
    }

/* ---- Final CTA ---- */
.dw-final-cta {
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

/* ---- Hide legacy duplicate carousel ---- */
body.app-theme #carousel-example {
    display: none;
}

/* ---- Banner parallax section ---- */
body.app-theme .dw-parallax-banner {
    padding: 0;
}

    body.app-theme .dw-parallax-banner .slick-banner img {
        width: 100%;
        border-radius: 0;
    }

/* ---- Homepage mobile polish ---- */
@media (max-width: 767.98px) {
    .dw-hero {
        padding: var(--dw-space-xl) 0 var(--dw-space-2xl);
    }

    .dw-hero-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .dw-hero-lead {
        font-size: 1rem;
    }

    .dw-hero-stat-chip {
        margin-top: var(--dw-space-md);
    }

    body.app-theme .single-makal-product .pro-img img {
        height: 180px;
    }

    body.app-theme .single-makal-product .add-to-cart,
    body.app-theme .single-makal-product .actions-primary a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .dw-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--dw-space-md);
    }

    .dw-timeline-arrow {
        display: none;
    }
}
