@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Premium Theme Palette with Black Accents */
    --bg-color: #f5f5f5;
    --card-bg: #ffffff;
    --text-color: #1a1a1a;
    --secondary-text: #555555;
    --primary-red: #D31313;
    --premium-black: #0a0a0a;
    --soft-black: #1f1f1f;
    --charcoal: #2a2a2a;
    --accent-gold: #d4af37;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --border-color: #e0e0e0;
    --light-gray: #f8f8f8;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.18);

    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition-speed: 0.35s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 50%, #f5f5f5 100%);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 90px;
    letter-spacing: 0.2px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

/* ==================== HEADER & NAV (Fixed Layout Bug) ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95));
    backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(10, 10, 10, 0.1), transparent) 1;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(211, 19, 19, 0.03);
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    /* Flexbox for layout */
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    text-decoration: none;
}

.nav-logo-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--charcoal) 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    color: var(--soft-black);
    padding: 0.5rem 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-black), var(--primary-red), var(--accent-gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(211, 19, 19, 0.3);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--primary-red);
}

.nav-links a.active-link::after {
    width: 100%;
    background: var(--primary-red);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 85vh;
    /* Large impactful hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    margin-bottom: 4rem;
    /* Spacing below hero */
    margin-top: -90px;
    /* Pull back up to cover the padding-top so image is full bleed */
    padding-top: 90px;
    /* Internal cushion */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5) contrast(1.1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6), rgba(211, 19, 19, 0.3));
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(211, 19, 19, 0.5),
        0 0 20px rgba(10, 10, 10, 0.9);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    opacity: 1;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6);
}

/* Buttons (Premium Gradient Design) */
.btn {
    display: inline-block;
    padding: 1.1rem 3.2rem;
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--soft-black) 50%, var(--charcoal) 100%);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 2px solid var(--premium-black);
    box-shadow: 0 6px 20px rgba(10, 10, 10, 0.3),
        0 2px 8px rgba(211, 19, 19, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(10, 10, 10, 0.4),
        0 4px 15px rgba(211, 19, 19, 0.4),
        0 0 0 3px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-gold);
}

/* Green Shopee Button Override */
.shopee-card .btn:hover {
    color: var(--primary-red);
    /* On white card */
}

/* ==================== SECTIONS & GRID ==================== */
.products-section,
.info-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title,
.category-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 3rem 0;
    padding-bottom: 1rem;
    color: #000000;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--premium-black) 0%, var(--primary-red) 50%, var(--accent-gold) 100%);
    margin: 1.2rem auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(211, 19, 19, 0.3);
}

/* Force category sections to be visible immediately - override any animation defaults */
.category-section {
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 4rem;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 1rem 0;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft), 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1.5px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong),
        0 0 0 2px var(--premium-black),
        0 5px 25px rgba(211, 19, 19, 0.15);
    border-color: var(--premium-black);
}

.product-image-container {
    height: 320px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
    /* Slight zoom */
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(211, 19, 19, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-closer-look {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 1.1rem 2.2rem;
    border: 2.5px solid white;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1.5px;
}

.btn-closer-look:hover {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--premium-black);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4),
        0 0 0 3px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--premium-black);
    letter-spacing: 0.5px;
}

.product-size {
    font-size: 0.95rem;
    color: var(--secondary-text);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.product-price {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.15rem;
    text-shadow: 0 1px 2px rgba(211, 19, 19, 0.2);
}

/* ==================== CATEGORY NAV (Sticky) ==================== */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1.5rem 2rem;
    /* More breathing room */
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 90px;
    /* Below 90px header */
    z-index: 90;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.cat-nav-btn {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-text);
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    /* Pill */
    white-space: nowrap;
    transition: all 0.3s;
    cursor: pointer;
}

.cat-nav-btn:hover,
.cat-nav-btn.active {
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--soft-black) 100%);
    color: white;
    border-color: var(--premium-black);
    box-shadow: 0 6px 20px rgba(10, 10, 10, 0.25),
        0 0 0 2px rgba(211, 19, 19, 0.2);
    transform: translateY(-2px);
}

/* ================== PAGE HEADER (Generic Pages) ==================== */
.page-header {
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--soft-black) 50%, var(--charcoal) 100%);
    padding: 6.5rem 2rem 4.5rem;
    text-align: center;
    border-bottom: 4px solid var(--primary-red);
    box-shadow: var(--shadow-medium), inset 0 -1px 0 rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: skewX(-20deg);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(211, 19, 19, 0.5);
    letter-spacing: 3px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Image wider */
    gap: 4rem;
    align-items: center;
}

.detail-image-wrapper {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 25px;
    /* Softer */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.detail-price {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 2rem;
}

.variant-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.variant-btn {
    padding: 1rem 2rem;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-weight: 600;
    border-radius: 50px;
    /* Pill */
    transition: all 0.3s;
}

.variant-btn:hover,
.variant-btn.active {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: #fff0f0;
    transform: translateY(-2px);
}

.btn-auto {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
    color: white;
    padding: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(211, 19, 19, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-auto:hover {
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--soft-black) 100%);
    box-shadow: 0 8px 30px rgba(10, 10, 10, 0.4),
        0 4px 15px rgba(211, 19, 19, 0.3),
        0 0 0 3px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px) scale(1.01);
    border-color: var(--accent-gold);
}

/* ==================== SOCIAL PAGE ==================== */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.social-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 3px var(--primary-red);
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: brightness(1);
}

.social-card:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-card:hover .insta-overlay {
    opacity: 1;
}

.insta-icon {
    font-size: 2.5rem;
    color: white;
}

/* ==================== CONTACT PAGE ==================== */
.contact-container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 2rem auto 5rem;
    padding: 0 2rem;
}

.info-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(211, 19, 19, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff4444);
    opacity: 0;
    transition: opacity 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(211, 19, 19, 0.1);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.info-card p,
.info-card li {
    color: var(--secondary-text);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(37, 211, 102, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 3px solid white;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== FOOTER ====================*/
.site-footer {
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--soft-black) 50%, var(--charcoal) 100%);
    padding: 4.5rem 2rem;
    text-align: center;
    margin-top: auto;
    border-top: 4px solid var(--primary-red);
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: skewX(-20deg);
}

.footer-content {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* ==================== ANIMATIONS & TRANSITIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.fade-in-visible {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Contact Methods Styling */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.method-row:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.icon-placeholder {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.contact-link {
    display: block;
    color: var(--primary-red);
    font-weight: 600;
    margin-top: 0.3rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #b30000;
    text-decoration: underline;
}

/* Contact Page Specific Styling */
.contact-group {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s;
}

.contact-group:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-subhead {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-address {
    color: var(--secondary-text);
    line-height: 1.8;
    margin: 0;
}

.shop-link {
    display: inline-block;
    transition: transform 0.3s;
}

.shop-link:hover {
    transform: scale(1.1);
}

.shop-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-weight: 600;
    color: var(--primary-red);
    font-style: italic;
    margin-top: 1.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    transition: transform 0.3s, color 0.3s;
}

.benefit-list li:hover {
    transform: translateX(5px);
    color: var(--primary-red);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.divider-red {
    width: 50px;
    height: 4px;
    background: var(--primary-red);
    margin: 1rem 0 1.5rem 0;
    border-radius: 2px;
}

/* Enhanced Button Transitions */
.btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Footer Enhancements */
.site-footer .logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(211, 19, 19, 0.5);
}

.site-footer .logo span {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* ==================== SOCIAL VIDEO GALLERY ==================== */
.social-video-section {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.social-video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 19, 19, 0.05) 0%, transparent 70%);
    animation: pulseGlow 10s ease-in-out infinite;
    pointer-events: none;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 2px var(--primary-red);
}

.video-card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    /* Slight zoom for parallax feel */
    transition: transform 0.5s ease;
}

.video-card:hover video {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.video-card:hover .video-overlay {
    transform: translateY(0);
    opacity: 1;
}

.video-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Video Container Styling (YouTube) */
.video-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: black;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s, box-shadow 0.4s;
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==================== MASTERPIECE ANIMATIONS ==================== */

/* Floating Particles Background */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--primary-red), transparent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(100px, -100px) scale(1.5);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50px, -200px) scale(0.8);
        opacity: 0.2;
    }

    75% {
        transform: translate(-100px, -100px) scale(1.2);
        opacity: 0.5;
    }
}

/* Parallax Hero Effect */
.hero {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-bg {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-content {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Scroll Reveal Base with Scale */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Delays for Grid Items with Enhanced Effects */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.is-visible>* {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.is-visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.is-visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.is-visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.is-visible>*:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal-stagger.is-visible>*:nth-child(7) {
    transition-delay: 0.7s;
}

.reveal-stagger.is-visible>*:nth-child(8) {
    transition-delay: 0.8s;
}

/* Elegant Text Reveal with Character Animation */
.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(-90deg);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: bottom;
}

.text-reveal.is-visible span {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* Stagger text reveal per character */
.text-reveal.is-visible span:nth-child(1) {
    transition-delay: 0.05s;
}

.text-reveal.is-visible span:nth-child(2) {
    transition-delay: 0.1s;
}

.text-reveal.is-visible span:nth-child(3) {
    transition-delay: 0.15s;
}

.text-reveal.is-visible span:nth-child(4) {
    transition-delay: 0.2s;
}

.text-reveal.is-visible span:nth-child(5) {
    transition-delay: 0.25s;
}

.text-reveal.is-visible span:nth-child(6) {
    transition-delay: 0.3s;
}

.text-reveal.is-visible span:nth-child(7) {
    transition-delay: 0.35s;
}

.text-reveal.is-visible span:nth-child(8) {
    transition-delay: 0.4s;
}

.text-reveal.is-visible span:nth-child(9) {
    transition-delay: 0.45s;
}

.text-reveal.is-visible span:nth-child(10) {
    transition-delay: 0.5s;
}

.text-reveal.is-visible span:nth-child(n+11) {
    transition-delay: 0.55s;
}

/* Magnetic Button Effect (Requires JS) */
.btn-magnetic {
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

/* Smooth Pulse Glow */
@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Image "Alive" Hover Effect */
.live-image {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.live-image:hover {
    transform: scale(1.08) rotate(1deg);
}

/* Smooth Page Enter Animation */
@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageEnter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Section Title Advanced Animation */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 19, 19, 0.1), transparent);
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 90px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(211, 19, 19, 0.5);
}

/* Enhanced Product Card Entrance */
.product-card {
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-gold), var(--primary-red));
    background-size: 200% 200%;
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.product-card:hover::before {
    opacity: 1;
}

/* Loading Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Info Section Styling */
.info-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-section {
    padding: 2rem 0 4rem;
}

/* Scroll Animation Observer */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== PRODUCT SEARCH BAR ==================== */
.product-search-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
}

.product-search-input {
    width: 100%;
    padding: 1.3rem 2rem;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: white;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-search-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(211, 19, 19, 0.15), 0 0 0 3px rgba(211, 19, 19, 0.1);
    transform: translateY(-2px);
}

.product-search-input::placeholder {
    color: var(--secondary-text);
    opacity: 0.6;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    border: 1px solid var(--border-color);
}

.search-suggestions.active {
    display: block;
    animation: slideDown 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-suggestion-item {
    padding: 1.2rem 1.8rem;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-suggestion-item:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.search-suggestion-item:first-child {
    border-radius: 20px 20px 0 0;
}

.search-suggestion-item:hover {
    background: linear-gradient(90deg, rgba(211, 19, 19, 0.05), transparent);
    padding-left: 2.5rem;
    color: var(--primary-red);
}

.search-suggestion-name {
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.2s;
}

.search-suggestion-item:hover .search-suggestion-name {
    color: var(--primary-red);
}

.search-suggestion-category {
    font-size: 0.85rem;
    color: var(--secondary-text);
    margin-left: auto;
    padding: 0.3rem 0.8rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.no-results {
    padding: 2rem;
    text-align: center;
    color: var(--secondary-text);
    font-style: italic;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .site-header {
        height: 70px;
        padding: 0 1rem;
    }

    body {
        padding-top: 70px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .contact-container-grid {
        grid-template-columns: 1fr;
    }

    .method-row {
        flex-direction: column;
        text-align: center;
    }
}