/* =============================================
   SMITI INDUSTRIES — Anthracite Smoke Theme
   Dark Hero + Light Grey Sections
   Rocket Stoves & Metal Chairs
   Thokottu, Karnataka
   ============================================= */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* =========================================
       ANTHRACITE SMOKE THEME
       Dark hero, light grey inner sections
       ========================================= */

    /* PRIMARY COLORS */
    --primary: #475569;
    --primary-dark: #334155;
    --primary-light: #64748B;

      /* BACKGROUNDS */
    --page-bg: #F8FAFC;
    --section-alt: #EEF2F7;
    --card-bg: rgba(255,255,255,0.75);

     /* NAVBAR */
    --dark-bg: rgba(255,255,255,0.85);
    --dark-mid: #E2E8F0;

    /* TEXT COLORS */
    --text-primary: #1E293B;
    --text-body: #475569;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    --text-on-dark: #F8FAFC;
    --text-on-dark-m: #CBD5E1;

    /* EXTRA COLORS */
    --gold: #94A3B8;
    --iron: #334155;

    /* STATUS */
    --success: #16A34A;
    --error: #DC2626;

    /* BORDERS */
    --border-light: 1px solid rgba(255,255,255,0.45);
    --border-dark: 1px solid #CBD5E1;
    --border-accent: 1px solid rgba(148,163,184,0.35);

    /* SHADOWS */
    --shadow-card: 0 10px 35px rgba(15,23,42,0.08);
    --shadow-hover: 0 18px 45px rgba(71,85,105,0.16);

    /* GRADIENTS */
    --hero-glow: none;

    --dark-gradient:
    linear-gradient(
        135deg,
        #F8FAFC 0%,
        #E2E8F0 50%,
        #CBD5E1 100%
    );

    --bg-hero:
    linear-gradient(
        135deg,
        #F8FAFC 0%,
        #E2E8F0 45%,
        #CBD5E1 100%
    );

    --bg-hero-alt:
    linear-gradient(
        135deg,
        #FFFFFF 0%,
        #EEF2F7 50%,
        #DCE3EA 100%
    );

    --bg-forge:
    linear-gradient(
        135deg,
        #F8FAFC,
        #E2E8F0
    );

    --bg-workshop:
    linear-gradient(
        135deg,
        #EEF2F7,
        #CBD5E1
    );
}
/* ===== BODY ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--page-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
}

html { scroll-behavior: smooth; }

section { padding: 80px 10%; }
section:nth-of-type(even) { background: var(--section-alt); }

.card {
    background: var(--card-bg);
    border: var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: #FDF8F3;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.btn-primary {
    background: var(--primary);
    color: #FDF8F3;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(196,80,26,0.25);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(196,80,26,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
}
.btn-outline:hover {
    background: var(--primary);
    color: #FDF8F3;
    transform: translateY(-3px);
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}
p {
    color: var(--text-body);
    font-size: 1rem;
}


/* =============================================
   NAVIGATION
   ============================================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--border-accent);
    box-shadow: 0 4px 24px rgba(196,80,26,0.18);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo i { font-size: 30px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}
.nav-links a {
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s;
    padding: 5px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: #2C2C2C; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* =============================================
   LOGO IMAGE
   ============================================= */
nav .logo img,
.navbar .logo img {
    height: 120px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
}

/* =============================================
   NAVBAR VARIANT (gallery / contact)
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border-bottom: 2px solid #2563EB;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar .logo { font-size: unset; }

.logo-icon {
    width: 48px; height: 48px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FDF8F3;
    box-shadow: 0 0 18px rgba(196,80,26,0.35);
}
.logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #2C2C2C;
    letter-spacing: 2px;
}
.logo-text span {
    font-size: 11px;
    color: #2C2C2C;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #111827;
    font-size: 24px;
    cursor: pointer;
}


/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* ── ANTHRACITE dark header for inner pages ── */
    background: linear-gradient(
        135deg,
        #2c2f33 0%,
        #3a3d42 30%,
        #1f2225 60%,
        #2e3136 100%
    );

    background-size: cover;
    background-position: center;
    margin-top: 70px;
}
.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    color: #F0F4F8;
    text-shadow: 0 0 24px rgba(255,255,255,0.15);
}
.page-header p {
    font-size: 18px;
    color: #8892A0;
    margin-top: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-header.alt {
    padding: 200px 5% 80px;
    height: auto;

    /* ── ANTHRACITE alt header ── */
    background: linear-gradient(
        135deg,
        #2c2f33 0%,
        #3a3d42 40%,
        #1f2225 100%
    );

    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.page-header.alt::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="0" y="0" width="1" height="100" fill="rgba(255,255,255,0.04)"/><rect x="0" y="0" width="100" height="1" fill="rgba(255,255,255,0.04)"/></svg>');
    background-size: 30px 30px;
}
.page-header.alt h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
    color: #F0F4F8;
    position: relative; z-index: 1;
}
.page-header.alt p {
    font-size: 17px;
    color: #8892A0;
    margin-top: 15px;
    position: relative; z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative; z-index: 1;
}
.breadcrumb a { color: #A0AABB; text-decoration: none; font-weight: 600; }
.breadcrumb span { color: #606878; }


/* =============================================
   SECTION TITLES
   ============================================= */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--iron);
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 55px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
}


/* =============================================
   HERO  —  ANTHRACITE DARK
   ============================================= */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.15;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* ── ANTHRACITE dark background ── */
    background: linear-gradient(
        135deg,
        #F8FAFC 0%,
        #E2E8F0 40%,
        #CBD5E1 100%
    );

    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Remove old image overlays */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    backdrop-filter: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    /* subtle radial highlight at top-right */
    background: radial-gradient(
        circle at 80% 15%,
        rgba(160, 168, 180, 0.12),
        transparent 45%
    );
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;

    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);

    padding: 60px;
    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 40px rgba(15,23,42,0.10),
    inset 0 1px 1px rgba(255,255,255,0.6);

    max-width: 900px;
    width: 90%;
}

/* Main Heading — light on dark */
.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 68px;
    font-weight: 900;
    color: #1E293B;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 2PX 10PX rgba(255, 255, 255, 0.8);
    animation: ember-pulse 3s ease-in-out infinite alternate;
}
@keyframes ember-pulse {
    from { text-shadow: 0 0 20px rgba(200,210,220,0.25); }
    to   { text-shadow: 0 0 45px rgba(200,210,220,0.50), 0 0 80px rgba(160,170,185,0.18); }
}

/* Tagline */
.hero-content .tagline {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: #64748B;
}

/* Paragraph */
.hero-content p {
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #475569;
}

/* =============================================
   WHATSAPP CHAT BUTTON
   ============================================= */

.whatsapp-chat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
}

/* Buttons row */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Primary button on dark hero */
.hero .btn-primary,
.hero-content .btn-primary {
    background: linear-gradient(135deg, #475569, #334155);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(51,65,85,0.25);
}
.hero .btn-primary:hover,
.hero-content .btn-primary:hover {
    background: linear-gradient(135deg, #334155, #1E293B);
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(51,65,85,0.35);
}

/* Outline button on dark hero */
.hero .btn-outline,
.hero-content .btn-outline {
    background: rgba(255,255,255,0.35);
    color: #334155;
    border: 2px solid rgba(71,85,105,0.35);
    border-radius: 50px;
}
.hero .btn-outline:hover,
.hero-content .btn-outline:hover {
    background: #334155;
    color: WHITE;
    border-color: #334155;
    transform: translateY(-4px);
}


/* =============================================
   STATS  —  light grey surface
   ============================================= */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 70px 50px;
    background: #ECEEF1;
    border-top: 1px solid #D8DCE2;
    border-bottom: 1px solid #D8DCE2;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--primary);
}
.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 8px;
}


/* =============================================
   FEATURES  —  light grey page bg
   ============================================= */
.features {
    padding: 90px 50px;
    text-align: center;
    background: #F0F2F4;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 36px 30px;
    border-radius: 16px;
    border: var(--border-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-8px);
    border-color: #C4501A;
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 18px;
}
.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.feature-card p { color: var(--text-muted); line-height: 1.6; }

.product-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 30px;
    justify-content: center;
}
.product-features .feature-card {
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* =============================================
   PRODUCTS PREVIEW  —  slightly darker grey
   ============================================= */
.products-preview {
    padding: 90px 50px;
    background: #E4E6EA;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-light);
    transition: all 0.3s;
    box-shadow: var(--shadow-card);
}
.product-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.product-image {
    width: 100%; height: 240px;
    object-fit: cover;
    transition: transform 0.3s;
    filter: brightness(0.95);
}
.product-card:hover .product-image {
    transform: scale(1.06);
    filter: brightness(1);
}
.product-info { padding: 28px; }
.product-info h3 { font-size: 22px; margin-bottom: 8px; color: var(--iron); }
.product-info p { color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }


/* =============================================
   SCROLL REVEAL
   ============================================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s;
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* =============================================
   ABOUT SECTION  —  light grey metallic
   ============================================= */
.about-section {
    padding: 100px 6%;
    position: relative;
    overflow: hidden;

    background: linear-gradient(160deg, #f0f2f4 0%, #e4e7ea 40%, #eceef1 100%);
    background-attachment: fixed;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(220, 224, 230, 0.25),
        rgba(255, 255, 255, 0.35)
    );
    z-index: 1;
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1300px;
    margin: auto;
}

.about-image {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}
.about-image:hover { transform: scale(1.03); }

.about-content {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
}
.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #2f3542;
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 20px;
}

.highlight-box {
    background: rgba(255,255,255,0.55);
    border-left: 5px solid #9ca3af;
    padding: 22px 28px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.highlight-box p {
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}


/* =============================================
   TIMELINE SECTION  —  light grey
   ============================================= */
.timeline {
    padding: 100px 6%;
    background: linear-gradient(160deg, #e8eaed 0%, #f0f2f4 50%, #e4e6ea 100%);
    background-attachment: fixed;
}

.timeline h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: #2f3542;
    margin-bottom: 70px;
}

.timeline-container {
    max-width: 900px;
    margin: auto;
    position: relative;
}
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #9ca3af;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    margin-bottom: 50px;
}
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-content {
    background: rgba(255,255,255,0.60);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 24px;
    width: 380px;
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    position: relative;
}
.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px; height: 18px;
    background: #9ca3af;
    border-radius: 50%;
    transform: translateY(-50%);
}
.timeline-item:nth-child(odd)  .timeline-content::after { right: -48px; }
.timeline-item:nth-child(even) .timeline-content::after { left:  -48px; }

.timeline-date {
    font-family: 'Orbitron', sans-serif;
    color: #6b7280;
    font-size: 14px; font-weight: 700;
    margin-bottom: 10px;
}
.timeline-content h3 { color: #1f2937; font-size: 24px; margin-bottom: 12px; }
.timeline-content p  { color: #4b5563; line-height: 1.8; }


/* =============================================
   VALUES SECTION  —  light grey
   ============================================= */
.values {
    padding: 100px 6%;
    background: linear-gradient(160deg, #f0f2f4 0%, #e8eaed 50%, #eceef1 100%);
    background-attachment: fixed;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.value-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.55);
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.70);
}
.value-icon   { font-size: 46px; color: #6b7280; margin-bottom: 22px; }
.value-card h3{ font-size: 24px; color: #1f2937; margin-bottom: 14px; }
.value-card p { color: #4b5563; line-height: 1.8; }


/* =============================================
   PRODUCTS PAGE  —  light grey
   ============================================= */
.products-section {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background: #F0F2F4;
}
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 55px;
}
.tab-btn {
    padding: 13px 36px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
}
.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: #FDF8F3;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(196,80,26,0.28);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}
.product-item {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-light);
    transition: all 0.3s;
    box-shadow: var(--shadow-card);
}
.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.product-img { width: 100%; height: 270px; object-fit: cover; transition: transform 0.3s; }
.product-item:hover .product-img { transform: scale(1.04); }

.product-details { padding: 28px; }
.product-details h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px; color: var(--iron);
    margin-bottom: 8px;
}
.product-details .price { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.product-details p { color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }

.specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.spec-tag {
    background: #E8EAED;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--iron);
    font-weight: 600;
}


/* =============================================
   GALLERY  —  light grey
   ============================================= */
.gallery-filter { padding: 40px 5% 20px; text-align: center; background: #F0F2F4; }
.filter-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.filter-btn {
    padding: 9px 22px;
    background: transparent;
    border: 2px solid #C8CDD4;
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #FDF8F3;
}

.gallery-section {
    padding: 40px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
    background: #F0F2F4;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
}
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--card-bg);
    border: var(--border-light);
    transition: all 0.3s;
}
.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #E8EAED, #F0F2F4);
}
.gallery-placeholder i   { font-size: 46px; color: var(--primary); margin-bottom: 12px; opacity: 0.75; }
.gallery-placeholder span {
    color: var(--text-muted); font-size: 13px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
}
.gallery-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(28,20,16,0.92), transparent);
    padding: 28px 18px 18px;
    transform: translateY(100%);
    transition: transform 0.3s;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h4  { color: #FDF8F3; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.gallery-overlay p   { color: #C0B0A0; font-size: 13px; }
.gallery-overlay .view-icon {
    position: absolute; top: 18px; right: 18px;
    width: 38px; height: 38px;
    background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #FDF8F3; font-size: 15px;
}


/* =============================================
   CONTACT  —  light grey
   ============================================= */
.contact-info-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: #F0F2F4;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.info-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 38px 28px;
    text-align: center;
    border: var(--border-light);
    transition: all 0.3s;
    box-shadow: var(--shadow-card);
}
.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.info-icon {
    width: 68px; height: 68px;
    background: rgba(196,80,26,0.10);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-size: 26px; color: var(--primary);
    border: 2px solid rgba(196,80,26,0.25);
    transition: all 0.3s;
}
.info-card:hover .info-icon { background: var(--primary); color: #FDF8F3; }
.info-card h4 { font-size: 19px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.info-card p  { color: var(--text-muted); line-height: 1.8; font-size: 14px; }
.info-card a  { color: var(--primary); text-decoration: none; }
.info-card a:hover { color: var(--iron); }

.contact-form-section {
    padding: 80px 5%;
    background: #E4E6EA;
}
.form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.form-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px; color: var(--primary);
    letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 12px;
}
.form-header h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 22px;
}
.form-header p {
    color: var(--text-muted);
    line-height: 1.8; font-size: 16px; margin-bottom: 28px;
}
.form-header .highlight { color: var(--primary); font-weight: 600; }

.contact-form {
    background: var(--card-bg);
    padding: 44px;
    border-radius: 18px;
    border: var(--border-light);
    box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    color: var(--text-body);
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px;
}
.form-group label span { color: var(--primary); }

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: #F4F5F7;
    border: 1.5px solid #CDD0D6;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(44,44,44,0.10);
}
.form-control::placeholder { color: var(--text-light); }

select.form-control {
    cursor: pointer; appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%236B5A4E"><path d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 18px center;
}
select.form-control option { background: #F4F5F7; color: var(--text-primary); }
textarea.form-control { min-height: 145px; resize: vertical; }

.btn-submit {
    width: 100%; padding: 17px;
    background: var(--primary);
    color: #FDF8F3;
    border: none; border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(44,44,44,0.28);
}
.btn-submit:hover i { transform: translateX(4px); }

.alert {
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 22px;
    display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 15px;
}
.alert-success { background: rgba(46,125,50,0.10); border: 1px solid var(--success); color: var(--success); }
.alert-error   { background: rgba(198,40,40,0.10); border: 1px solid var(--error);   color: var(--error); }

/* =============================================
   MAP — Light Grey
   ============================================= */
.map-section {
    padding: 80px 5%;
    background: #F0F2F4;
}

.map-container {
    position: relative;
    max-width: 1000px; /* smaller width */
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #CDD0D6;
    box-shadow: var(--shadow-card);
}

.map-container iframe {
    display: block;
    width: 100%;
     height: 380px; /* smaller height */
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 28px;
    border-radius: 14px;
    max-width: 340px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.map-overlay h4 {
    color: var(--iron);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-overlay p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }

    .map-overlay {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        padding: 18px;
    }
}

/* =============================================
   HOURS  —  slightly darker grey strip
   ============================================= */
.hours-section {
    padding: 60px 5%;
    background: #E4E6EA;
}
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.hours-item {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 14px;
    border: var(--border-light);
    box-shadow: var(--shadow-card);
}
.hours-item i { font-size: 28px; color: var(--primary); margin-bottom: 12px; }
.hours-item h4 { color: var(--text-primary); font-size: 17px; margin-bottom: 8px; }
.hours-item p  { color: var(--text-muted); font-size: 14px; }
.hours-item .status {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase;
}
.status-open   { background: rgba(46,125,50,0.12);  color: var(--success); }
.status-closed { background: rgba(198,40,40,0.10); color: var(--error); }


/* =============================================
   FOOTER
   ============================================= */
footer,
.footer {
    background: var(--dark-bg);
    padding: 60px 50px 30px;
    border-top: var(--border-accent);
}
.footer-content,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid { margin-bottom: 40px; }

.footer-section h3,
.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-light);
    margin-bottom: 18px;
    font-size: 16px; letter-spacing: 2px;
}
.footer-section p,
.footer-section a,
.footer-col p,
.footer-col a {
    color: #9E8878;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}
.footer-section a:hover,
.footer-col a:hover { color: var(--primary-light); }
.footer-col i { color: var(--primary-light); margin-right: 10px; width: 20px; }

.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(196,80,26,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--primary);
    color: #FDF8F3;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(196,80,26,0.2);
    color: #6B5A4E;
    font-size: 14px;
}


/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(28,20,16,0.96);
    z-index: 2000;
    align-items: center; justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }

.lightbox-content { max-width: 900px; width: 100%; text-align: center; }
.lightbox-img {
    width: 100%; max-height: 70vh;
    background: var(--card-bg);
    border-radius: 14px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 60px;
    border: 2px solid var(--primary);
}
.lightbox-img i { font-size: 90px; color: var(--primary); margin-bottom: 18px; }
.lightbox-img p { color: var(--text-muted); font-size: 17px; }
.lightbox-caption { margin-top: 18px; color: #F0E6D8; font-size: 19px; font-weight: 700; }
.lightbox-close {
    position: absolute; top: 28px; right: 38px;
    font-size: 38px; color: #F0E6D8; cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--primary-light); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    font-size: 38px; color: #F0E6D8; cursor: pointer;
    padding: 18px; transition: color 0.3s;
}
.lightbox-nav:hover { color: var(--primary-light); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* ============================================
   LIGHTBOX IMAGE - FIXED
   ============================================ */

.lightbox-img-container {
    width: 100%;
    max-height: 70vh;
    background: #1f2937;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 122, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-container img {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    margin-top: 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.lightbox-caption p {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 5px;
}


/* =============================================
   RESPONSIVE  —  TABLET & MOBILE
   ============================================= */
@media (max-width: 768px) {

    /* ---------- NAVBAR ---------- */
    nav, .navbar {
        padding: 10px 18px;
        height: 75px;
    }
    .nav-links { display: none; }
    nav .nav-links,
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0; right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: var(--border-accent);
        z-index: 999;
    }
    nav .nav-links.active,
    .navbar .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block !important; }
    nav .logo img, .navbar .logo img {
        height: 42px;
        max-width: 140px;
    }

    /* ========== HOME / HERO ========== */
    .hero {
        height: auto !important;
        min-height: 100dvh;
        padding: 100px 5% 60px !important;
    }
    .hero-content {
        padding: 35px 22px !important;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 32px !important;
        letter-spacing: 2px;
    }
    .hero-content .tagline {
        font-size: 13px;
        letter-spacing: 3px;
    }
    .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 14px;
    }
    .cta-buttons .btn,
    .hero .btn-primary,
    .hero .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* ========== STATS ========== */
    .stats {
        flex-direction: column;
        gap: 28px;
        padding: 50px 20px;
    }
    .stat-number { font-size: 36px; }

    /* ========== FEATURES ========== */
    .features {
        padding: 60px 20px !important;
    }
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .feature-card {
        padding: 28px 22px;
    }
    .product-features .features-grid {
        grid-template-columns: 1fr !important;
        justify-items: center;
    }
    .product-features .feature-card {
        width: 100% !important;
        max-width: 320px;
        height: auto !important;
        min-height: 240px;
    }

    /* ========== PRODUCTS PREVIEW ========== */
    .products-preview {
        padding: 60px 20px !important;
    }
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .product-card {
        max-width: 100%;
    }
    .product-image {
        height: 200px;
    }
    .product-info {
        padding: 22px;
    }

    /* ========== PRODUCTS PAGE ========== */
    .products-section {
        padding: 60px 20px !important;
    }
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .product-item {
        max-width: 100%;
    }
    .product-img {
        height: 200px;
    }
    .product-details {
        padding: 22px;
    }
    .product-details .price {
        font-size: 22px;
    }
    .specs {
        gap: 6px;
    }
    .spec-tag {
        font-size: 12px;
        padding: 3px 10px;
    }
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    /* ========== ABOUT ========== */
    .about-section {
        padding: 60px 5% !important;
    }
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    .about-image {
        width: 100%;
        border-radius: 16px;
    }
    .about-content {
        padding: 35px 25px !important;
        border-radius: 20px;
    }
    .about-content h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    .about-content p {
        font-size: 15px;
    }
    .highlight-box {
        padding: 18px 20px;
        margin-top: 20px;
    }
    .highlight-box p {
        font-size: 16px;
    }

    /* ========== TIMELINE ========== */
    .timeline {
        padding: 60px 5% !important;
    }
    .timeline h2 {
        font-size: 32px;
    }
    .timeline-container::before {
        left: 20px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 48px;
        padding-right: 0;
    }
    .timeline-item .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -38px;
        right: auto;
    }

    /* ========== VALUES ========== */
    .values {
        padding: 60px 5% !important;
    }
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .value-card {
        padding: 32px 24px;
    }

    /* ========== GALLERY ========== */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .lightbox-nav {
        font-size: 22px;
        padding: 10px;
    }
    .lightbox-close {
        top: 14px;
        right: 18px;
        font-size: 28px;
    }

    /* ========== CONTACT ========== */
    .form-container {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 28px;
    }
    .contact-info-section {
        padding: 40px 5% !important;
    }
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 18px;
        max-width: none;
    }

    /* ========== VIDEO & MAP ========== */
    .video-section {
        padding: 60px 5% !important;
    }
    .map-section {
        padding: 40px 5% !important;
    }
    .map-container iframe {
        height: 300px;
    }

    /* ========== HOURS ========== */
    .hours-section {
        padding: 40px 5% !important;
    }
    .hours-grid {
        gap: 16px;
    }

    /* ========== FOOTER ========== */
    .footer, footer {
        padding: 36px 18px 18px !important;
    }

    /* ========== GLOBAL ========== */
    section {
        padding: 60px 5% !important;
    }
    .section-title {
        font-size: 28px;
    }
    .section-header h2 {
        font-size: 26px;
    }
}

/* =============================================
   RESPONSIVE  —  SMALL MOBILE
   ============================================= */
@media (max-width: 650px) {
    nav, .navbar {
        height: 65px;
        padding: 8px 14px;
    }
    .navbar .nav-links {
        top: 65px;
    }
    nav .logo img, .navbar .logo img {
        height: 34px;
        max-width: 115px;
    }

    /* Hero tighter */
    .hero {
        padding: 90px 4% 50px !important;
    }
    .hero-content {
        padding: 28px 16px !important;
        border-radius: 16px;
    }
    .hero-content h1 {
        font-size: 26px !important;
        letter-spacing: 1px;
    }
    .hero-content .tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }
    .hero-content p {
        font-size: 14px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .product-features .features-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================
   RESPONSIVE  —  MEDIUM SCREEN
   ============================================= */
@media (max-width: 1000px) {
    .product-features .features-grid { grid-template-columns: repeat(2, 280px); }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 90px;
    width: 50px;
    height: 50px;
    background: #ff7a18;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(225, 122, 24, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #e85d04;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: scale(0.95);
}

.back-to-top {
    width: 55px;
    height: 55px;
    font-size: 22px;
}

/* ============================================
   COPY TO CLIPBOARD BUTTON
   ============================================ */

.btn-copy {
    background: none;
    border: none;
    color: #ff7a18;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 5px;
}

.btn-copy:hover {
    opacity: 1;
    transform: scale(1.2);
    background: rgba(255, 122, 24, 0.1);
}

/* Tooltip that appears after copying */
.copy-tooltip {
    position: absolute;
    background: #16a34a;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    animation: tooltipFade 2s forwards;
    pointer-events: none;
    margin-top: -35px;
    margin-left: 10px;
}

@keyframes tooltipFade {
    0% { opacity: 0; transform: translateY(10px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}
/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;           /* Same as WhatsApp */
    right: 90px;            /* Left of WhatsApp button */
    width: 50px;
    height: 50px;
    background: #ff7a18;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(225, 122, 24, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #e85d04;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: scale(0.95);
}

.back-to-top {
    width: 55px;        /* Was 45px */
    height: 55px;       /* Was 45px */
    font-size: 22px;    /* Was 18px */
}

/* ============================================
   COPY TO CLIPBOARD BUTTON
   ============================================ */

.btn-copy {
    background: none;
    border: none;
    color: #ff7a18;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 5px;
}

.btn-copy:hover {
    opacity: 1;
    transform: scale(1.2);
    background: rgba(255, 122, 24, 0.1);
}

/* Tooltip that appears after copying */
.copy-tooltip {
    position: absolute;
    background: #16a34a;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    animation: tooltipFade 2s forwards;
    pointer-events: none;
    margin-top: -35px;
    margin-left: 10px;
}

@keyframes tooltipFade {
    0% { opacity: 0; transform: translateY(10px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}