/* ==========================================================================
   GR Global — Premium Design System
   Unique Charcoal × Copper/Rose Gold Theme
   ========================================================================== */


/* ---------- Custom Properties ---------- */
:root {
    --charcoal: #2D3436;
    --charcoal-light: #3D4446;
    --copper: #B87333;
    --copper-dark: #9A5F2A;
    --copper-light: #FDF0E5;
    --gold: #D4A855;
    --teal: #4ECDC4;
    --teal-dark: #3CB5AD;
    --cream: #FAF9F6;
    --warm-grey: #F2F0ED;
    --light-border: #E8E5E0;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --text: #3D3D3D;
    --text-light: #7A7A7A;
    --text-muted: #A0A0A0;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --shadow-sm: 0 2px 10px rgba(45, 52, 54, .05);
    --shadow-md: 0 6px 24px rgba(45, 52, 54, .08);
    --shadow-lg: 0 12px 48px rgba(45, 52, 54, .12);
    --shadow-copper: 0 8px 30px rgba(184, 115, 51, .15);

    --ease: cubic-bezier(.4, 0, .2, 1);
    --dur: .3s;

    --container: 1200px;
    --radius: 16px;
    --radius-sm: 8px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

.container {
    width: min(var(--container), 92%);
    margin: 0 auto
}

/* ---------- TOP INFO BAR ---------- */
.top-bar {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    padding: 9px 0;
    letter-spacing: .3px;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px
}

.top-bar-item svg {
    width: 13px;
    height: 13px;
    fill: var(--copper)
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.top-bar-right a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.top-bar-right a.social-fb svg { fill: #1877F2; }
.top-bar-right a.social-x svg { fill: #ffffff; }
.top-bar-right a.social-ig svg { fill: url(#igGradientHeader); }
.top-bar-right a.social-yt svg { fill: #FF0000; }

.top-bar-right a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.top-bar-right svg {
    width: 18px;
    height: 18px;
    transition: transform var(--dur) var(--ease);
}

.top-bar-right a:hover svg {
    transform: scale(1.15);
}


/* ---------- HERO SLIDER ---------- */
.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.7) 0%, rgba(45, 52, 54, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
    animation: slideUp 0.8s ease forwards;
}

.slide-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    opacity: 0.9;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.4);
}

.slide-btn:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 115, 51, 0.5);
}

.slide-btn svg {
    width: 18px;
    height: 18px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-arrow svg {
    width: 22px;
    height: 22px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.slider-dots span.active {
    background: var(--copper);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(184, 115, 51, 0.6);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- HEADER ---------- */
.header {
    background: var(--white);
    box-shadow: 0 1px 0 var(--light-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--dur) var(--ease);
}

.header.scrolled {
    box-shadow: var(--shadow-md)
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo img {
    height: 65px
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--charcoal);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: .6rem;
    font-weight: 500;
    color: var(--copper);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 0
}

.nav-item {
    position: relative
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 28px 18px;
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: color var(--dur) var(--ease);
}

.nav-item>a:hover,
.nav-item>a.active {
    color: var(--copper)
}

/* Active page indicator — copper underline */
.nav-item>a.active {
    font-weight: 700;
}

.nav-item>a.active::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--copper);
    border-radius: 2px;
}

.nav-item>a svg {
    width: 10px;
    height: 10px;
    fill: var(--text-muted);
    transition: transform var(--dur) var(--ease)
}

.nav-item:hover>a svg {
    transform: rotate(180deg);
    fill: var(--copper)
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--copper);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--dur) var(--ease);
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0ms;
}

.nav-item .dropdown {
    transition-delay: 150ms;
}

.dropdown a {
    display: block;
    padding: 12px 22px;
    font-size: .84rem;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--warm-grey);
    transition: all var(--dur) var(--ease);
}

.dropdown a:last-child {
    border-bottom: none
}

.dropdown a:hover {
    background: var(--copper-light);
    color: var(--copper);
    padding-left: 28px
}

/* Mega Menu */
.nav-item:has(.mega-menu) {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: max-content;
    max-width: 95vw;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--copper);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: all var(--dur) var(--ease);
    z-index: 100;
    display: flex;
    padding: 30px;
    gap: 32px;
    cursor: default;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition-delay: 0ms;
}

.nav-item .mega-menu {
    transition-delay: 150ms;
}

.mega-menu-col {
    flex: 1;
}

/* Make first column (Taps) wider to accommodate two columns if needed */
.mega-menu-col:first-child {
    flex: 1.2;
}

.mega-menu-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.mega-menu-col h4 svg {
    width: 18px;
    height: 18px;
    fill: var(--copper);
}

.mega-menu-sub {
    margin-bottom: 24px;
}

.mega-menu-sub:last-child {
    margin-bottom: 0;
}

.mega-menu-sub strong {
    display: block;
    font-size: 0.75rem;
    color: var(--copper);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.mega-menu a {
    display: block;
    padding: 6px 0;
    font-size: 0.88rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    transition: all var(--dur) var(--ease);
}

.mega-menu a:hover {
    color: var(--copper);
    padding-left: 10px;
}

/* Two-column grid for longer lists (like Taps) */
.taps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}

/* ===== Mega-Menu Preview Panel ===== */
.mega-menu-preview {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 0;
    order: -1;
    border-right: 1px solid var(--light-border);
    padding-right: 24px;
    margin-right: 8px;
    align-self: flex-start;
    transition: opacity 0.15s ease;
}

.mega-menu-preview.preview-loading {
    opacity: 0;
}

.mega-preview-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--lighter);
    margin-bottom: 14px;
    position: relative;
}

.mega-preview-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
    padding: 8px;
    box-sizing: border-box;
}

.mega-menu-preview:hover .mega-preview-img-wrap img {
    transform: scale(1.04);
}

.mega-preview-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-preview-sub {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--copper);
    font-family: var(--font-heading);
}

.mega-preview-name {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.3;
}

.mega-preview-cta {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* Active/Highlighted link in mega-menu when preview is active */
.mega-menu a.preview-active {
    color: var(--copper) !important;
    padding-left: 10px;
    font-weight: 600;
}

/* Enquiry CTA */

.nav-cta {
    margin-left: 20px;
    padding: 11px 26px;
    background: var(--copper);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 16px rgba(184, 115, 51, .25);
}

.nav-cta:hover {
    background: var(--charcoal);
    box-shadow: 0 4px 16px rgba(45, 52, 54, .25)
}

.nav-cta svg {
    width: 14px;
    height: 14px;
    fill: var(--white)
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--dur) var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px)
}



/* ---------- SECTION UTILITIES ---------- */
.section {
    padding: 90px 0
}

.section-header {
    text-align: center;
    margin-bottom: 55px
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 600;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--copper);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ---------- ABOUT SNIPPET ---------- */
.about-home {
    background: var(--white)
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-home-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-home-image img {
    width: 100%;
    height: 420px;
    object-fit: cover
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--gold));
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-copper);
    text-align: center;
}

/* ---------- LIGHTBOX FOR SLIDER ---------- */
.slider-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 40px;
    cursor: zoom-out;
}

.slider-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.slider-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--copper);
    transform: rotate(90deg);
}

.slide img {
    cursor: zoom-in;
}

@media (max-width: 768px) {
    .slider-lightbox {
        padding: 20px;
    }
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }
}

.about-badge strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1
}

.about-badge span {
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.about-home-content .section-label {
    justify-content: flex-start
}

.about-home-content .section-label::before {
    display: none
}

.about-home-content .section-title {
    text-align: left
}

.about-home-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.85
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-radius: 50px;
    transition: all var(--dur) var(--ease);
}

.btn-more:hover {
    background: var(--copper);
    box-shadow: var(--shadow-copper)
}

.btn-more svg {
    width: 14px;
    height: 14px;
    fill: var(--white)
}

/* ---------- PRODUCTS GRID ---------- */
.products-home {
    background: var(--cream)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-border);
    transition: all var(--dur) var(--ease);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.product-card-img {
    height: 230px;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform .6s var(--ease)
}

.product-card:hover .product-card-img img {
    transform: scale(1.07)
}

.product-card-body {
    padding: 22px;
    text-align: center
}

.product-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: .86rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.65
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 600;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: color var(--dur) var(--ease);
}

.read-more:hover {
    color: var(--charcoal)
}

.read-more svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--dur) var(--ease)
}

.read-more:hover svg {
    transform: translateX(5px)
}

/* ---------- EVENTS GALLERY ---------- */
.events {
    background: var(--white)
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.event-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    cursor: pointer;
    border: 1px solid var(--light-border);
}

.event-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform .6s var(--ease)
}

.event-card:hover img {
    transform: scale(1.06)
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(45, 52, 54, .8));
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.event-card:hover .event-card-overlay {
    opacity: 1
}

.event-card-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .92rem
}

/* ---------- ACHIEVEMENTS ---------- */
.achievements {
    background: var(--cream)
}

.achievements-slider {
    display: flex;
    gap: 28px;
    overflow: hidden;
    position: relative
}

.achievement-item {
    min-width: calc(33.333% - 19px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-border);
    transition: transform var(--dur) var(--ease);
}

.achievement-item:hover {
    transform: translateY(-4px)
}

.achievement-item img {
    height: 250px;
    object-fit: contain;
    margin: 0 auto
}

/* ---------- TABS (VISION / MISSION) ---------- */
.tabs-section {
    background: var(--white)
}

.tabs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.tabs-nav {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--warm-grey)
}

.tabs-nav button {
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all var(--dur) var(--ease);
}

.tabs-nav button.active {
    color: var(--copper);
    border-color: var(--copper)
}

.tabs-nav button:hover {
    color: var(--copper)
}

.tab-content {
    display: none
}

.tab-content.active {
    display: block;
    animation: fadeUp .4s var(--ease)
}

.tab-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.tab-content p {
    color: var(--text-light);
    line-height: 1.85
}

.tabs-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md)
}

/* ---------- PAGE BANNERS (Inner Pages) ---------- */
.page-banner {
    height: 500px;
    position: relative;
    overflow: hidden
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 52, 54, .75), rgba(184, 115, 51, .25));
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

/* ---------- ABOUT PAGE ---------- */
.about-page {
    padding: 90px 0
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.about-page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.about-page-content .since {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-page-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 16px
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px
}

.about-stat {
    text-align: center;
    padding: 28px 16px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--light-border);
}

.about-stat strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--copper);
    display: block;
}

.about-stat span {
    font-size: .84rem;
    color: var(--text-light);
    font-weight: 500
}

.about-page-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px
}

/* ---------- PRODUCTS PAGE ---------- */
.products-page {
    padding: 90px 0
}

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.product-page-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-border);
    transition: all var(--dur) var(--ease);
}

.product-page-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.product-page-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: var(--cream);
    padding: 10px;
}

.product-page-card-body {
    padding: 22px;
    text-align: center
}

.product-page-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
}

/* ---------- PRODUCT DETAIL PAGE ---------- */
.product-detail {
    padding: 90px 0
}

.product-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    align-items: start;
    border: 1px solid var(--light-border);
}

.product-item-img {
    padding: 24px;
    background: var(--cream)
}

.product-item-img img {
    width: 100%;
    height: 200px;
    object-fit: contain
}

.product-item-info {
    padding: 28px 28px 28px 0
}

.product-item-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--copper);
    display: inline-block;
}

.spec-table {
    width: 100%;
    border-collapse: collapse
}

.spec-table th,
.spec-table td {
    padding: 11px 18px;
    text-align: left;
    font-size: .86rem;
    border-bottom: 1px solid var(--warm-grey);
}

.spec-table th {
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.spec-table tr:hover td {
    background: var(--copper-light)
}

/* ---------- CERTIFICATES PAGE ---------- */
.certificates-page {
    padding: 90px 0
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.cert-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--light-border);
    transition: all var(--dur) var(--ease);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.cert-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 14px
}

.cert-card h4 {
    font-family: var(--font-heading);
    font-size: .92rem;
    font-weight: 700;
    color: var(--charcoal)
}

/* ---------- CONTACT PAGE ---------- */
.contact-page {
    padding: 90px 0
}

.contact-form-section {
    text-align: center;
    margin-bottom: 50px
}

.contact-form-section .section-title {
    margin-bottom: 8px
}

.contact-form-section p {
    color: var(--text-light);
    margin-bottom: 32px
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--copper);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text);
    outline: none;
    background: var(--cream);
    transition: all var(--dur) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, .08);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: .88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.btn-submit:hover {
    background: var(--copper);
    box-shadow: var(--shadow-copper)
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--charcoal-light);
    padding: 70px 0 0;
    color: rgba(255, 255, 255, .7);
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 16px
}

.footer-brand .logo-text {
    color: var(--white)
}

.footer-brand .logo-text span {
    color: var(--copper)
}



.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-socials a.social-fb svg { fill: #1877F2; }
.footer-socials a.social-x svg { fill: #000000; }
.footer-socials a.social-ig svg { fill: url(#igGradientFooter); }
.footer-socials a.social-yt svg { fill: #FF0000; }

.footer-socials a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-socials svg {
    width: 22px;
    height: 22px;
    transition: all var(--dur) var(--ease);
}

.footer-socials a:hover svg {
    transform: scale(1.1);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: .92rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    font-size: .86rem;
    color: rgba(255, 255, 255, .55);
    padding: 5px 0;
    transition: all var(--dur) var(--ease);
}

.footer-col a:hover {
    color: var(--copper);
    padding-left: 6px
}

.footer-map {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 280px
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, .15);
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-bottom-item {
    display: flex;
    align-items: center;
    gap: 14px
}

.footer-bottom-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 115, 51, .15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--copper);
    stroke-width: 1.5;
    fill: none
}

.footer-bottom-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: .88rem;
    font-weight: 600;
    color: var(--white);
}

.footer-bottom-text span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}

.copyright {
    text-align: center;
    padding: 18px 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .1);
}

/* ---------- WHATSAPP WIDGET ---------- */
.whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    transition: transform var(--dur) var(--ease);
}

.whatsapp:hover {
    transform: scale(1.12)
}

.whatsapp svg {
    width: 28px;
    height: 28px;
    fill: var(--white)
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-copper);
    opacity: 0;
    visibility: hidden;
    transition: all var(--dur) var(--ease);
    cursor: pointer;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    background: var(--charcoal)
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    fill: var(--white)
}

/* Toast */
.toast {
    position: fixed;
    bottom: 32px;
    right: 90px;
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: .9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s var(--ease);
}

.toast.show {
    transform: translateY(0);
    opacity: 1
}

.toast svg {
    width: 20px;
    height: 20px;
    fill: var(--copper)
}

/* ---------- E-COMMERCE LAYOUT ---------- */
.layout-ecommerce {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Filters */
.ecommerce-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-border);
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: color var(--dur) var(--ease);
}

.filter-item:hover {
    color: var(--copper);
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid var(--text-muted);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
}

.filter-item:hover .filter-checkbox,
.filter-item.active .filter-checkbox {
    border-color: var(--copper);
    background: var(--copper);
}

/* Product Grid */
.ecommerce-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* E-Commerce Product Card */
.ecommerce-card {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.ecommerce-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.ecommerce-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease);
}

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

/* Quick Action Overlay on Image */
.ecommerce-quick-action {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(255, 255, 255, 0.95);
    color: var(--charcoal);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--dur) var(--ease);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.ecommerce-card:hover .ecommerce-quick-action {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.ecommerce-quick-action:hover {
    background: var(--copper);
    color: var(--white);
}

.ecommerce-quick-action svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.ecommerce-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ecommerce-category {
    font-size: 0.75rem;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ecommerce-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price & Action Area */
.ecommerce-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--warm-grey);
}

.ecommerce-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.ecommerce-price small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ecommerce-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
    cursor: pointer;
}

.ecommerce-btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

.ecommerce-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {

    .products-grid,
    .products-page-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ecommerce-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-home-grid,
    .about-page-grid,
    .tabs-grid {
        grid-template-columns: 1fr
    }

    .tabs-image {
        order: -1
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .top-bar-left {
        gap: 10px
    }

    .top-bar {
        font-size: .72rem
    }

    .hamburger {
        display: flex
    }

    /* Reduce header height on mobile */
    .header .container {
        height: 64px;
    }

    .logo img {
        height: 50px;
    }

    .nav {
        position: fixed;
        inset: 0;
        top: 64px;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateX(100%);
        transition: transform var(--dur) var(--ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001;
    }

    .nav.open {
        transform: translateX(0)
    }

    .nav-item>a {
        padding: 14px 0;
        border-bottom: 1px solid var(--warm-grey);
        font-size: .9rem;
    }

    /* Nav items must be full width so mega-menu expands properly */
    .nav-item {
        width: 100%;
    }

    .dropdown,
    .mega-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--cream);
        border-radius: var(--radius-sm);
        margin: 4px 0;
        display: none;
    }

    .nav-item.mobile-open .dropdown {
        display: block;
    }

    /* Critical fix: mega-menu must use flex (column) when open, not block */
    .nav-item.mobile-open .mega-menu {
        display: flex;
    }

    /* Override desktop position:static on mega-menu parent */
    .nav-item:has(.mega-menu) {
        position: relative;
    }

    .mega-menu {
        padding: 16px 0;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex-direction: column;
        gap: 12px;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        box-sizing: border-box;
    }

    /* Completely remove the preview panel on mobile — no space taken */
    .mega-menu-preview {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        flex: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: hidden;
    }

    .mega-menu-col {
        padding: 0 16px;
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Ensure first col doesn't have extra flex */
    .mega-menu-col:first-child {
        flex: none !important;
    }

    .mega-menu-col h4 {
        font-size: .95rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .mega-menu a {
        padding: 10px 4px;
        font-size: .88rem;
        white-space: normal;
        word-wrap: break-word;
    }

    /* Disable desktop hover padding-left shift on mobile — prevents text from jumping */
    .mega-menu a:hover,
    .mega-menu a.preview-active {
        padding-left: 4px !important;
    }

    .mega-menu-sub {
        margin-bottom: 16px;
    }

    /* Single-column taps grid on mobile to prevent horizontal overflow */
    .taps-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-cta {
        margin: 16px 0 0;
        width: 100%;
        justify-content: center
    }

    /* Reduce section padding on mobile */
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .hero-slider {
        height: 400px;
        min-height: 280px;
    }

    /* Smaller slider dots for mobile so 12 dots fit */
    .slider-dots {
        gap: 6px;
        bottom: 14px;
    }

    .slider-dots span {
        width: 8px;
        height: 8px;
    }

    /* Smaller slider arrows on mobile */
    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .products-grid,
    .products-page-grid,
    .events-grid,
    .cert-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .layout-ecommerce {
        flex-direction: column;
    }

    .ecommerce-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }

    .ecommerce-grid {
        grid-template-columns: 1fr;
    }

    /* Shrink "Since" badge on mobile */
    .about-badge {
        width: 85px;
        height: 85px;
        bottom: 16px;
        right: 16px;
    }

    .about-badge strong {
        font-size: 1.4rem;
    }

    .about-badge span {
        font-size: .5rem;
    }

    .about-home-image img {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-map {
        height: 200px;
    }

    .about-stats {
        grid-template-columns: 1fr
    }

    .product-item {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    /* Fix achievement items — stack vertically with proper sizing */
    .achievements-slider {
        flex-direction: column;
        gap: 20px;
    }

    .achievement-item {
        min-width: 100%;
        padding: 20px;
    }

    .achievement-item img {
        height: 180px;
    }

    /* Fix tab buttons overflow on mobile */
    .tabs-nav {
        flex-wrap: wrap;
        gap: 0;
    }

    .tabs-nav button {
        padding: 10px 14px;
        font-size: .75rem;
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .tab-content h3 {
        font-size: 1.1rem;
    }

    .page-banner {
        height: 200px;
    }

    /* Prevent overlap of WhatsApp and scroll-top buttons */
    .whatsapp {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }

    .whatsapp svg {
        width: 24px;
        height: 24px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .floating-cart {
        bottom: 78px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media(max-width:480px) {
    .hero-slider {
        height: 280px;
        min-height: 220px;
    }

    .slide-content h2 {
        font-size: 1.4rem
    }

    .contact-form {
        padding: 24px 16px
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-desc {
        font-size: .88rem;
    }

    /* Tighter spacing for product cards on mobile */
    .product-card-body {
        padding: 16px;
    }

    .event-card img {
        height: 200px;
    }

    .tabs-nav button {
        padding: 8px 10px;
        font-size: .7rem;
    }

    .about-home-grid {
        gap: 30px;
    }

    .tabs-grid {
        gap: 30px;
    }
}

/* ==========================================================================
   INTERACTIVE EXTRAS
   ========================================================================== */

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 78px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--gold));
    z-index: 10001;
    pointer-events: none;
    transition: width 0.1s linear;
}

@media(max-width: 1024px) {
    .scroll-progress {
        top: 0;
    }
}

/* Button Ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: rippleAnim 0.6s linear forwards;
}

@keyframes rippleAnim {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

/* Card Shine Hover Effect */
.product-card::before,
.event-card::before,
.cert-card::before,
.product-page-card::before,
.achievement-item::before,
.about-home-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s var(--ease);
    z-index: 2;
    pointer-events: none;
}

.product-card:hover::before,
.event-card:hover::before,
.cert-card:hover::before,
.product-page-card:hover::before,
.achievement-item:hover::before,
.about-home-image:hover::before {
    left: 200%;
    transition: all 0.7s var(--ease);
}

/* Hardware Accl & Reset for 3D Tilt */
.product-card,
.event-card,
.cert-card,
.product-page-card,
.achievement-item,
.about-home-image {
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Bouncy Input Focus */
.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s var(--ease) !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.12) !important;
}

/* Custom Text Selection */
::selection {
    background: var(--copper);
    color: var(--white);
}


/* Reveal Elements Extra Smoothening */
.reveal {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Footer Logo Styling */
.footer-brand .logo img {
    border-radius: 6px;
    padding: 3px;
    background: var(--white);
    max-height: 48px;
    /* Reduced by ~20% for better visual balance */
}

/* ---------- SEARCH MODAL ---------- */
.nav-search-wrapper {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.nav-search-btn {
    background: transparent;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all var(--dur) var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search-btn:hover {
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper);
}

.nav-search-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10005;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-box {
    width: 100%;
    max-width: 700px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.5s var(--ease);
}

.search-modal.active .search-modal-box {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--dur) var(--ease);
}

.search-close:hover {
    color: var(--charcoal);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 1.1rem;
    border: 2px solid var(--light-border);
    border-radius: var(--radius);
    outline: none;
    transition: all var(--dur) var(--ease);
}

.search-input-wrapper input:focus {
    border-color: var(--copper);
    box-shadow: 0 0 15px rgba(184, 115, 51, 0.15);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
}

.search-results {
    max-height: 50vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--off-white);
    text-decoration: none;
    transition: all var(--dur) var(--ease);
}

.search-result-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.search-result-info {
    flex: 1;
}

.search-result-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--charcoal);
}

.search-result-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.search-result-item svg {
    width: 20px;
    height: 20px;
    color: var(--copper);
    opacity: 0;
    transition: opacity var(--dur);
}

.search-result-item:hover svg {
    opacity: 1;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--light-border);
    border-radius: 10px;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-search-wrapper {
        margin-left: 0;
        margin-right: 15px;
    }

    .search-modal-box {
        padding: 30px 20px;
        width: 90%;
    }
}

/* ---------- QUOTE CART ---------- */
.floating-cart {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transition: all var(--dur) var(--ease);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.floating-cart.has-items {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.floating-cart:hover {
    background: var(--copper);
    transform: scale(1.1);
}

.floating-cart svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--copper);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 10006;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--charcoal);
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--off-white);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.cart-item-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
}

.cart-item-remove:hover {
    color: var(--accent-red, #ff4444);
}

.cart-empty {
    text-align: center;
    padding: 50px 0;
    color: var(--text-muted);
    font-style: italic;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--light-border);
    background: var(--off-white);
}

.cart-total {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.btn-whatsapp-quote {
    width: 100%;
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}


.btn-whatsapp-quote:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-quote svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}

/* ---------- RELATED PRODUCTS CAROUSEL ---------- */
.related-products {
    padding: 80px 0;
    background: var(--off-white);
    overflow: hidden;
}

.related-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.related-carousel-wrapper {
    position: relative;
    margin: 0 -15px;
}

.related-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 20px);
    gap: 20px;
    overflow-x: auto;
    padding: 20px 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.related-carousel::-webkit-scrollbar {
    display: none;
}

.related-carousel .ecommerce-card {
    scroll-snap-align: start;
    min-width: 0;
}

@media (max-width: 1024px) {
    .related-carousel {
        grid-auto-columns: calc(33.333% - 15px);
    }
}

@media (max-width: 768px) {
    .related-carousel {
        grid-auto-columns: calc(50% - 10px);
    }

    .related-products {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .related-carousel {
        grid-auto-columns: 85%;
    }
}

/* ---------- ENHANCED UI & ANIMATIONS ---------- */

/* GSAP Start States */
.reveal {
    opacity: 0;
    visibility: hidden;
}

/* Brand Grid in Mini Mega Menu */
.brand-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.brand-grid-mini a {
    font-size: 0.85rem !important;
    padding: 6px 10px !important;
    background: rgba(184, 115, 51, 0.05);
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.brand-grid-mini a:hover {
    background: var(--copper) !important;
    color: white !important;
    border-color: var(--copper);
}

@media (max-width: 768px) {
    .brand-grid-mini {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS FIXES
   ========================================================================== */

/* Prevent horizontal overflow on non-slider sections */
section:not(.hero-slider),
header,
footer,
.container {
    max-width: 100%;
}

/* Prevent the top bar from overflowing on small screens */
@media (max-width: 900px) {
    .top-bar .container {
        flex-direction: column;
        gap: 6px;
        padding: 8px 16px;
    }

    .top-bar-left {
        flex-wrap: wrap;
        gap: 6px 16px;
    }

    .top-bar-right {
        gap: 10px;
    }
}

/* Hero slider - fix height and font scaling on mobile */
@media (max-width: 768px) {
    .hero-slider {
        height: 420px;
    }

    .slide-content h2 {
        font-size: 1.5rem !important;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }

    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .slide-btn {
        padding: 11px 24px;
        font-size: 0.8rem;
    }

    /* Stack overlay content vertically, left-aligned */
    .slide-overlay {
        align-items: flex-end;
        padding: 0 16px 40px;
        text-align: left;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-content p,
    .slide-content .slide-btn {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 1.2rem !important;
    }

    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }
}

/* ==========================================================================
   UX ENHANCEMENTS
   ========================================================================== */

/* --- Empty Cart State --- */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-light);
}

.cart-empty p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.cart-browse-link {
    display: inline-block;
    padding: 10px 24px;
    background: var(--copper);
    color: var(--white) !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--dur) var(--ease);
}

.cart-browse-link:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(184, 115, 51, 0.3);
}

/* --- Search View All Button --- */
.search-view-all {
    display: block;
    margin: 12px 16px 4px;
    padding: 12px;
    background: var(--copper-light);
    color: var(--copper) !important;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(184, 115, 51, 0.25);
    transition: all var(--dur) var(--ease);
}

.search-view-all:hover {
    background: var(--copper);
    color: var(--white) !important;
    border-color: var(--copper);
}

/* --- Standardize Secondary Page Banner Heights --- */
.page-banner {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.65) 0%, rgba(184, 115, 51, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}