/* ================================================================
   GRINOW — Premium E-Commerce Design System
   Stripe meets Apple Store meets High-End Fashion
   Dark-to-Light Transparency Header · Oversized Typography
   Bento Grids · Micro-Animations · Glass Effects
   ================================================================ */

/* ----------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
    --gn-primary: #F62525;
    --gn-primary-hover: #c91414;
    --gn-primary-light: #ff8a80;
    --gn-primary-dark: #a01010;
    --gn-primary-rgb: 246, 37, 37;

    --gn-dark: #151820;
    --gn-dark-rgb: 21, 24, 32;
    --gn-dark-surface: #1c2230;
    --gn-dark-border: #2a2a2a;

    --gn-white: #ffffff;
    --gn-gray-50: #fafafa;
    --gn-gray-100: #f5f5f5;
    --gn-gray-200: #e5e5e5;
    --gn-gray-300: #d4d4d4;
    --gn-gray-400: #a3a3a3;
    --gn-gray-500: #737373;
    --gn-gray-600: #525252;
    --gn-gray-700: #404040;
    --gn-gray-800: #262626;
    --gn-gray-900: #171717;

    --gn-success: #22c55e;
    --gn-success-rgb: 34, 197, 94;
    --gn-warning: #eab308;
    --gn-danger: #ef4444;
    --gn-danger-rgb: 239, 68, 68;
    --gn-info: #3b82f6;

    --gn-font: 'Plus Jakarta Sans', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --gn-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --gn-transition-fast: .15s ease;
    --gn-transition-slow: .5s cubic-bezier(.4, 0, .2, 1);
    --gn-radius: 12px;
    --gn-radius-lg: 20px;
    --gn-radius-xl: 28px;
    --gn-radius-full: 9999px;

    --gn-shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
    --gn-shadow: 0 4px 12px rgba(0, 0, 0, .06);
    --gn-shadow-md: 0 8px 24px rgba(0, 0, 0, .08);
    --gn-shadow-lg: 0 16px 48px rgba(0, 0, 0, .1);
    --gn-shadow-xl: 0 24px 64px rgba(0, 0, 0, .14);
    --gn-shadow-glow: 0 8px 32px rgba(246, 37, 37, .2);

    --gn-z-header: 1000;
    --gn-z-dropdown: 1010;
    --gn-z-minicart: 1015;
    --gn-z-overlay: 1020;
    --gn-z-modal: 1030;
}

/* ----------------------------------------------------------
   1b. TABLEACI — Brand tokens (template design system)
   ---------------------------------------------------------- */
:root {
    --brand: #F62525;
    --brand-dark: #c91414;
    --brand-deep: #a01010;
    --ink: #434A5B;
    --ink-soft: #5b6373;
    --ink-light: #8b93a6;
    --dark: #151820;
    --dark-2: #1c2230;
    --dark-3: #232b3a;
    --light: #F7F8FA;
    --white: #FFFFFF;
    --line: #e6e9ef;
    --radius: 14px;
    --shadow-sm: 0 6px 18px rgba(21, 24, 32, 0.06);
    --shadow-lg: 0 24px 60px rgba(21, 24, 32, 0.16);
    --font-display: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
    --font-body: "Manrope", "Plus Jakarta Sans", system-ui, sans-serif;
    --nav-h: 84px;
}

/* ----------------------------------------------------------
   2. BASE & RESET
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--gn-font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gn-gray-800);
    background-color: var(--gn-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
}

::selection {
    background-color: var(--gn-primary);
    color: var(--gn-white);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gn-gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gn-gray-400); }

img { max-width: 100%; height: auto; vertical-align: middle; display: block; }

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--gn-transition-fast);
}

ul, ol { list-style: none; padding: 0; margin: 0; }

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    color: var(--gn-gray-900);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.375rem; font-weight: 700; }
h5 { font-size: 1.125rem; font-weight: 700; }
h6 { font-size: 1rem; font-weight: 700; }

p { margin-bottom: 1rem; color: var(--gn-gray-600); line-height: 1.7; }

.gn-display {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--gn-gray-900);
}

/* ----------------------------------------------------------
   4. BUTTONS (.gn-btn)
   ---------------------------------------------------------- */
.gn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--gn-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--gn-radius);
    cursor: pointer;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gn-btn--primary {
    background: var(--gn-primary);
    color: var(--gn-white);
    border-color: var(--gn-primary);
}
.gn-btn--primary:hover {
    background: var(--gn-primary-hover);
    border-color: var(--gn-primary-hover);
    color: var(--gn-white);
    transform: translateY(-2px);
    box-shadow: var(--gn-shadow-glow);
}

.gn-btn--dark {
    background: var(--gn-gray-900);
    color: var(--gn-white);
    border-color: var(--gn-gray-900);
}
.gn-btn--dark:hover {
    background: #000;
    border-color: #000;
    color: var(--gn-white);
    transform: translateY(-2px);
}

.gn-btn--outline {
    background: transparent;
    border: 2px solid var(--gn-gray-200);
    color: var(--gn-gray-800);
}
.gn-btn--outline:hover {
    border-color: var(--gn-primary);
    color: var(--gn-primary);
}

.gn-btn--ghost {
    background: transparent;
    border-color: transparent;
    color: var(--gn-gray-600);
}
.gn-btn--ghost:hover { color: var(--gn-primary); }

.gn-btn--white {
    background: var(--gn-white);
    color: var(--gn-dark);
    border-color: var(--gn-white);
}
.gn-btn--white:hover {
    background: var(--gn-gray-100);
    transform: translateY(-2px);
}

.gn-btn--lg { font-size: 16px; padding: 18px 36px; }
.gn-btn--sm { font-size: 13px; padding: 10px 20px; }
.gn-btn--pill { border-radius: var(--gn-radius-full); }
.gn-btn--icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--gn-radius);
}

/* ----------------------------------------------------------
   5. TOPBAR
   ---------------------------------------------------------- */
.gn-topbar {
    background: var(--gn-dark);
    height: 40px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.gn-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.gn-topbar__left,
.gn-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gn-topbar__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.gn-topbar a {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    transition: color var(--gn-transition-fast);
}
.gn-topbar a:hover { color: var(--gn-white); }

.gn-topbar__socials {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gn-topbar__lang {
    position: relative;
    cursor: pointer;
    color: rgba(255, 255, 255, .5);
}
.gn-topbar__lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--gn-white);
    border-radius: 10px;
    padding: 6px;
    min-width: 120px;
    box-shadow: var(--gn-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all var(--gn-transition-fast);
}
.gn-topbar__lang:hover .gn-topbar__lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gn-topbar__lang-dropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--gn-gray-700);
    font-size: 13px;
}
.gn-topbar__lang-dropdown a:hover { background: var(--gn-gray-50); }

/* ----------------------------------------------------------
   6. HEADER — THE SIGNATURE PIECE
   ---------------------------------------------------------- */
.gn-header {
    position: sticky;
    top: 0;
    z-index: var(--gn-z-header);
    transition: background .35s ease, box-shadow .35s ease;
    background: var(--gn-white);
    border-bottom: 1px solid var(--gn-gray-100);
}

.gn-header.scrolled {
    background: rgba(255, 255, 255, .98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border-bottom-color: transparent;
}

/* Reserved: .gn-header--transparent modifier (unused for now) */

.gn-header__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gn-header__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--gn-gray-900);
    text-decoration: none;
}
.gn-header__logo:hover { color: var(--gn-primary); }
.gn-header__logo img { height: 36px; }

/* Nav */
.gn-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.gn-nav__item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.gn-nav__link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all .2s;
    color: var(--gn-gray-600);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}
.gn-nav__link:hover {
    color: var(--gn-gray-900);
    background: var(--gn-gray-50);
}
.gn-nav__link.active { color: var(--gn-primary); }

/* Dropdown */
.gn-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--gn-white);
    border-radius: 16px;
    box-shadow: var(--gn-shadow-xl);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}
.gn-nav__item:hover .gn-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}
.gn-nav__dropdown-inner { position: relative; }

.gn-nav__dropdown-item,
.gn-nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--gn-gray-700);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--gn-transition-fast);
}
.gn-nav__dropdown-item:hover,
.gn-nav__dropdown-link:hover {
    background: var(--gn-gray-50);
    color: var(--gn-primary);
    padding-left: 18px;
}
.gn-nav__dropdown-item i,
.gn-nav__dropdown-link i { font-size: 16px; color: var(--gn-gray-400); transition: color .15s; }
.gn-nav__dropdown-link:hover i { color: var(--gn-primary); }

/* Level 2: parent item with sub-arrow */
.gn-nav__dropdown-parent { position: relative; }
.gn-nav__dropdown-link--parent { justify-content: space-between; }
.gn-nav__sub-arrow { font-size: 11px; margin-left: auto; color: var(--gn-gray-400); transition: transform .2s; }
.gn-nav__dropdown-parent:hover .gn-nav__sub-arrow { transform: translateX(3px); color: var(--gn-primary); }

/* Level 2: sub-dropdown */
.gn-nav__subdropdown {
    position: absolute;
    left: calc(100% + 4px);
    top: -6px;
    min-width: 210px;
    background: var(--gn-white);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    border: 1px solid var(--gn-gray-100);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all .2s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    z-index: 10;
}
.gn-nav__dropdown-parent:hover > .gn-nav__subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

/* Mega menu */
.gn-nav__mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--gn-white);
    border-radius: 20px;
    box-shadow: var(--gn-shadow-xl);
    padding: 28px;
    min-width: 680px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gn-nav__item:hover .gn-nav__mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.gn-nav__mega-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gn-gray-400);
    margin-bottom: 12px;
}

/* Header actions */
.gn-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gn-header__action {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all var(--gn-transition-fast);
    color: var(--gn-gray-600);
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
}
.gn-header__action:hover {
    color: var(--gn-gray-900);
    background: var(--gn-gray-50);
}

.gn-header__badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gn-primary);
    color: var(--gn-white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hamburger */
.gn-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}
.gn-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gn-white);
    border-radius: 2px;
    transition: all .3s;
}
.scrolled .gn-hamburger span { background: var(--gn-gray-900); }

/* ----------------------------------------------------------
   7. SEARCH OVERLAY
   ---------------------------------------------------------- */
.gn-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: var(--gn-z-overlay);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.gn-search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.gn-search-overlay__card {
    background: var(--gn-white);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 640px;
    box-shadow: var(--gn-shadow-xl);
    transform: scale(.95);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}
.gn-search-overlay.open .gn-search-overlay__card { transform: scale(1); }

.gn-search-overlay__input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-family: var(--gn-font);
    font-weight: 500;
    color: var(--gn-gray-900);
    padding: 8px 0;
    background: transparent;
}
.gn-search-overlay__input::placeholder { color: var(--gn-gray-400); }

.gn-search-overlay__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    background: var(--gn-gray-50);
    color: var(--gn-gray-500);
    cursor: pointer;
    transition: all var(--gn-transition-fast);
}
.gn-search-overlay__close:hover { background: var(--gn-gray-100); color: var(--gn-gray-900); }

.gn-search-overlay__results {
    margin-top: 20px;
    border-top: 1px solid var(--gn-gray-100);
    padding-top: 16px;
}
.gn-search-overlay__result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 12px;
    transition: background var(--gn-transition-fast);
    cursor: pointer;
}
.gn-search-overlay__result-item:hover { background: var(--gn-gray-50); }
.gn-search-overlay__result-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--gn-gray-100);
}

/* ----------------------------------------------------------
   8. HERO — THE DIFFERENTIATOR
   ---------------------------------------------------------- */
.gn-hero {
    position: relative;
    overflow: hidden;
    background: var(--gn-dark);
    padding-top: 112px;
}

.gn-hero .carousel,
.gn-hero .carousel-inner,
.gn-hero .carousel-item { height: 100%; }

.gn-hero__slide {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gn-hero__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(var(--gn-dark-rgb), .85) 0%,
        rgba(var(--gn-dark-rgb), .4) 50%,
        transparent 100%
    );
    z-index: 1;
}

.gn-hero__content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 0 24px;
}

.gn-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gn-primary);
    margin-bottom: 16px;
}
.gn-hero__tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gn-primary);
}

.gn-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--gn-white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gn-hero__desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 32px;
}

.gn-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero indicators — VERTICAL (unique) */
.gn-hero__indicators {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gn-hero__indicator {
    width: 3px;
    height: 32px;
    background: rgba(255, 255, 255, .25);
    border-radius: 2px;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .3s;
}
.gn-hero__indicator.active,
.gn-hero__indicators .active {
    background: var(--gn-white);
}
/* Bootstrap carousel indicator overrides for vertical */
.gn-hero .carousel-indicators {
    position: absolute;
    bottom: 40px;
    right: 40px;
    left: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}
.gn-hero .carousel-indicators [data-bs-target],
.gn-hero .carousel-indicators button {
    width: 3px;
    height: 32px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, .25);
    opacity: 1;
    text-indent: -9999px;
    transition: background .3s;
    padding: 0;
    margin: 0;
}
.gn-hero .carousel-indicators .active {
    background: var(--gn-white);
}

/* Hero controls */
.gn-hero__controls {
    position: absolute;
    bottom: 40px;
    left: 24px;
    z-index: 3;
    display: flex;
    gap: 8px;
}
.gn-hero__control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: var(--gn-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    font-size: 16px;
}
.gn-hero__control:hover { background: rgba(255, 255, 255, .1); }
/* Bootstrap carousel control overrides */
.gn-hero .carousel-control-prev,
.gn-hero .carousel-control-next {
    position: absolute;
    bottom: 40px;
    top: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    opacity: 1;
    z-index: 3;
}
.gn-hero .carousel-control-prev { left: 24px; }
.gn-hero .carousel-control-next { left: 80px; right: auto; }
.gn-hero .carousel-control-prev:hover,
.gn-hero .carousel-control-next:hover { background: rgba(255, 255, 255, .1); }

/* ----------------------------------------------------------
   9. SECTIONS
   ---------------------------------------------------------- */
.gn-section { padding: 100px 0; }
.gn-section--alt { background: var(--gn-gray-50); }
.gn-section--dark { background: var(--gn-gray-900); color: var(--gn-white); }

.gn-section-header {
    margin-bottom: 60px;
    position: relative;
}
.gn-section-header--center { text-align: center; }
.gn-section-header--center .gn-section-header__subtitle { margin-left: auto; margin-right: auto; }

.gn-section-header__tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gn-primary);
    margin-bottom: 12px;
    position: relative;
    padding-top: 14px;
}
.gn-section-header__tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gn-primary);
}
.gn-section-header--center .gn-section-header__tag::before {
    left: 50%;
    transform: translateX(-50%);
}

.gn-section-header__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gn-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 0;
}
.gn-section--dark .gn-section-header__title { color: var(--gn-white); }

.gn-section-header__subtitle {
    color: var(--gn-gray-500);
    font-size: 1rem;
    margin-top: 8px;
    max-width: 500px;
}
.gn-section--dark .gn-section-header__subtitle { color: var(--gn-gray-400); }

.gn-section-header__action {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ----------------------------------------------------------
   10. PRODUCT CARDS
   ---------------------------------------------------------- */
.gn-product {
    background: var(--gn-white);
    border-radius: var(--gn-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gn-gray-100);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s cubic-bezier(.4, 0, .2, 1), border-color .3s;
    position: relative;
}
.gn-product:hover {
    transform: translateY(-6px);
    box-shadow: var(--gn-shadow-lg);
    border-color: transparent;
}

.gn-product__media {
    aspect-ratio: 4/5;
    background: var(--gn-gray-50);
    overflow: hidden;
    position: relative;
}
.gn-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.gn-product:hover .gn-product__media img { transform: scale(1.06); }

.gn-product__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.gn-product__badge {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    line-height: 1.2;
}
.gn-product__badge--sale { background: var(--gn-primary); color: var(--gn-white); }
.gn-product__badge--new { background: var(--gn-gray-900); color: var(--gn-white); }
.gn-product__badge--featured { background: var(--gn-white); color: var(--gn-gray-900); border: 1px solid var(--gn-gray-200); }

.gn-product__quick-actions {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 2;
}
.gn-product:hover .gn-product__quick-actions {
    opacity: 1;
    transform: translateY(0);
}
.gn-product__quick-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gn-white);
    box-shadow: var(--gn-shadow-md);
    color: var(--gn-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--gn-transition-fast);
    font-size: 15px;
}
.gn-product__quick-btn:hover { color: var(--gn-primary); transform: scale(1.1); }

.gn-product__body { padding: 18px 20px 20px; }

.gn-product__brand {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gn-gray-400);
    margin-bottom: 4px;
    font-weight: 600;
}

.gn-product__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gn-gray-800);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}
.gn-product__title a:hover { color: var(--gn-primary); }

.gn-product__price {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.gn-product__price-current {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gn-gray-900);
}
.gn-product__price-old {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--gn-gray-400);
}
.gn-product__price-discount {
    font-size: 11px;
    background: rgba(var(--gn-primary-rgb), .1);
    color: var(--gn-primary);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.gn-product__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gn-gray-400);
}
.gn-product__rating i { color: var(--gn-warning); font-size: 11px; }

.gn-product__add-cart {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: var(--gn-primary);
    color: var(--gn-white);
    font-weight: 600;
    font-size: 13px;
    font-family: var(--gn-font);
    border: none;
    border-radius: 0 0 var(--gn-radius-lg) var(--gn-radius-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.gn-product:hover .gn-product__add-cart { transform: translateY(0); }
.gn-product__add-cart:hover { background: var(--gn-primary-hover); }

/* ----------------------------------------------------------
   11. CATEGORY CARDS
   ---------------------------------------------------------- */
.gn-category {
    border-radius: var(--gn-radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 200px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
}
.gn-category--featured { min-height: 420px; }

.gn-category__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.gn-category:hover .gn-category__bg { transform: scale(1.06); }

.gn-category__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--gn-dark-rgb), .7) 0%, rgba(var(--gn-dark-rgb), .1) 60%);
    transition: background .3s;
    z-index: 1;
}
.gn-category:hover .gn-category__overlay {
    background: linear-gradient(to top, rgba(var(--gn-dark-rgb), .6) 0%, rgba(var(--gn-dark-rgb), 0) 60%);
}

.gn-category__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}
.gn-category__name {
    color: var(--gn-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.gn-category__count {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

/* Icon variant (no image) */
.gn-category--icon {
    background: var(--gn-gray-50);
    border: 1px solid var(--gn-gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 20px;
    min-height: 160px;
}
.gn-category--icon:hover { border-color: var(--gn-primary); background: var(--gn-white); box-shadow: var(--gn-shadow-md); }
.gn-category--icon .gn-category__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(var(--gn-primary-rgb), .1);
    color: var(--gn-primary);
    font-size: 22px;
    margin-bottom: 14px;
}
.gn-category--icon .gn-category__name { color: var(--gn-gray-900); font-size: 14px; }
.gn-category--icon .gn-category__count { color: var(--gn-gray-500); font-size: 12px; }

/* ----------------------------------------------------------
   12. BLOG CARDS
   ---------------------------------------------------------- */
.gn-blog-card {
    background: var(--gn-white);
    border-radius: var(--gn-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gn-gray-100);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}
.gn-blog-card:hover {
    box-shadow: var(--gn-shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.gn-blog-card__media {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.gn-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.gn-blog-card:hover .gn-blog-card__media img { transform: scale(1.05); }

.gn-blog-card__tag {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background: var(--gn-white);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: var(--gn-shadow-sm);
    color: var(--gn-gray-700);
}

.gn-blog-card__body { padding: 24px; }

.gn-blog-card__meta {
    font-size: 12px;
    color: var(--gn-gray-400);
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}
.gn-blog-card__meta span { display: flex; align-items: center; gap: 5px; }

.gn-blog-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gn-gray-900);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}
.gn-blog-card__title a:hover { color: var(--gn-primary); }

.gn-blog-card__excerpt {
    font-size: 14px;
    color: var(--gn-gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 6px;
    line-height: 1.6;
}

.gn-blog-card__readmore {
    font-size: 13px;
    font-weight: 600;
    color: var(--gn-primary);
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.gn-blog-card__readmore i { transition: transform .2s; font-size: 11px; }
.gn-blog-card__readmore:hover { color: var(--gn-primary-hover); }
.gn-blog-card__readmore:hover i { transform: translateX(4px); }

/* ----------------------------------------------------------
   13. SIDEBAR
   ---------------------------------------------------------- */
.gn-sidebar {
    position: sticky;
    top: 100px;
}

.gn-widget {
    background: var(--gn-white);
    border-radius: 16px;
    border: 1px solid var(--gn-gray-100);
    padding: 24px;
    margin-bottom: 20px;
}

.gn-widget__title {
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 14px;
    margin-bottom: 18px;
    position: relative;
    border-bottom: 2px solid var(--gn-gray-100);
    color: var(--gn-gray-900);
}
.gn-widget__title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gn-primary);
}

.gn-widget__category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gn-gray-50);
    font-size: 14px;
    color: var(--gn-gray-700);
    transition: color var(--gn-transition-fast);
}
.gn-widget__category-item:last-child { border-bottom: none; }
.gn-widget__category-item:hover { color: var(--gn-primary); }
.gn-widget__category-count {
    font-size: 12px;
    color: var(--gn-gray-400);
    background: var(--gn-gray-50);
    padding: 2px 8px;
    border-radius: 6px;
}

.gn-widget__price-range { display: flex; gap: 10px; align-items: center; }
.gn-widget__price-input {
    flex: 1;
    height: 40px;
    border: 1px solid var(--gn-gray-200);
    border-radius: 10px;
    padding: 0 12px;
    font-size: 13px;
    font-family: var(--gn-font);
    color: var(--gn-gray-800);
    outline: none;
    transition: border-color var(--gn-transition-fast);
}
.gn-widget__price-input:focus { border-color: var(--gn-primary); }

.gn-widget__brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--gn-gray-700);
    cursor: pointer;
}
.gn-widget__brand-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 2px solid var(--gn-gray-300);
    border-radius: 4px;
    accent-color: var(--gn-primary);
}

.gn-widget__search-input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--gn-gray-200);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 13px;
    font-family: var(--gn-font);
    outline: none;
    transition: border-color var(--gn-transition-fast);
}
.gn-widget__search-input:focus { border-color: var(--gn-primary); }

.gn-widget__recent-post {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gn-gray-50);
}
.gn-widget__recent-post:last-child { border-bottom: none; }
.gn-widget__recent-post-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gn-gray-100);
}
.gn-widget__recent-post-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gn-gray-800);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gn-widget__recent-post-date { font-size: 11px; color: var(--gn-gray-400); margin-top: 4px; }

/* ----------------------------------------------------------
   14. PRODUCT DETAIL
   ---------------------------------------------------------- */
.gn-product-detail__gallery { position: sticky; top: 100px; }

.gn-product-detail__main-image {
    border-radius: var(--gn-radius-lg);
    background: var(--gn-gray-50);
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 12px;
}
.gn-product-detail__main-image img { width: 100%; height: 100%; object-fit: cover; }

.gn-product-detail__thumbs { display: flex; gap: 8px; }
.gn-product-detail__thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--gn-transition-fast);
    background: var(--gn-gray-50);
}
.gn-product-detail__thumb.active,
.gn-product-detail__thumb:hover { border-color: var(--gn-primary); }
.gn-product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; }

.gn-product-detail__brand {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gn-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.gn-product-detail__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gn-gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.gn-product-detail__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gn-gray-900);
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}
.gn-product-detail__price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--gn-gray-400);
    font-weight: 500;
}

.gn-product-detail__variants { margin-bottom: 24px; }
.gn-product-detail__variant-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gn-gray-800);
    margin-bottom: 10px;
}
.gn-product-detail__variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.gn-product-detail__variant-btn {
    padding: 8px 18px;
    border: 2px solid var(--gn-gray-200);
    border-radius: var(--gn-radius-full);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--gn-gray-700);
    cursor: pointer;
    transition: all var(--gn-transition-fast);
    font-family: var(--gn-font);
}
.gn-product-detail__variant-btn:hover { border-color: var(--gn-gray-400); }
.gn-product-detail__variant-btn.active {
    border-color: var(--gn-primary);
    color: var(--gn-primary);
    background: rgba(var(--gn-primary-rgb), .05);
}

.gn-product-detail__quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gn-gray-200);
    border-radius: var(--gn-radius);
    overflow: hidden;
    margin-bottom: 24px;
}
.gn-product-detail__qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--gn-gray-600);
    font-size: 16px;
    transition: background var(--gn-transition-fast);
}
.gn-product-detail__qty-btn:hover { background: var(--gn-gray-50); }
.gn-product-detail__qty-value {
    width: 48px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--gn-gray-900);
    border: none;
    outline: none;
    font-family: var(--gn-font);
}

.gn-product-detail__add-cart {
    height: 52px;
    background: linear-gradient(135deg, var(--gn-primary) 0%, var(--gn-primary-hover) 100%);
    color: var(--gn-white);
    font-weight: 700;
    font-size: 15px;
    font-family: var(--gn-font);
    border: none;
    border-radius: var(--gn-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 32px;
    transition: all .3s;
    width: 100%;
}
.gn-product-detail__add-cart:hover {
    box-shadow: var(--gn-shadow-glow);
    transform: translateY(-2px);
}

.gn-product-detail__tabs { margin-top: 48px; }
.gn-product-detail__tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gn-gray-100);
    margin-bottom: 24px;
}
.gn-product-detail__tab-link {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gn-gray-500);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--gn-transition-fast);
    cursor: pointer;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--gn-font);
}
.gn-product-detail__tab-link:hover { color: var(--gn-gray-900); }
.gn-product-detail__tab-link.active {
    color: var(--gn-primary);
    border-bottom-color: var(--gn-primary);
}

/* ----------------------------------------------------------
   15. BLOG DETAIL
   ---------------------------------------------------------- */
.gn-blog-detail__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gn-gray-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.gn-blog-detail__featured {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
}
.gn-blog-detail__featured img { width: 100%; height: auto; }

.gn-blog-detail__content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gn-gray-700);
}
.gn-blog-detail__content p { margin-bottom: 1.5rem; }
.gn-blog-detail__content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.gn-blog-detail__content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.gn-blog-detail__content blockquote {
    border-left: 3px solid var(--gn-primary);
    padding: 16px 24px;
    margin: 2rem 0;
    background: var(--gn-gray-50);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--gn-gray-600);
}
.gn-blog-detail__content img { border-radius: 16px; margin: 2rem 0; }

.gn-blog-detail__share {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}
.gn-blog-detail__share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gn-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gn-gray-500);
    background: transparent;
    cursor: pointer;
    transition: all var(--gn-transition-fast);
    font-size: 14px;
}
.gn-blog-detail__share-btn:hover { border-color: var(--gn-primary); color: var(--gn-primary); }

.gn-blog-detail__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.gn-blog-detail__tag {
    padding: 5px 14px;
    border-radius: var(--gn-radius-full);
    border: 1px solid var(--gn-gray-200);
    font-size: 12px;
    font-weight: 600;
    color: var(--gn-gray-600);
    transition: all var(--gn-transition-fast);
}
.gn-blog-detail__tag:hover { border-color: var(--gn-primary); color: var(--gn-primary); }

/* ----------------------------------------------------------
   16. CONTACT
   ---------------------------------------------------------- */
.gn-contact-card {
    border-radius: 16px;
    border: 1px solid var(--gn-gray-100);
    padding: 28px;
    text-align: center;
    transition: all .3s;
}
.gn-contact-card:hover { box-shadow: var(--gn-shadow-md); border-color: transparent; }

.gn-contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(var(--gn-primary-rgb), .1);
    color: var(--gn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
}

.gn-contact-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gn-gray-900);
    margin-bottom: 6px;
}
.gn-contact-card__text { font-size: 14px; color: var(--gn-gray-500); margin-bottom: 0; }

.gn-contact-form {
    background: var(--gn-white);
    border-radius: var(--gn-radius-lg);
    box-shadow: var(--gn-shadow-md);
    padding: 36px;
}
.gn-contact-form .form-control,
.gn-contact-form .gn-input {
    border-radius: 10px;
    height: 44px;
    border: 1px solid var(--gn-gray-200);
    padding: 0 16px;
    font-size: 14px;
    font-family: var(--gn-font);
    transition: border-color var(--gn-transition-fast);
    outline: none;
    width: 100%;
}
.gn-contact-form .form-control:focus,
.gn-contact-form .gn-input:focus { border-color: var(--gn-primary); }
.gn-contact-form textarea.form-control,
.gn-contact-form textarea.gn-input { height: auto; padding: 14px 16px; resize: vertical; }
.gn-contact-form__submit {
    width: 100%;
    height: 48px;
    background: var(--gn-primary);
    color: var(--gn-white);
    border: none;
    border-radius: var(--gn-radius);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--gn-font);
    cursor: pointer;
    transition: all .3s;
}
.gn-contact-form__submit:hover {
    background: var(--gn-primary-hover);
    box-shadow: var(--gn-shadow-glow);
}

/* ----------------------------------------------------------
   17. BREADCRUMB
   ---------------------------------------------------------- */
.gn-breadcrumb {
    background: var(--gn-gray-50);
    padding: 12px 0;
    font-size: 13px;
}
.gn-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.gn-breadcrumb__item { color: var(--gn-gray-500); }
.gn-breadcrumb__item a { color: var(--gn-gray-500); }
.gn-breadcrumb__item a:hover { color: var(--gn-primary); }
.gn-breadcrumb__item + .gn-breadcrumb__item::before {
    content: '/';
    margin: 0 10px;
    color: var(--gn-gray-300);
}
.gn-breadcrumb__item:last-child { color: var(--gn-gray-800); font-weight: 600; }

/* ----------------------------------------------------------
   18. PAGINATION
   ---------------------------------------------------------- */
.gn-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
}
.gn-pagination__link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gn-gray-600);
    transition: all var(--gn-transition-fast);
    border: 1px solid transparent;
}
.gn-pagination__link:hover {
    background: var(--gn-gray-50);
    color: var(--gn-gray-900);
}
.gn-pagination__link.active {
    background: var(--gn-primary);
    color: var(--gn-white);
    box-shadow: var(--gn-shadow-glow);
}
.gn-pagination__link.disabled { opacity: .4; pointer-events: none; }

/* ----------------------------------------------------------
   19. FOOTER
   ---------------------------------------------------------- */
.gn-footer {
    background: var(--gn-dark);
    padding: 80px 0 0;
    color: var(--gn-gray-400);
}

.gn-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.gn-footer__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gn-white);
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    display: inline-block;
}
.gn-footer__logo img { height: 36px; }
.gn-footer__desc {
    color: var(--gn-gray-400);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.gn-footer__socials {
    display: flex;
    gap: 8px;
}
.gn-footer__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gn-dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    font-size: 15px;
    transition: all .3s;
}
.gn-footer__social:hover {
    color: var(--gn-primary);
    border-color: var(--gn-primary);
    background: rgba(var(--gn-primary-rgb), .1);
}

.gn-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--gn-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.gn-footer__link {
    display: block;
    padding: 7px 0;
    color: var(--gn-gray-400);
    font-size: 14px;
    transition: all .2s;
    position: relative;
    padding-left: 0;
}
.gn-footer__link:hover {
    color: var(--gn-white);
    padding-left: 4px;
}

/* Footer newsletter */
.gn-footer__newsletter {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 24px;
}
.gn-footer__newsletter-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gn-white);
    margin-bottom: 8px;
}
.gn-footer__newsletter-desc {
    font-size: 13px;
    color: var(--gn-gray-400);
    margin-bottom: 16px;
    line-height: 1.6;
}
.gn-footer__newsletter-form { display: flex; gap: 8px; }
.gn-footer__newsletter-input {
    flex: 1;
    height: 42px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 0 14px;
    color: var(--gn-white);
    font-size: 13px;
    font-family: var(--gn-font);
    outline: none;
    transition: border-color .3s;
}
.gn-footer__newsletter-input::placeholder { color: var(--gn-gray-500); }
.gn-footer__newsletter-input:focus { border-color: var(--gn-primary); }
.gn-footer__newsletter-btn {
    height: 42px;
    padding: 0 20px;
    background: var(--gn-primary);
    color: var(--gn-white);
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--gn-font);
    cursor: pointer;
    transition: background .3s;
    white-space: nowrap;
}
.gn-footer__newsletter-btn:hover { background: var(--gn-primary-hover); }

/* Footer bottom */
.gn-footer__bottom {
    border-top: 1px solid var(--gn-dark-border);
    padding: 24px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}
.gn-footer__copyright { color: var(--gn-gray-500); }
.gn-footer__payments { display: flex; gap: 8px; align-items: center; }
.gn-footer__payments img { height: 24px; opacity: .5; transition: opacity .3s; }
.gn-footer__payments img:hover { opacity: 1; }

/* ----------------------------------------------------------
   20. AUTH (Login / Register)
   ---------------------------------------------------------- */
.gn-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gn-gray-50);
    padding: 40px 20px;
}

.gn-auth__card {
    width: 100%;
    max-width: 440px;
    background: var(--gn-white);
    border-radius: var(--gn-radius-lg);
    box-shadow: var(--gn-shadow-lg);
    padding: 40px;
}

.gn-auth__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gn-gray-900);
    text-align: center;
    margin-bottom: 8px;
}
.gn-auth__subtitle {
    text-align: center;
    color: var(--gn-gray-500);
    font-size: 14px;
    margin-bottom: 32px;
}

.gn-auth__input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--gn-gray-200);
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    font-family: var(--gn-font);
    color: var(--gn-gray-800);
    outline: none;
    transition: border-color var(--gn-transition-fast);
    margin-bottom: 16px;
}
.gn-auth__input:focus { border-color: var(--gn-primary); }

.gn-auth__submit {
    width: 100%;
    height: 48px;
    background: var(--gn-primary);
    color: var(--gn-white);
    border: none;
    border-radius: var(--gn-radius);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--gn-font);
    cursor: pointer;
    transition: all .3s;
    margin-top: 8px;
}
.gn-auth__submit:hover {
    background: var(--gn-primary-hover);
    box-shadow: var(--gn-shadow-glow);
}

.gn-auth__divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
    color: var(--gn-gray-400);
    font-size: 13px;
}
.gn-auth__divider::before,
.gn-auth__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 24px);
    height: 1px;
    background: var(--gn-gray-200);
}
.gn-auth__divider::before { left: 0; }
.gn-auth__divider::after { right: 0; }

.gn-auth__social-btn {
    width: 100%;
    height: 46px;
    border: 1px solid var(--gn-gray-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gn-gray-700);
    background: var(--gn-white);
    cursor: pointer;
    transition: all var(--gn-transition-fast);
    font-family: var(--gn-font);
    margin-bottom: 10px;
}
.gn-auth__social-btn:hover { background: var(--gn-gray-50); border-color: var(--gn-gray-300); }

/* ----------------------------------------------------------
   21. CART
   ---------------------------------------------------------- */
.gn-cart-table { width: 100%; border-collapse: collapse; }
.gn-cart-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gn-gray-400);
    padding: 14px 16px;
    border-bottom: 2px solid var(--gn-gray-100);
}
.gn-cart-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--gn-gray-50);
    vertical-align: middle;
}

.gn-cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}
.gn-cart-product__img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--gn-gray-50);
    flex-shrink: 0;
}
.gn-cart-product__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gn-gray-800);
}
.gn-cart-product__variant {
    font-size: 12px;
    color: var(--gn-gray-400);
    margin-top: 2px;
}

.gn-cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gn-gray-200);
    border-radius: 10px;
    overflow: hidden;
}
.gn-cart-qty__btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--gn-gray-600);
    font-size: 14px;
}
.gn-cart-qty__btn:hover { background: var(--gn-gray-50); }
.gn-cart-qty__value {
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border: none;
    outline: none;
    font-family: var(--gn-font);
}

.gn-cart-price { font-size: 15px; font-weight: 700; color: var(--gn-gray-900); }

.gn-cart-remove {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--gn-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gn-gray-400);
    cursor: pointer;
    transition: all var(--gn-transition-fast);
}
.gn-cart-remove:hover { border-color: var(--gn-danger); color: var(--gn-danger); background: rgba(var(--gn-danger-rgb), .05); }

.gn-cart-summary {
    border: 1px solid var(--gn-gray-100);
    border-radius: 16px;
    padding: 24px;
}
.gn-cart-summary__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gn-gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gn-gray-100);
}
.gn-cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}
.gn-cart-summary__row-label { color: var(--gn-gray-500); }
.gn-cart-summary__row-value { font-weight: 600; color: var(--gn-gray-800); }
.gn-cart-summary__total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 2px solid var(--gn-gray-100);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gn-gray-900);
}

/* ----------------------------------------------------------
   22. CHECKOUT
   ---------------------------------------------------------- */
.gn-checkout__option {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid var(--gn-gray-200);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 10px;
}
.gn-checkout__option:hover { border-color: var(--gn-gray-300); }
.gn-checkout__option.active {
    border-color: var(--gn-primary);
    background: rgba(var(--gn-primary-rgb), .03);
}

.gn-checkout__option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gn-gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
}
.gn-checkout__option.active .gn-checkout__option-radio {
    border-color: var(--gn-primary);
    background: var(--gn-primary);
}
.gn-checkout__option.active .gn-checkout__option-radio::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gn-white);
}

.gn-checkout__option-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gn-gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    transition: all .2s;
}
.gn-checkout__option.active .gn-checkout__option-check {
    background: var(--gn-primary);
    border-color: var(--gn-primary);
    color: var(--gn-white);
}

.gn-checkout__option-icon {
    width: 44px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--gn-gray-50);
    flex-shrink: 0;
}
.gn-checkout__option-icon img { max-height: 20px; }

.gn-checkout__option-info { flex: 1; }
.gn-checkout__option-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gn-gray-800);
}
.gn-checkout__option-desc {
    font-size: 12px;
    color: var(--gn-gray-400);
    margin-top: 2px;
}

.gn-checkout__option-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--gn-gray-900);
    margin-left: auto;
}

/* ----------------------------------------------------------
   23. ACCOUNT
   ---------------------------------------------------------- */
.gn-account-sidebar {
    border-radius: 16px;
    border: 1px solid var(--gn-gray-100);
    overflow: hidden;
    background: var(--gn-white);
}

.gn-account-avatar {
    padding: 28px;
    text-align: center;
    border-bottom: 1px solid var(--gn-gray-100);
}
.gn-account-avatar__img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gn-primary), var(--gn-primary-hover));
    color: var(--gn-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 12px;
}
.gn-account-avatar__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--gn-gray-900);
}
.gn-account-avatar__email {
    font-size: 12px;
    color: var(--gn-gray-400);
    margin-top: 2px;
}

.gn-account-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gn-gray-600);
    transition: all var(--gn-transition-fast);
    border-left: 3px solid transparent;
}
.gn-account-nav__link:hover {
    background: var(--gn-gray-50);
    color: var(--gn-gray-900);
}
.gn-account-nav__link.active {
    color: var(--gn-primary);
    background: rgba(var(--gn-primary-rgb), .04);
    border-left-color: var(--gn-primary);
    font-weight: 600;
}
.gn-account-nav__link i { width: 20px; text-align: center; font-size: 16px; }

.gn-order-card {
    border: 1px solid var(--gn-gray-100);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    transition: border-color .2s;
}
.gn-order-card:hover { border-color: var(--gn-primary); }

.gn-order-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.gn-order-card__id {
    font-size: 14px;
    font-weight: 700;
    color: var(--gn-gray-900);
}
.gn-order-card__status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--gn-radius-full);
}
.gn-order-card__status--pending { background: rgba(234, 179, 8, .1); color: var(--gn-warning); }
.gn-order-card__status--processing { background: rgba(59, 130, 246, .1); color: var(--gn-info); }
.gn-order-card__status--shipped { background: rgba(var(--gn-primary-rgb), .1); color: var(--gn-primary); }
.gn-order-card__status--delivered { background: rgba(var(--gn-success-rgb), .1); color: var(--gn-success); }
.gn-order-card__status--cancelled { background: rgba(var(--gn-danger-rgb), .1); color: var(--gn-danger); }

/* ----------------------------------------------------------
   24. MOBILE MENU (Offcanvas)
   ---------------------------------------------------------- */
.gn-mobile-menu {
    position: fixed;
    top: 0;
    right: -340px;
    bottom: 0;
    width: 340px;
    background: var(--gn-white);
    z-index: var(--gn-z-modal);
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0, 0, 0, .1);
}
.gn-mobile-menu.open { right: 0; }

.gn-mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: calc(var(--gn-z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.gn-mobile-menu__overlay.open { opacity: 1; visibility: visible; }

.gn-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gn-gray-100);
}
.gn-mobile-menu__header-title { font-size: 1rem; font-weight: 700; color: var(--gn-gray-900); }
.gn-mobile-menu__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    background: var(--gn-gray-50);
    color: var(--gn-gray-500);
    cursor: pointer;
}

.gn-mobile-menu__search {
    margin: 16px 24px;
    position: relative;
}
.gn-mobile-menu__search-input {
    width: 100%;
    height: 44px;
    background: var(--gn-gray-50);
    border: none;
    border-radius: 12px;
    padding: 0 16px 0 44px;
    font-size: 14px;
    font-family: var(--gn-font);
    outline: none;
}
.gn-mobile-menu__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gn-gray-400);
    font-size: 15px;
}

.gn-mobile-menu__body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.gn-mobile-menu__item {
    border-bottom: 1px solid var(--gn-gray-50);
}
.gn-mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gn-gray-800);
}
.gn-mobile-menu__link:hover { color: var(--gn-primary); }
.gn-mobile-menu__expand {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gn-gray-200);
    border-radius: 8px;
    background: transparent;
    color: var(--gn-gray-500);
    cursor: pointer;
    font-size: 12px;
}

.gn-mobile-menu__sub {
    padding: 0 24px 8px 40px;
    display: none;
}
.gn-mobile-menu__sub.open { display: block; }
.gn-mobile-menu__sub-link {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gn-gray-500);
}
.gn-mobile-menu__sub-link:hover { color: var(--gn-primary); }

.gn-mobile-menu__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gn-gray-100);
}
.gn-mobile-menu__lang-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.gn-mobile-menu__lang-pill {
    padding: 6px 14px;
    border: 1px solid var(--gn-gray-200);
    border-radius: var(--gn-radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--gn-gray-600);
    background: transparent;
    cursor: pointer;
    transition: all var(--gn-transition-fast);
}
.gn-mobile-menu__lang-pill.active,
.gn-mobile-menu__lang-pill:hover {
    border-color: var(--gn-primary);
    color: var(--gn-primary);
    background: rgba(var(--gn-primary-rgb), .05);
}
.gn-mobile-menu__contact {
    font-size: 13px;
    color: var(--gn-gray-500);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gn-mobile-menu__contact a:hover { color: var(--gn-primary); }

/* ----------------------------------------------------------
   25. MINI CART
   ---------------------------------------------------------- */
.gn-minicart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    background: var(--gn-white);
    box-shadow: -8px 0 40px rgba(0,0,0,.1);
    z-index: var(--gn-z-minicart);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}
.gn-minicart.open { transform: translateX(0); }

.gn-minicart__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: calc(var(--gn-z-minicart) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.gn-minicart__overlay.open { opacity: 1; visibility: visible; }

.gn-minicart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gn-gray-100);
    flex-shrink: 0;
}
.gn-minicart__title { font-size: 15px; font-weight: 700; color: var(--gn-gray-900); margin: 0; }
.gn-minicart__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--gn-gray-200);
    background: var(--gn-white);
    color: var(--gn-gray-500);
    cursor: pointer;
    font-size: 14px;
    transition: all .15s;
}
.gn-minicart__close:hover { border-color: var(--gn-gray-300); color: var(--gn-gray-900); }

.gn-minicart__body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 24px;
}
.gn-minicart__body::-webkit-scrollbar { width: 4px; }
.gn-minicart__body::-webkit-scrollbar-thumb { background: var(--gn-gray-200); border-radius: 4px; }

.gn-minicart__item:last-child { border-bottom: none !important; }

.gn-minicart__checkout:hover {
    background: var(--gn-primary-hover) !important;
    box-shadow: 0 6px 20px rgba(var(--gn-primary-rgb), .25);
}
.gn-minicart__view-cart:hover { color: var(--gn-primary) !important; }

/* ----------------------------------------------------------
   26. BACK TO TOP
   ---------------------------------------------------------- */
.gn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gn-gray-900);
    color: var(--gn-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: var(--gn-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    z-index: 99;
}
.gn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gn-back-to-top:hover { background: var(--gn-primary); }

/* ----------------------------------------------------------
   27. ANIMATIONS
   ---------------------------------------------------------- */
@keyframes gnFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gnFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes gnSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gn-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1);
}
.gn-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gn-animate.delay-1 { transition-delay: .1s; }
.gn-animate.delay-2 { transition-delay: .2s; }
.gn-animate.delay-3 { transition-delay: .3s; }
.gn-animate.delay-4 { transition-delay: .4s; }
.gn-animate.delay-5 { transition-delay: .5s; }

/* ----------------------------------------------------------
   28. UTILITIES
   ---------------------------------------------------------- */
.gn-glass {
    background: rgba(255, 255, 255, .7);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .2);
}

.gn-text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gn-text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gn-gradient-text {
    background: linear-gradient(135deg, var(--gn-primary) 0%, var(--gn-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gn-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------------------------------------------------------
   29. TRACKING TIMELINE
   ---------------------------------------------------------- */
.gn-tracking-timeline {
    position: relative;
    padding-left: 24px;
}
.gn-tracking-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--gn-gray-200);
}
.gn-tracking-event {
    position: relative;
    padding-bottom: 20px;
    padding-left: 12px;
}
.gn-tracking-event:last-child { padding-bottom: 0; }
.gn-tracking-event__dot {
    position: absolute;
    left: -21px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gn-gray-300);
    border: 2px solid var(--gn-white);
    z-index: 1;
}
.gn-tracking-event--active .gn-tracking-event__dot {
    background: var(--gn-primary);
    box-shadow: 0 0 0 4px rgba(var(--gn-primary-rgb), .15);
}
.gn-tracking-event__status { font-size: 13px; color: var(--gn-gray-800); }
.gn-tracking-event--active .gn-tracking-event__status { color: var(--gn-primary); }
.gn-tracking-event__location,
.gn-tracking-event__desc { font-size: 12px; margin-top: 2px; }
.gn-tracking-event__time { font-size: 11px; color: var(--gn-gray-400); margin-top: 4px; }

/* ----------------------------------------------------------
   30. RESPONSIVE
   ---------------------------------------------------------- */

/* Large desktop and below */
@media (max-width: 1199px) {
    .gn-section { padding: 80px 0; }
    .gn-section-header { margin-bottom: 48px; }
    .gn-footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .gn-hero__slide { min-height: 75vh; }
    .gn-nav__mega { min-width: 560px; }
}

/* Tablet */
@media (max-width: 991px) {
    .gn-section { padding: 60px 0; }
    .gn-section-header__title { font-size: 1.75rem; }
    .gn-section-header__action { position: static; margin-top: 16px; }

    .gn-topbar { display: none; }
    /* Header always solid on tablet */
    .gn-header__logo { color: var(--gn-gray-900); }
    .gn-nav { display: none; }
    .gn-hamburger { display: flex; }
    .gn-header__action { color: var(--gn-gray-600); }
    .gn-header__action:hover { color: var(--gn-gray-900); background: var(--gn-gray-50); }
    .gn-hamburger span { background: var(--gn-gray-900); }

    .gn-hero { padding-top: 72px; }
    .gn-hero__slide { min-height: 65vh; }
    .gn-hero__title { font-size: clamp(2rem, 5vw, 3rem); }
    .gn-hero__indicators { bottom: 24px; right: 24px; }
    .gn-hero__controls { bottom: 24px; left: 24px; }
    .gn-hero .carousel-control-prev { left: 16px; bottom: 24px; }
    .gn-hero .carousel-control-next { left: 72px; bottom: 24px; }

    .gn-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .gn-product-detail__gallery { position: static; }
    .gn-sidebar { position: static; }
}

/* Mobile landscape */
@media (max-width: 767px) {
    .gn-section { padding: 48px 0; }
    .gn-section-header { margin-bottom: 36px; }
    .gn-section-header__title { font-size: 1.5rem; }

    .gn-hero__slide { min-height: 55vh; }
    .gn-hero__slide::after {
        background: linear-gradient(
            to top,
            rgba(var(--gn-dark-rgb), .85) 0%,
            rgba(var(--gn-dark-rgb), .4) 60%,
            transparent 100%
        );
    }
    .gn-hero__content { max-width: 100%; }
    .gn-hero__desc { font-size: 15px; }
    .gn-hero__indicators { display: none; }
    .gn-hero__controls { bottom: 20px; left: 16px; }
    .gn-hero .carousel-control-prev,
    .gn-hero .carousel-control-next { width: 40px; height: 40px; bottom: 20px; }
    .gn-hero .carousel-control-prev { left: 16px; }
    .gn-hero .carousel-control-next { left: 64px; }

    .gn-product-detail__title { font-size: 1.5rem; }
    .gn-product-detail__price { font-size: 1.5rem; }

    .gn-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .gn-footer { padding: 48px 0 0; }
    .gn-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

    .gn-auth__card { padding: 28px; }

    .gn-cart-table { display: block; }
    .gn-cart-table thead { display: none; }
    .gn-cart-table tbody, .gn-cart-table tr, .gn-cart-table td { display: block; width: 100%; }

    .gn-blog-detail__title { font-size: 1.75rem; }

    .gn-minicart { width: 100%; }
    .gn-mobile-menu { width: 100%; right: -100%; }
}

/* Mobile portrait */
@media (max-width: 575px) {
    .gn-section { padding: 40px 0; }
    .gn-header__inner { height: 60px; padding: 0 16px; }
    .gn-header__logo { font-size: 1.25rem; }

    .gn-hero__slide { min-height: 50vh; padding-bottom: 40px; }
    .gn-hero__title { font-size: 1.75rem; }
    .gn-hero__desc { font-size: 14px; max-width: 100%; }
    .gn-hero__actions { flex-direction: column; }
    .gn-hero__actions .gn-btn { width: 100%; justify-content: center; }

    .gn-product__media { aspect-ratio: 1/1; }
    .gn-product__body { padding: 14px 16px 16px; }
    .gn-product__title { font-size: 13px; }
    .gn-product__price-current { font-size: 1rem; }

    .gn-category--featured { min-height: 280px; }

    .gn-display { font-size: 2rem; }

    .gn-pagination { gap: 4px; }
    .gn-pagination__link { width: 36px; height: 36px; font-size: 13px; }

    .gn-contact-form { padding: 24px; }
}

/* ==========================================================================
   TABLEACI ANKARA — Custom Styles (merged from ankaratabelaci-html)
   Base: Bootstrap 5 + custom premium industrial design
   Palette: Red #F62525 / Dark Grey-Blue #434A5B / Dark #151820 / Light #F7F8FA
   Fonts: Plus Jakarta Sans (display) + Manrope (body)
   ========================================================================== */

* { -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--light);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--dark-2);
  letter-spacing: -0.02em;
}

img { max-width: 100%; }

section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

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

/* ---------- Buttons ---------- */
.btn {
  --bs-btn-border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-brand {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-deep);
  --bs-btn-active-border-color: var(--brand-deep);
  box-shadow: 0 12px 26px rgba(246, 37, 37, 0.32);
}

.btn-brand i, .btn-white i {
  transition: transform 0.3s ease;
}

.btn-brand:hover i, .btn-white:hover i {
  transform: translateX(5px);
}

.btn-lg-cta {
  padding: 0.95rem 1.9rem;
  font-size: 1.02rem;
}

.btn-sm-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.92rem;
}

.btn-block { width: 100%; padding: 0.95rem 1.5rem; }

.btn-ghost {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.35);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.08);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: #fff;
  border-width: 1.5px;
  padding: 0.9rem 1.8rem;
  font-size: 1.02rem;
}

.btn-white {
  --bs-btn-bg: #fff;
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: #fff;
  --bs-btn-hover-bg: #ffecec;
  --bs-btn-hover-color: var(--brand-deep);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  padding: 1rem 2.1rem;
  font-size: 1.05rem;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section-light { background: var(--light); }
.section-dark {
  background: linear-gradient(160deg, var(--ink) 0%, #3a4152 45%, #2c3342 100%);
  color: #fff;
}
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.72); }

.section-head { max-width: 720px; margin: 0 auto 3.5rem; }

.section-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   NAVBAR (template header)
   ========================================================================== */
.site-header {
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: transparent;
  z-index: 1030;
}

.site-header .navbar { padding: 0; }

.site-header.scrolled,
.site-header--solid {
  background: rgba(21, 24, 32, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.navbar-brand img { transition: transform 0.3s ease; }
.navbar-brand:hover img { transform: scale(1.03); }

.navbar-brand {
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.5rem 0.95rem !important;
  position: relative;
  transition: color 0.25s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 100%;
  bottom: 0.2rem;
  height: 2px;
  background: var(--brand);
  transition: right 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  right: 0.95rem;
}

/* Header icon cluster (search / account / cart / lang) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nav-action:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.nav-action .header-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--dark);
}

.nav-lang {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-lang:hover {
  border-color: var(--brand);
  background: rgba(246, 37, 37, 0.15);
}

.nav-lang.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.nav-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.92rem;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-phone i { color: var(--brand); font-size: 0.85rem; }
.nav-phone:hover { color: var(--brand); }

.navbar-toggler {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(246, 37, 37, 0.35); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .site-header { padding: 0.5rem 0; }
  .site-header.scrolled,
  .site-header--solid { padding: 0.5rem 0; }
  .navbar-collapse {
    background: var(--dark);
    border-radius: 14px;
    padding: 1rem 1.25rem 1.4rem;
    margin-top: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
  }
  .navbar-nav .nav-link { padding: 0.7rem 0.4rem !important; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-cta { margin-top: 1rem; justify-content: space-between; }
  .nav-phone { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #232b3a 0%, #151820 100%) center 30% / cover no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 11, 17, 0.92) 0%, rgba(11, 13, 20, 0.78) 42%, rgba(13, 15, 23, 0.35) 100%),
    linear-gradient(0deg, rgba(9, 11, 17, 0.6) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: #c9d1df;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.eyebrow-line { width: 46px; height: 2px; background: var(--brand); display: inline-block; }

.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title .text-brand { text-shadow: 0 0 42px rgba(246, 37, 37, 0.45); }

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #dfe4ec;
}

.hero-trust i { color: var(--brand); font-size: 1.05rem; }

/* Floating cards */
.hero-cards { position: relative; height: 460px; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(24, 28, 38, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  animation: floaty 6s ease-in-out infinite;
}

.fc-1 { top: 8%; right: 6%; }
.fc-2 { top: 40%; left: 2%; animation-delay: 1.2s; }
.fc-3 { bottom: 4%; right: 12%; animation-delay: 2.4s; }

.fc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(246, 37, 37, 0.14);
  border: 1px solid rgba(246, 37, 37, 0.4);
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.floating-card span:last-child {
  font-size: 0.76rem;
  color: var(--ink-light);
  font-weight: 600;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-cue {
  display: block;
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: var(--brand);
  transform: translateX(-50%);
  animation: scrolldot 1.8s ease-in-out infinite;
}

@keyframes scrolldot {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(246, 37, 37, 0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--light);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 1.3rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
  font-size: 1.16rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.service-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s ease;
}

.service-link i { transition: transform 0.3s ease; }

.service-card:hover .service-link,
.service-link:hover { color: var(--brand); }
.service-card:hover .service-link i,
.service-link:hover i { transform: translateX(5px); }

/* ==========================================================================
   SHOWCASE
   ========================================================================== */
.showcase-item { display: block; text-decoration: none; }

.showcase-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--dark-2);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.showcase-item:hover .showcase-media img { transform: scale(1.06); }

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 11, 17, 0.92) 0%, rgba(9, 11, 17, 0.25) 45%, transparent 70%);
  transition: background 0.4s ease;
}

.showcase-item:hover .showcase-overlay { background: linear-gradient(0deg, rgba(9, 11, 17, 0.95) 0%, rgba(9, 11, 17, 0.35) 50%, transparent 72%); }

.showcase-info {
  position: absolute;
  left: 2rem;
  bottom: 1.8rem;
  z-index: 2;
}

.showcase-no {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand);
  letter-spacing: 0.2em;
}
.showcase-no i { font-style: normal; color: var(--ink-light); }

.showcase-info h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0.3rem 0 0.2rem;
  letter-spacing: -0.01em;
}

.showcase-info p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 600;
  font-size: 0.98rem;
}

.showcase-small .showcase-media { aspect-ratio: 16 / 9; }

@media (min-width: 768px) {
  .showcase-small .showcase-media { aspect-ratio: 21 / 10; }
}

/* ==========================================================================
   WHY US (dark)
   ========================================================================== */
.why-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  height: 100%;
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(246, 37, 37, 0.55);
}

.why-num {
  position: absolute;
  right: -0.2rem;
  top: -1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.why-icon {
  font-size: 1.7rem;
  color: var(--brand);
  margin-bottom: 1rem;
}

.why-body { position: relative; z-index: 1; }

.why-card h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  margin: 0;
}

.why-cta { margin-top: 2rem; }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process-track { position: relative; }

.process-track::before {
  content: "";
  position: absolute;
  top: 2.6rem;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(246, 37, 37, 0.4) 100%);
}

@media (max-width: 991.98px) {
  .process-track::before { display: none; }
}

.process-step {
  position: relative;
  text-align: center;
  padding: 1.2rem 1rem 0;
  height: 100%;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand);
  letter-spacing: 0.2em;
  margin-bottom: 0.9rem;
}

.step-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin: 0 auto 1.4rem;
  position: relative;
  z-index: 2;
  border: 4px solid var(--light);
  outline: 2px solid rgba(246, 37, 37, 0.35);
  box-shadow: 0 10px 24px rgba(21, 24, 32, 0.2);
  transition: background 0.3s ease, outline-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover .step-icon {
  background: var(--brand);
  outline-color: rgba(246, 37, 37, 0.8);
  transform: translateY(-4px);
}

.process-step h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ==========================================================================
   PORTFOLIO GALLERY
   ========================================================================== */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
}

.filter-btn {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.filter-btn:hover { border-color: var(--brand); color: var(--brand); }

.filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(246, 37, 37, 0.3);
}

.gallery-grid {
  columns: 3;
  column-gap: 1.5rem;
}

@media (max-width: 991.98px) { .gallery-grid { columns: 2; } }
@media (max-width: 575.98px) { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1.5rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.is-hidden {
  display: none;
  opacity: 0;
  transform: scale(0.94);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1), filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.55);
}

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover figcaption { opacity: 1; }

.gallery-plus {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 14px 34px rgba(246, 37, 37, 0.45);
  transform: scale(0.6);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}

.gallery-item:hover .gallery-plus { transform: scale(1); }

.gallery-item figcaption h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.1rem;
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.4s ease;
}

.gallery-item figcaption p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.4s ease 0.05s;
}

.gallery-item:hover figcaption h3,
.gallery-item:hover figcaption p { transform: translateY(0); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-section {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 767.98px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1rem; }
}

.stat {
  text-align: center;
  position: relative;
  padding: 0.5rem 0;
}

.stat::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat:last-child::after { display: none; }

@media (max-width: 767.98px) {
  .stat::after { display: none; }
  .stat:nth-child(-n+2)::after { display: block; top: auto; bottom: -1.2rem; left: 15%; right: 15%; height: 1px; width: 70%; }
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-num span { color: var(--brand); }

.stat-label {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials .carousel { max-width: 760px; margin: 0 auto; }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3rem 2.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -1.2rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9rem;
  color: rgba(246, 37, 37, 0.1);
  line-height: 1;
}

.stars { color: var(--brand); font-size: 1.1rem; margin-bottom: 1.4rem; letter-spacing: 0.15em; }

.testimonial-card blockquote {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.testimonial-author div { text-align: left; }
.testimonial-author strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--dark-2); }
.testimonial-author div span { font-size: 0.85rem; color: var(--ink-light); font-weight: 600; }

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  bottom: auto;
}

.carousel-control-prev { left: -70px; }
.carousel-control-next { right: -70px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

@media (max-width: 991.98px) {
  .carousel-control-prev { left: -10px; }
  .carousel-control-next { right: -10px; }
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section {
  background: linear-gradient(120deg, #e81f1f 0%, var(--brand) 55%, #ff4a3d 100%);
  color: #fff;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 26px),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14) 0 1.5px, transparent 1.5px 30px);
  background-size: auto, 30px 30px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.cta-inner h2 span { display: block; }

.cta-inner p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 2.4rem;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.blog-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.blog-card:hover .blog-media img { transform: scale(1.07); }

.blog-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
}

.blog-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }

.blog-meta {
  font-size: 0.82rem;
  color: var(--ink-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}
.blog-meta i { color: var(--brand); }

.blog-body h3 { font-size: 1.18rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-body h3 a { color: var(--dark-2); text-decoration: none; transition: color 0.25s ease; }
.blog-body h3 a:hover { color: var(--brand); }

.blog-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
}

.blog-body .service-link { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.3rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-icon.whatsapp { color: #25d366; }

.contact-list strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 0.92rem; color: var(--dark-2); margin-bottom: 0.15rem; }
.contact-list div span,
.contact-list div a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}
.contact-list div a:hover { color: var(--brand); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.4rem;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 10px;
  border: 1.5px solid var(--line);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(246, 37, 37, 0.12);
}

.contact-form .form-control.is-invalid {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(246, 37, 37, 0.12);
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin: 0.8rem 0 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: var(--ink-light);
  padding: 4.5rem 0 0;
}

.footer-logo { display: inline-block; margin-bottom: 1.4rem; }
.footer-logo img { max-height: 40px; }
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.footer-about {
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 340px;
  color: var(--ink-light);
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  color: var(--ink-light);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover { color: var(--brand); padding-left: 4px; }

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer-contact i { color: var(--brand); margin-top: 0.2rem; }
.footer-contact a { color: var(--ink-light); text-decoration: none; }
.footer-contact a:hover { color: var(--brand); }

.footer-bottom {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-light);
}

.footer-credit i { color: var(--brand); }

.footer-credit a { color: var(--ink-light); text-decoration: none; }
.footer-credit a:hover { color: var(--brand); }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2.2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal-up,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
  will-change: opacity, transform;
}

.reveal-up { transform: translateY(36px); }
.reveal-scale { transform: scale(0.86); }

.reveal-up.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-scale { opacity: 1; transform: none; }
}

/* ==========================================================================
   TABLEACI — LATEST PRODUCTS (Son Urunler)
   ========================================================================== */
.tbl-product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tbl-product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(246, 37, 37, 0.3);
}

.tbl-product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--light);
}

.tbl-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.tbl-product:hover .tbl-product__media img { transform: scale(1.07); }

.tbl-product__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.tbl-product__badge--new { background: #10b981; }

.tbl-product__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }

.tbl-product__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.tbl-product__title a { color: var(--dark-2); text-decoration: none; }
.tbl-product__title a:hover { color: var(--brand); }

.tbl-product__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: auto;
}

.tbl-product__price-current {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark-2);
}

.tbl-product__price-old {
  font-size: 0.85rem;
  color: var(--ink-light);
  text-decoration: line-through;
}

/* ==========================================================================
   INNER PAGE TOUCH-UPS
   ========================================================================== */
.gn-breadcrumb {
  background: var(--light);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.gn-breadcrumb .breadcrumb-item a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.gn-breadcrumb .breadcrumb-item a:hover { color: var(--brand); }
.gn-breadcrumb .breadcrumb-item.active { color: var(--brand); font-weight: 700; }
.gn-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--ink-light); }

.gn-minicart__checkout,
.gn-footer__newsletter-btn { background: var(--brand); }

.gn-product__add-cart { background: var(--brand); }
.gn-product__add-cart:hover { background: var(--brand-dark); }

.gn-footer__newsletter-btn { border: none; color: #fff; border-radius: 10px; padding: 0 16px; }

.gn-mobile-menu { background: var(--dark); color: #fff; }
.gn-mobile-menu .gn-mobile-menu__close { color: #fff; }
.gn-mobile-menu__nav-link,
.gn-mobile-menu__sub-link { color: rgba(255, 255, 255, 0.85); }
.gn-mobile-menu__nav-link:hover,
.gn-mobile-menu__sub-link:hover { color: var(--brand); }
.gn-mobile-menu__search-wrap input { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.12); color: #fff; }
.gn-mobile-menu__search-wrap input::placeholder { color: rgba(255, 255, 255, 0.4); }
.gn-mobile-menu__expand { color: rgba(255, 255, 255, 0.6); }
.gn-mobile-menu__lang { border-color: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.8); }
.gn-mobile-menu__lang.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.gn-mobile-menu__contact a { color: rgba(255, 255, 255, 0.7); }

/* ----------------------------------------------------------
   END OF TABLEACI DESIGN SYSTEM
   ---------------------------------------------------------- */
