/* ── Variables ────────────────────────────────────────────────────── */
:root {
    --brand-primary: #c5a059; /* Gold accent */
    --brand-secondary: #1a1a2e; /* Dark Navy */
    --brand-accent: #e1b12c;
    --brand-dark: #0a0a14;
    --brand-light: #fdfdfd;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ── Base ────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .playfair {
    font-family: 'Playfair Display', serif;
}

/* ── Glassmorphism & Animated Navbar ─────────────────────────────────────────── */
@keyframes navGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar-animated {
    background: transparent;
}

.navbar {
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.6rem 1.5rem;
    background: rgba(10, 10, 20, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--brand-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 12px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-primary) !important;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-brand .brand-icon {
    font-size: 1.5rem;
    color: var(--brand-primary);
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
}

/* ── Brand Buttons ─────────────────────────────────────────────────── */
.btn-brand-primary {
    background: var(--brand-primary) !important;
    border: 1px solid var(--brand-primary) !important;
    color: #fff !important;
}

.btn-brand-primary:hover {
    background: #b08d48 !important;
    border-color: #b08d48 !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-brand-outline {
    background: transparent !important;
    border: 1px solid var(--brand-primary) !important;
    color: var(--brand-primary) !important;
}

.btn-brand-outline:hover {
    background: var(--brand-primary) !important;
    color: #fff !important;
}

/* ── Hero Section ─────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    background-attachment: fixed !important;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-img-frame {
    position: relative;
    z-index: 1;
}

.hero-img-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-primary);
    z-index: -1;
    border-radius: 12px;
}

/* ── Cards & Hover ───────────────────────────────────────────────────── */
.card-hover {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.painting-img-container {
    overflow: hidden;
    position: relative;
}

.painting-img {
    transition: transform 1s ease;
}

.card-hover:hover .painting-img {
    transform: scale(1.1);
}

.painting-overlay {
    transition: var(--transition-smooth);
    background: rgba(10, 10, 20, 0.4);
    backdrop-filter: blur(4px);
}

.card-hover:hover .painting-overlay {
    opacity: 1 !important;
}

/* ── Category Cards Interactive ──────────────────────────────────────── */
/* ── Premium Category Section ────────────────────────────────────────── */
.categories-section {
    background: linear-gradient(160deg, #0a0a14 0%, #111127 55%, #0a0a14 100%);
    position: relative;
    overflow: hidden;
}
.categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(197,160,89,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(197,160,89,0.05) 0%, transparent 55%);
    pointer-events: none;
}

/* ── Category Card ───────────────────────────────────────────────────── */
.cat-card-interactive {
    position: relative;
    cursor: pointer;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
}

/* Gold top-line accent that slides in on hover */
.cat-card-interactive::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), #e8c97a, var(--brand-primary));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    border-radius: 3px 3px 0 0;
}

/* Explore arrow that fades in */
.cat-card-interactive::before {
    content: '→';
    position: absolute;
    bottom: 14px;
    right: 18px;
    font-size: 0.9rem;
    color: var(--brand-primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.cat-card-interactive:hover {
    background: rgba(197,160,89,0.09) !important;
    border-color: rgba(197,160,89,0.35) !important;
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(197,160,89,0.15) !important;
}
.cat-card-interactive:hover::after {
    transform: scaleX(1);
}
.cat-card-interactive:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ── Icon wrapper ────────────────────────────────────────────────────── */
.cat-card-interactive .icon-wrapper {
    width: 72px;
    height: 72px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem !important;
    border-radius: 18px !important;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.cat-card-interactive:hover .icon-wrapper {
    transform: scale(1.12) rotate(6deg);
    border-radius: 50% !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* ── Category name ───────────────────────────────────────────────────── */
.cat-card-interactive .category-name {
    transition: color 0.3s ease;
    font-size: 0.92rem !important;
    letter-spacing: 0.3px;
    margin-top: 1rem;
    color: rgba(255,255,255,0.82) !important;
    line-height: 1.4;
}
.cat-card-interactive:hover .category-name {
    color: #c5a059 !important;
}

/* Specific Category Colors (keep bg-* utility compatibility) */
.bg-primary.bg-opacity-10 { background-color: rgba(13, 110, 253, 0.08) !important; }
.bg-success.bg-opacity-10 { background-color: rgba(25, 135, 84, 0.08) !important; }
.bg-warning.bg-opacity-10 { background-color: rgba(255, 193, 7, 0.08) !important; }
.bg-info.bg-opacity-10    { background-color: rgba(13, 202, 240, 0.08) !important; }
.bg-danger.bg-opacity-10  { background-color: rgba(220, 53, 69, 0.08) !important; }

/* ── Premium Painting Cards ────────────────────────────────────────── */
.painting-card {
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.painting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
    border-color: var(--brand-primary);
}

.painting-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}

.painting-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.painting-card:hover .painting-card-img {
    transform: scale(1.08);
}

.painting-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.painting-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.painting-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.painting-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-top: auto;
}

.painting-card-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    gap: 12px;
}

.painting-card .btn-view {
    flex: 1;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--brand-primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.painting-card .btn-view:hover {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.painting-card .btn-cart {
    flex: 1.5;
    background: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.painting-card .btn-cart:hover {
    background: #b08d48;
    border-color: #b08d48;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(197, 160, 89, 0.3);
}

.painting-badge {
    position: absolute;
    z-index: 2;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge-category {
    top: 12px;
    left: 12px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(4px);
    color: #fff;
}

.badge-status {
    top: 12px;
    right: 12px;
}

.badge-status.for-sale {
    background: #27ae60;
    color: #fff;
}

.badge-status.sold {
    background: #6c757d;
    color: #fff;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), #b08d48);
    border: none;
    padding: 14px 34px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b08d48, var(--brand-primary));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
    color: #fff;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 13px 34px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--brand-dark) !important;
    border-color: #fff;
    transform: translateY(-3px);
}

/* ── Sections ───────────────────────────────────────────────────────── */
.section-padding {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--brand-primary);
}

/* ── Testimonials ────────────────────────────────────────────────────── */
.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* ── Premium Testimonials Slider ─────────────────────────────────────── */
.testi-section {
    background: linear-gradient(160deg, #0e0e24 0%, #13132e 50%, #0a0a18 100%);
    border-top: 1px solid rgba(197,160,89,0.12);
    border-bottom: 1px solid rgba(197,160,89,0.12);
}
.testi-glow {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    pointer-events: none;
    top: 50%; transform: translateY(-50%);
}
.testi-glow-left  { left: -100px;  background: radial-gradient(circle, rgba(197,160,89,0.1)  0%, transparent 70%); }
.testi-glow-right { right: -100px; background: radial-gradient(circle, rgba(197,160,89,0.07) 0%, transparent 70%); }

.testi-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

/* wrapper gives space for the side arrows */
.testi-carousel-wrap { max-width: 900px; position: relative; }

/* Slide card */
.testi-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(197,160,89,0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    transition: border-color 0.4s ease;
}
.testi-card:hover { border-color: rgba(197,160,89,0.5); }

.testi-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}
.testi-big-quote {
    position: absolute;
    top: 14px; left: 50%; transform: translateX(-50%);
    font-size: 5rem;
    color: var(--brand-primary);
    opacity: 0.06;
    line-height: 1;
}
.testi-quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
}

/* Avatar */
.testi-avatar {
    width: 62px; height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), #b08d48);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 700; color: #fff;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
    transition: transform 0.4s ease;
}
.testi-card:hover .testi-avatar { transform: scale(1.08) rotate(5deg); }

.testi-role {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-primary);
    margin-top: 2px;
}

/* Arrows */
.testi-arrow {
    position: absolute;
    top: 42%;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(197,160,89,0.3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}
.testi-arrow:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 0 18px rgba(197,160,89,0.45);
    color: #fff;
}
.testi-arrow-prev { left: -24px; }
.testi-arrow-next { right: -24px; }

/* Dots */
.testi-dot {
    width: 10px; height: 10px;
    border-radius: 5px;
    background: rgba(197,160,89,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
}
.testi-dot.active,
.testi-dot:hover {
    background: var(--brand-primary);
    width: 28px;
}

@media (max-width: 768px) {
    .testi-arrow { display: none; }
    .testi-card  { padding: 2rem 1.2rem !important; }
    .testi-quote-text { font-size: 1rem; }
}

/* ── Footer ────────────────────────────────────────────────────────── */
footer {
    background: #0f172a !important;
    color: rgba(255,255,255,0.7) !important;
}

footer h5, footer h6 {
    color: #fff !important;
}

.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
    color: rgba(255,255,255,0.6) !important;
}

.footer-link:hover {
    color: var(--brand-primary) !important;
    transform: translateX(5px);
}

/* ── WhatsApp FAB ───────────────────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-fab i {
    transition: transform 0.3s ease;
}

.whatsapp-fab:hover i {
    transform: rotate(10deg);
}

.whatsapp-fab-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ── Advanced Scroll Animations ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.fade-up {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(50px);
}

.fade-right {
    transform: translateX(-50px);
}

.zoom-in {
    transform: scale(0.9);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-img-frame {
        margin-top: 3rem;
    }
    .navbar-collapse {
        background: var(--brand-dark);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        border: 1px solid var(--glass-border);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .display-4 {
        font-size: 2.2rem;
    }
    .lead {
        font-size: 1rem;
    }
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-section .btn, .cta-section .btn, .govt-banner .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .d-flex.flex-wrap.gap-3 {
        gap: 10px !important;
    }
}

/* ── Toast Notifications ────────────────────────────────────────────── */
#toast-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-msg {
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateX(40px);
    animation: toastIn 0.3s ease forwards, toastOut 0.3s ease 2.7s forwards;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    pointer-events: auto;
}

.toast-msg.success { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.toast-msg.error   { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.toast-msg.info    { background: linear-gradient(135deg, #2980b9, #3498db); }

@keyframes toastIn {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
    to { opacity: 0; transform: translateX(40px); }
}

@media (max-width: 576px) {
    #toast-container {
        right: 15px;
        bottom: 80px;
        left: 15px;
    }
    .toast-msg {
        border-radius: 12px;
    }
}

/* ── Custom Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a38237;
}



/* ── Custom Mouse Cursor ────────────────────────────────────────────── */
body {
    cursor: none; /* Hide default cursor on desktop */
}

@media (max-width: 991px) {
    body {
        cursor: auto; /* Show default on mobile/tablets */
    }
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
}

.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    opacity: 0; /* Hidden by default to prevent sticking on load */
}

.custom-cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    background-color: rgba(197, 160, 89, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out, width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
    opacity: 0; /* Hidden by default */
}

.custom-cursor.visible, .custom-cursor-follower.visible {
    opacity: 1;
}

@keyframes pulse-cart {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); background-color: var(--brand-primary); color: #fff; }
    100% { transform: scale(1); }
}

.cart-count.pulse {
    animation: pulse-cart 0.5s ease-in-out;
}


.hover-top {
    transition: transform 0.3s ease;
}

.hover-top:hover {
    transform: translateY(-5px);
}

/* ── Footer Premium Styles ─────────────────────────────────────────── */
.footer-premium {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-premium h6 {
    color: #fff !important;
    font-size: 0.75rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 1.5rem !important;
}

.footer-links {
    padding: 0;
    list-style: none;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--brand-primary) !important;
    transform: translateX(5px);
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.icon-box i {
    color: var(--brand-primary) !important;
}

.hover-primary:hover {
    color: var(--brand-primary) !important;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
