:root {
    --bg: #070809;
    --bg-soft: #101215;
    --bg-lighter: #151a1f;
    --text: #f2efe7;
    --text-secondary: #ddd4c5;
    --muted: #b8ad97;
    --gold: #c9a567;
    --gold-strong: #e0be82;
    --gold-light: #f1d49f;
    --line: #2f2b24;
    --card: rgba(17, 19, 24, 0.78);
    --card-hover: rgba(20, 24, 32, 0.92);
    --accent-1: #e5c180;
    --accent-2: #ba914f;
    --transition-smooth: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: radial-gradient(circle at 18% -10%, #2a2417 0%, transparent 42%), 
                radial-gradient(circle at 85% 20%, #181102 0%, transparent 38%),
                radial-gradient(ellipse at 50% 100%, rgba(201,165,103,0.08), transparent 60%),
                var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: -30% -10%;
    background: conic-gradient(from 180deg at 50% 50%, rgba(201,165,103,0.15) 0%, transparent 35%, rgba(201,165,103,0.1) 50%, transparent 70%);
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    animation: float-bg 20s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

.noise-layer {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.015) 0.5px, transparent 0.5px);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 1;
}

.main-shell, .lux-footer {
    position: relative;
    z-index: 2;
}

.lux-nav {
    position: relative;
    z-index: 1000;
    background: rgba(6, 7, 8, 0.78);
    backdrop-filter: blur(12px) saturate(1.2);
    border-bottom: 1px solid rgba(202, 166, 106, 0.18);
    position: sticky;
    top: 0;
    animation: nav-float-in 0.8s ease-out 0.2s both;
}

@keyframes nav-float-in {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.brand-mark {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    color: var(--gold) !important;
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition-fast);
    text-shadow: 0 4px 12px rgba(201,165,103,0.12);
}

.brand-mark:hover {
    text-shadow: 0 4px 20px rgba(201,165,103,0.24);
    letter-spacing: 3px;
}

.brand-mark span {
    font-family: 'Manrope', sans-serif;
    font-size: 0.58rem;
    margin-left: 8px;
    letter-spacing: 3.5px;
    color: #e5e0d5;
    font-weight: 500;
}

.nav-link {
    color: #ece6d9 !important;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: left 0.35s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link:hover::after {
    left: 0;
}

.cart-link {
    position: relative;
    transition: var(--transition-fast);
    overflow: visible !important;
    display: inline-flex;
    align-items: center;
    padding-right: 0.9rem;
}

.cart-link:hover {
    transform: scale(1.08) rotate(2deg);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -12px;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #0d0d0d;
    font-size: 0.65rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(201,165,103,0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(201,165,103,0.3); }
    50% { transform: scale(1.12); box-shadow: 0 6px 20px rgba(201,165,103,0.5); }
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 6.4rem 0 2.4rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 4;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.56) 35%, rgba(5,5,5,0.72) 100%);
    animation: overlay-shift 15s ease-in-out infinite;
}

@keyframes overlay-shift {
    0%, 100% { background: linear-gradient(90deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.56) 35%, rgba(5,5,5,0.72) 100%); }
    50% { background: linear-gradient(90deg, rgba(5,5,5,0.84) 0%, rgba(5,5,5,0.48) 40%, rgba(5,5,5,0.68) 100%); }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 0%, rgba(225, 188, 123, 0.12) 35%, transparent 65%);
    transform: translateX(-60%);
    animation: heroSweepAdvanced 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroSweepAdvanced {
    0%, 100% { 
        transform: translateX(-60%) rotate(-5deg);
        opacity: 0.15;
    }
    50% { 
        transform: translateX(50%) rotate(5deg);
        opacity: 0.35;
    }
}

.hero-desktop {
    background-image: url('../img/hero-desktop.png'), linear-gradient(120deg, #1c1610, #0b0d11);
}

.hero-mobile {
    display: none;
    background-image: url('../img/hero-mobile.png'), linear-gradient(120deg, #1c1610, #0b0d11);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    animation: fade-in-hero 1s ease-out 0.3s both;
}

@keyframes fade-in-hero {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.eyebrow::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin: 1rem 0 0.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.split-word {
    display: inline-block;
    will-change: transform, opacity;
}

.hero-copy {
    max-width: 540px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.02rem;
    margin-bottom: 2rem;
}

.hero-cta-wrap {
    position: relative;
    z-index: 4;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.5rem;
}

.hero-cta-wrap .gold-btn,
.hero-cta-wrap .outline-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    animation: cta-float-in 0.8s ease-out both;
}

@keyframes cta-float-in {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.gold-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.74rem;
    padding: 1rem 1.8rem;
    border-radius: 0;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
}

.gold-btn::before,
.outline-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gold-btn {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #0a0a0a;
    border-color: var(--accent-1);
    box-shadow: 0 8px 24px rgba(201,165,103,0.25);
}

.gold-btn::before {
    background: linear-gradient(135deg, var(--gold-light), #d3a864);
}

.gold-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), #d3a864);
    box-shadow: 0 12px 32px rgba(201,165,103,0.4);
    transform: translateY(-2px);
}

.gold-btn:active {
    transform: translateY(0);
}

.outline-btn {
    color: var(--text);
    border-color: #8b734e;
    background: transparent;
}

.outline-btn::before {
    background: linear-gradient(135deg, rgba(201,165,103,0.15), rgba(201,165,103,0.08));
}

.outline-btn:hover {
    color: #0b0b0b;
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 12px 28px rgba(201,165,103,0.35);
    transform: translateY(-2px);
}

.section-shell {
    padding: 5.5rem 0;
    position: relative;
}

.section-shell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,165,103,0.1), transparent);
    opacity: 0;
    animation: line-fade 0.6s ease-in 0.3s forwards;
}

@keyframes line-fade {
    to { opacity: 1; }
}

.section-cta-center {
    display: flex;
    justify-content: center;
    animation: cta-float-in 0.8s ease-out 0.2s both;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.85rem, 3.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.section-sub {
    color: var(--muted);
    max-width: 680px;
    font-size: 1.02rem;
}

.feature-tile,
.product-card,
.panel {
    background: var(--card);
    border: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.feature-tile {
    padding: 1.8rem;
    min-height: 180px;
}

.feature-tile-link {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 280px;
    color: var(--text);
    text-decoration: none;
    isolation: isolate;
    background: radial-gradient(circle at 20% 20%, rgba(201,165,103,0.22), rgba(10,10,10,0.95));
    border: 1px solid rgba(201,165,103,0.15);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-tile-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--cat-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05) rotate(1deg);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.98;
}

.feature-tile-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(6,6,6,0.25) 0%, rgba(6,6,6,0.88) 75%);
}

.feature-tile-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    border-color: rgba(201,165,103,0.35);
}

.feature-tile-link:hover::before {
    transform: scale(1.15) rotate(0deg);
}

.feature-tile-link > * {
    position: relative;
    z-index: 2;
}

.feature-tile-link h5 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #faf8f4;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.feature-tile-link:hover h5 {
    color: var(--gold-light);
}

.feature-tile-link .category-copy {
    color: #e8dfd2;
    opacity: 0.92;
    font-size: 0.95rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
}

.feature-tile-link:hover .category-copy {
    opacity: 1;
    color: #f2ede4;
}

.feature-tile-link i {
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 0 4px 12px rgba(201,165,103,0.3);
    transition: var(--transition-smooth);
}

.feature-tile-link:hover i {
    transform: translateY(-4px) rotate(8deg);
    color: var(--gold-light);
}

.product-card {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    transition: var(--transition-smooth);
    height: 100%;
    border-color: var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(145deg, rgba(201,165,103,0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(213, 174, 108, 0.65);
    background: var(--card-hover);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.card-link-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.product-card .product-title,
.product-card .product-price,
.product-card p,
.product-card img,
.product-card .d-flex {
    position: relative;
    z-index: 1;
}

.product-card .gold-btn {
    position: relative;
    z-index: 3;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid #1f1f1f;
    transition: var(--transition-smooth);
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-title {
    font-family: 'Cinzel', serif;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.product-card:hover .product-title {
    color: var(--gold-light);
}

.product-price {
    color: var(--gold-strong);
    font-weight: 800;
    letter-spacing: 1.2px;
    font-size: 1.15rem;
}

.swiper {
    padding-bottom: 3rem;
}

.swiper-slide {
    animation: slide-in-up 0.6s ease-out both;
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.product-gallery-swiper {
    border: 1px solid var(--line);
    background: var(--card);
}

.product-gallery-swiper img {
    width: 100%;
    height: clamp(320px, 50vw, 680px);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide-active .product-gallery-swiper img {
    animation: gallery-zoom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes gallery-zoom {
    from {
        transform: scale(0.95) rotate(-1deg);
        opacity: 0.5;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(201,165,103,0.3);
    opacity: 1;
    margin: 0 6px;
    transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    width: 28px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(201,165,103,0.4);
}

.lux-footer {
    background: linear-gradient(180deg, #060708 0%, #0a0b0d 100%);
    border-top: 1px solid rgba(201,165,103,0.15);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.lux-footer a {
    color: #d9cfc0;
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.lux-footer a:hover {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.form-control,
.form-select {
    background: #0f1215;
    border: 1px solid #302d26;
    border-radius: 0;
    color: #f5f5f5;
    padding: 0.9rem 1rem;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    background: #141820;
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,165,103,0.15);
}

.form-control::placeholder {
    color: #8b8174;
}

.panel {
    padding: 2rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.dashboard-email {
    font-size: clamp(0.86rem, 1.35vw, 1.08rem);
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
    margin-inline: auto;
}

.shop-toolbar {
    border-bottom: 1px solid rgba(201,165,103,0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.shop-results-count {
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.shop-filter-panel {
    background: linear-gradient(145deg, rgba(16, 18, 22, 0.85), rgba(12, 14, 18, 0.9));
    border: 1px solid rgba(201,165,103,0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.shop-category-pills {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.chip-pill {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ddd0c0;
    border: 2px solid #705a3f;
    font-size: 0.76rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.7rem 1.1rem;
    transition: var(--transition-smooth);
    font-weight: 600;
    position: relative;
    background: rgba(16,18,22,0.5);
    cursor: pointer;
    overflow: hidden;
}

.chip-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,165,103,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chip-pill:hover {
    color: #0b0b0b;
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,165,103,0.3);
}

.chip-pill.active {
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-color: var(--accent-1);
    box-shadow: 0 8px 24px rgba(201,165,103,0.4);
}

.table.lux-table {
    --bs-table-bg: transparent;
    --bs-table-color: #f2eee4;
    --bs-table-border-color: #2a2a2a;
}

.table.lux-table thead {
    border-top: 1px solid rgba(201,165,103,0.15);
    border-bottom: 2px solid rgba(201,165,103,0.2);
}

.table.lux-table tbody tr {
    transition: var(--transition-fast);
}

.table.lux-table tbody tr:hover {
    background: rgba(201,165,103,0.05);
}

.badge-stock {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    background: rgba(201,165,103,0.15);
    color: var(--gold);
}

.badge-stock.in-stock {
    background: rgba(76, 175, 80, 0.15);
    color: #7fd856;
}

.badge-stock.out-stock {
    background: rgba(244, 67, 54, 0.15);
    color: #ff5252;
}

@keyframes heroSweep {
    0%, 100% { 
        transform: translateX(-55%);
        opacity: 0.15;
    }
    50% { 
        transform: translateX(45%);
        opacity: 0.35;
    }
}

@media (max-width: 991px) {
    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: flex;
        min-height: 86vh;
        padding-top: 6rem;
    }

    .product-card img {
        height: 260px;
    }

    .feature-tile-link {
        min-height: 240px;
    }

    .section-shell {
        padding: 4rem 0;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .gold-btn,
    .outline-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .product-card img {
        height: 240px;
    }

    .swiper {
        padding-bottom: 2rem;
    }

    .swiper-pagination {
        bottom: 12px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-cta-wrap {
        gap: 0.8rem;
    }

    .gold-btn,
    .outline-btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .chip-pill {
        font-size: 0.68rem;
        padding: 0.6rem 0.9rem;
        letter-spacing: 1px;
    }

    .shop-filter-panel {
        padding: 1.5rem 1rem;
    }
}

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    pointer-events: none;
}

/* Scroll animations for performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Additional hover state for accessibility */
@media (hover: hover) and (pointer: fine) {
    .gold-btn:hover,
    .outline-btn:hover,
    .chip-pill:hover {
        box-shadow: 0 12px 32px rgba(201,165,103,0.3);
    }

    .product-card:hover {
        border-color: rgba(213, 174, 108, 0.65);
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

.feature-tile-link:hover {
    border-color: rgba(201,165,103,0.35);
}
