/* ===== GUMA STORE — EXACT 1:1 PIXEL-PERFECT DESIGN SYSTEM ===== */

:root {
    --COLOR-TEXT: #0d0d0d;
    --COLOR-BG: #ffffff;
    --COLOR-BG-SECONDARY: #fafafa;
    --COLOR-BORDER: rgba(13, 13, 13, 0.15);
    --COLOR-BORDER-DARK: #0d0d0d;
    --COLOR-ACCENT: #712002;
    --COLOR-GOLD: #c5a059;
    --COLOR-GOLD-LIGHT: #e5c158;
    --FONT: 'Figtree', sans-serif;
    --SITE-WIDTH: 1440px;
    --gutter: 60px;
    --gutter-mobile: 20px;
    --drawer-width: 420px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; outline:none !important; }
html { scroll-behavior:smooth; }

html, body {
    overflow-x: hidden !important;
    background: var(--COLOR-BG);
    color: var(--COLOR-TEXT);
    font-family: var(--FONT);
    line-height: 1.5;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration:none; color:inherit; outline:none; }
button { border:none; background:none; cursor:pointer; font-family:inherit; outline:none; }
ul { list-style:none; }
img { max-width:100%; display:block; }

/* ===== HEADER (TRANSPARENT FLOATING OVER 100VH VIDEO) ===== */
.g-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled state OR light category header state */
.g-header.scrolled, .g-header.light-header {
    background: #ffffff !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--COLOR-BORDER) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.g-header.scrolled .g-nav-link,
.g-header.light-header .g-nav-link,
.g-header.scrolled .g-nav-right-links a,
.g-header.light-header .g-nav-right-links a,
.g-header.scrolled .g-icons button,
.g-header.light-header .g-icons button,
.g-header.scrolled .g-hamburger,
.g-header.light-header .g-hamburger {
    color: var(--COLOR-TEXT) !important;
}

.g-header.scrolled .g-nav-link.active::after,
.g-header.light-header .g-nav-link.active::after {
    background-color: var(--COLOR-GOLD-LIGHT) !important;
}

.g-header.scrolled .g-logo-img,
.g-header.light-header .g-logo-img {
    filter: none !important;
}

.g-header-inner {
    position: relative;
    max-width: var(--SITE-WIDTH);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    height: 68px;
}

/* Left Navigation Links */
.g-nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.g-nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 4px 0;
    position: relative;
    transition: color 0.3s ease, opacity 0.2s;
    border: none !important;
    outline: none !important;
}

.g-header.scrolled .g-nav-link,
.g-header.light-header .g-nav-link {
    color: var(--COLOR-TEXT);
}

.g-nav-link:hover { opacity: 0.7; }

/* Active Indicator Line under category */
.g-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #ffffff;
}
.g-header.scrolled .g-nav-link.active::after,
.g-header.light-header .g-nav-link.active::after {
    background-color: var(--COLOR-TEXT);
}

/* Center Logo — 100% Dead Center & Inverted for Transparent Mode */
.g-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-logo a {
    display: flex;
    align-items: center;
    position: relative;
    height: 32px;
}

.g-logo-img {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.g-logo-white {
    opacity: 1;
}

.g-logo-dark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.g-header.scrolled .g-logo-white,
.g-header.light-header .g-logo-white {
    opacity: 0;
}

.g-header.scrolled .g-logo-dark,
.g-header.light-header .g-logo-dark {
    opacity: 1;
}

/* Right Nav Links & Icons */
.g-nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.g-nav-right-links {
    display: flex;
    gap: 1.8rem;
}

.g-nav-right-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.3s ease, opacity 0.2s;
}

.g-header.scrolled .g-nav-right-links a,
.g-header.light-header .g-nav-right-links a {
    color: var(--COLOR-TEXT);
}

.g-nav-right-links a:hover { opacity: 0.7; }

.g-icons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.g-icons button {
    font-size: 1.1rem;
    color: #ffffff;
    position: relative;
    transition: color 0.3s ease, opacity 0.2s;
}

.g-header.scrolled .g-icons button,
.g-header.light-header .g-icons button {
    color: var(--COLOR-TEXT);
}

.g-icons button:hover { opacity: 0.7; }

.g-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--COLOR-GOLD-LIGHT);
    color: #000;
    font-size: 0.55rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 0 8px rgba(229, 193, 88, 0.5);
}

.g-header.scrolled .g-cart-badge,
.g-header.light-header .g-cart-badge {
    background: var(--COLOR-TEXT);
    color: #ffffff;
}

.g-hamburger { display: none; font-size: 1.3rem; color: #ffffff; }
.g-header.scrolled .g-hamburger,
.g-header.light-header .g-hamburger { color: var(--COLOR-TEXT); }

@media (max-width: 960px) {
    .g-nav-left, .g-nav-right-links { display: none; }
    .g-hamburger { display: block; }
    .g-header-inner { padding: 0 var(--gutter-mobile); height: 60px; }
    .g-logo-img { height: 26px; }
}

/* ===== VERTICAL SCROLL DOTS (GUMA SIGNATURE FEATURE) ===== */
.g-vdots {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.g-vdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.g-vdot.active {
    background: #ffffff;
    transform: scale(1.25);
}

/* On light background sections, turn dots dark */
.g-header.scrolled ~ .g-vdots .g-vdot,
.g-header.light-header ~ .g-vdots .g-vdot {
    border-color: #0d0d0d;
}
.g-header.scrolled ~ .g-vdots .g-vdot.active,
.g-header.light-header ~ .g-vdots .g-vdot.active {
    background: #0d0d0d;
}

@media (max-width: 768px) {
    .g-vdots { right: 12px; gap: 10px; }
    .g-vdot { width: 8px; height: 8px; }
}

/* ===== HERO CAROUSEL / SLIDER (100VH FULL BLEED) ===== */
.g-hero-carousel-section {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    margin: 0;
    padding: 0;
}

.g-hero-slider-track {
    display: flex;
    width: 400vw;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.g-hero-slide {
    width: 100vw;
    height: 100vh;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.g-hero-slide-video {
    width: 100%;
    height: calc(100vh + 75px);
    object-fit: cover;
    object-position: center top;
    margin-bottom: -75px;
    display: block;
    transform: scale(1.08);
    transform-origin: top left;
}

.g-hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
}

.g-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 var(--gutter) 6rem;
}

.g-hero-slide-content {
    max-width: 700px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.g-hero-slide.active .g-hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.g-hero-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    display: block;
    margin-bottom: 0.8rem;
}

.g-hero-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.g-hero-btn {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    padding: 1rem 2.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.g-hero-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
    border-color: #ffffff;
}

/* Slider Controls (Arrows & Dots) */
.g-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.g-hero-arrow:hover {
    background: #ffffff;
    color: #0d0d0d;
}

.g-hero-arrow.prev { left: 30px; }
.g-hero-arrow.next { right: 30px; }

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

.g-hero-dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.g-hero-dot.active {
    background: #ffffff;
    width: 45px;
}

@media (max-width: 768px) {
    .g-hero-slide-overlay { padding: 0 var(--gutter-mobile) 5rem; }
    .g-hero-title { font-size: 1.5rem; }
    .g-hero-arrow { display: none; }
}

/* ===== FULL-BLEED VIDEO SHOWCASE ===== */

.g-full-video-showcase {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #0d0d0d;
    position: relative;
    margin: 0;
    padding: 0;
}

.g-hero-video, .g-full-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transform-origin: top left;
    display: block;
}

.g-full-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 45%);
}

.g-kesfet-btn {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    padding: 1rem 2.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.g-kesfet-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
    border-color: #ffffff;
}

/* Section Title: ÜRÜNLERİ KEŞFEDİN / CATEGORY HEADER (Guma Home Page & Collection) */
.g-section-title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    color: var(--COLOR-TEXT);
    padding: 6.5rem 0 1.8rem 0;
}

.g-cat-hero-banner {
    width: 100%;
    max-width: var(--SITE-WIDTH);
    margin: 0 auto 2.5rem auto;
    padding: 0 var(--gutter);
}

.g-cat-hero-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 560px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    border: 1px solid var(--COLOR-BORDER);
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .g-cat-hero-banner { padding: 0 var(--gutter-mobile); }
    .g-section-title { padding: 5rem 0 1.2rem 0; font-size: 1.3rem; }
}

/* ===== DEDICATED HİKAYEMİZ BRAND MANIFESTO PAGE ===== */
.g-story-page {
    padding-top: 80px;
    background: #ffffff;
    min-height: 100vh;
}

.g-story-page-hero {
    text-align: center;
    padding: 5rem 2rem 4rem;
    background: #0d0d0d;
    color: #ffffff;
}

.g-story-page-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a8a8a8;
    display: block;
    margin-bottom: 1.2rem;
}

.g-story-page-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.g-story-page-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem var(--gutter);
}

.g-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.g-story-col-left h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
}

.g-story-col-left p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.g-manifesto-box {
    background: var(--COLOR-BG-SECONDARY);
    border: 1px solid var(--COLOR-BORDER);
    padding: 2.5rem 2rem;
}

.g-manifesto-box h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--COLOR-BORDER);
}

.g-manifesto-box ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}

.g-manifesto-box li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #444;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.g-manifesto-box li i {
    color: var(--COLOR-ACCENT);
    margin-top: 4px;
}

.g-story-cta-btn {
    width: 100%;
    background: #0d0d0d;
    color: #ffffff;
    padding: 1.1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.g-story-cta-btn:hover {
    background: var(--COLOR-ACCENT);
}

.g-story-quote-banner {
    background: #0d0d0d;
    color: #ffffff;
    padding: 4rem 3rem;
    text-align: center;
}

.g-story-quote-banner blockquote {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.g-story-quote-banner cite {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-style: normal;
}

@media (max-width: 900px) {
    .g-story-page-title { font-size: 1.8rem; }
    .g-story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .g-story-page-body { padding: 3rem var(--gutter-mobile); }
}
/* ===== GUMA-STYLE FILTER BAR ===== */
.g-filter-bar {
    max-width: var(--SITE-WIDTH);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 52px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid var(--COLOR-BORDER-DARK);
    border-bottom: 1px solid var(--COLOR-BORDER);
    font-size: 0.8rem;
    color: var(--COLOR-TEXT);
    position: relative;
    z-index: 120 !important;
    background: #ffffff;
}

.g-filter-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 2rem !important;
}

.g-filter-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 2rem !important;
}

.g-filter-dropdown {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem;
    user-select: none;
}

.g-filter-dropdown:hover { opacity: 0.7; }

/* Dropdown Menu Popup - HIDDEN BY DEFAULT */
.g-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #ffffff;
    border: 1px solid var(--COLOR-BORDER);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    min-width: 200px;
    z-index: 9999 !important;
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    flex-direction: column;
    padding: 0.5rem 0;
}

.g-filter-right .g-dropdown-menu {
    left: auto;
    right: 0;
}

.g-dropdown-menu.open {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.g-dropdown-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: #333;
    transition: background 0.2s, color 0.2s;
    text-transform: none;
    white-space: nowrap;
}

.g-dropdown-item:hover, .g-dropdown-item.active {
    background: #f5f5f5;
    color: #000;
    font-weight: 600;
}

.g-product-count {
    color: #777;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .g-filter-bar { padding: 0 var(--gutter-mobile); font-size: 0.72rem; }
    .g-filter-left, .g-filter-right { gap: 1rem; }
}

/* ===== PRODUCT GRID (3-COL GUMA EXACT) ===== */
.g-products-section {
    max-width: var(--SITE-WIDTH);
    margin: 0 auto;
    padding: 0 var(--gutter) 5rem;
}

.g-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

/* Shared Border Card */
.g-card {
    border: 1px solid var(--COLOR-BORDER);
    margin-top: -1px;
    margin-left: -1px;
    cursor: pointer;
    position: relative;
    background: #ffffff;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.g-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.g-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    z-index: 2;
}

.g-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

.g-card-img img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.g-card-img-primary { opacity: 1; z-index: 1; }
.g-card-img-secondary { opacity: 0; z-index: 2; }

.g-card:hover .g-card-img-primary { opacity: 0; }
.g-card:hover .g-card-img-secondary { opacity: 1; }

.g-card-info {
    padding: 1.2rem 1.5rem 1.6rem;
}

.g-card-subtitle {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.g-card-title {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--COLOR-TEXT);
    line-height: 1.4;
    margin-bottom: 8px;
}

.g-card-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--COLOR-TEXT);
}

.g-card-price-strike {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

@media (max-width: 900px) {
    .g-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .g-products-section { padding: 0 var(--gutter-mobile) 4rem; }
}

@media (max-width: 480px) {
    .g-card-info { padding: 10px 12px 14px; }
    .g-card-title { font-size: 0.78rem; }
    .g-card-price { font-size: 0.78rem; }
}

/* ===== STORY SECTION ===== */
.g-story {
    padding: 6rem var(--gutter);
    border-top: 1px solid var(--COLOR-BORDER);
    border-bottom: 1px solid var(--COLOR-BORDER);
    background: #ffffff;
}

.g-story-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 5rem;
    align-items: start;
}

.g-story-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--COLOR-ACCENT);
    margin-bottom: 1.5rem;
}

.g-story-text h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 2rem;
}

.g-story-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 300;
}

.g-story-roles {
    display: flex; align-items: center; gap: 2.5rem;
    margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid var(--COLOR-BORDER);
}
.g-role-label {
    display: block; font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: #888; margin-bottom: 4px;
}
.g-role-val { font-weight: 500; font-size: 0.85rem; }
.g-role-divider { width: 1px; height: 40px; background: var(--COLOR-BORDER); }

.g-story-quote {
    background: var(--COLOR-BG-SECONDARY);
    border: 1px solid var(--COLOR-BORDER);
    padding: 3rem 2.5rem;
}

.g-story-quote blockquote {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.g-story-quote cite {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
    font-style: normal;
}

@media (max-width: 900px) {
    .g-story { padding: 4rem var(--gutter-mobile); }
    .g-story-inner { grid-template-columns: 1fr; gap: 3rem; }
    .g-story-text h2 { font-size: 1.6rem; }
}

/* ===== FOOTER ===== */
.g-footer {
    background: var(--COLOR-TEXT);
    color: #ffffff;
    padding: 5rem var(--gutter) 2rem;
}

.g-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.g-footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 1.2rem;
}

.g-footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    font-weight: 300;
}

.g-footer-col h4 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.g-footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.7rem;
    font-weight: 300;
    transition: color 0.2s;
}
.g-footer-col a:hover { color: #ffffff; }

.g-footer-social { display: flex; gap: 1.2rem; font-size: 1.2rem; }
.g-footer-social a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.g-footer-social a:hover { color: #ffffff; }

.g-footer-bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}

@media (max-width: 900px) {
    .g-footer { padding: 3rem var(--gutter-mobile) 1.5rem; }
    .g-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ===== PRODUCT DRAWER ===== */
.g-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 400; display: none; opacity: 0;
    transition: opacity 0.35s;
}
.g-drawer-overlay.open { display: block; opacity: 1; pointer-events: all; }

.g-drawer {
    position: fixed; top: 0; right: 0;
    width: var(--drawer-width); max-width: 100vw;
    height: 100%; background: #ffffff;
    z-index: 401;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.46, 0.01, 0.32, 1);
    overflow-y: auto;
}
.g-drawer.open { transform: translateX(0); }

.g-drawer-close {
    position: sticky; top: 0; z-index: 10;
    float: right; margin: 1rem;
    font-size: 1rem;
    width: 36px; height: 36px;
    background: #ffffff;
    border: 1px solid var(--COLOR-BORDER);
    display: flex; align-items: center; justify-content: center;
}

.g-drawer-gallery { display: flex; flex-direction: column; gap: 2px; clear: both; }
.g-drawer-gallery img {
    width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
}

.g-drawer-info { padding: 1.5rem 1.5rem 2rem; }

.g-drawer-subtitle {
    font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #888; margin-bottom: 4px;
}
.g-drawer-title {
    font-size: 1.25rem; font-weight: 400;
    line-height: 1.3; margin-bottom: 1rem;
}
.g-drawer-price {
    font-size: 1.3rem; font-weight: 500; margin-bottom: 4px;
}
.g-drawer-stock {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--COLOR-ACCENT); margin-bottom: 1.5rem;
}
.g-drawer-desc {
    font-size: 0.85rem; line-height: 1.8;
    color: #555; font-weight: 300;
    margin-bottom: 2rem;
}

.g-drawer-specs { border-top: 1px solid var(--COLOR-BORDER); margin-bottom: 2rem; }
.g-spec-row {
    display: flex; justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--COLOR-BORDER);
    font-size: 0.78rem;
}
.g-spec-label {
    color: #888; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500;
}
.g-spec-val { font-weight: 500; font-size: 0.82rem; }

.g-drawer-buy-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 100%;
    background: linear-gradient(135deg, #e5c158 0%, #c5a059 100%);
    color: #0d0d0d;
    padding: 1.1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}
.g-drawer-buy-btn:hover {
    background: linear-gradient(135deg, #f5d061 0%, #d4af37 100%);
    color: #0d0d0d;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    transform: translateY(-1px);
}

.g-drawer-b2b {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: #fdfcf7;
    border: 1px solid var(--COLOR-BORDER);
    border-radius: 2px;
}
.g-b2b-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0d0d0d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.g-b2b-desc {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.g-b2b-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.g-b2b-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--COLOR-BORDER);
    background: #ffffff;
    color: #0d0d0d;
    transition: all 0.25s ease;
    text-decoration: none;
}
.g-b2b-btn:hover {
    border-color: #0d0d0d;
    background: #0d0d0d;
    color: #ffffff;
}
.g-b2b-request-btn {
    background: #0d0d0d;
    color: #ffffff;
    border-color: #0d0d0d;
}
.g-b2b-request-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
    border-color: var(--COLOR-BORDER);
}

/* ===== MOBILE NAV DRAWER (Hidden on desktop) ===== */
.g-mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200; display: none;
}
.g-mobile-overlay.open { display: block; opacity: 1; }

.g-mobile-nav {
    position: fixed; top: 0; left: 0;
    width: 300px; height: 100%;
    background: #ffffff; z-index: 201;
    display: none;
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.g-mobile-nav.open { display: flex; }

@media (min-width: 961px) {
    .g-mobile-nav, .g-mobile-overlay { display: none !important; }
}

.g-mobile-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--COLOR-BORDER);
}
.g-mobile-title { font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.g-mobile-top button { font-size: 1.2rem; color: var(--COLOR-TEXT); }

.g-mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.g-mobile-nav ul li { border-bottom: 1px solid var(--COLOR-BORDER); }
.g-mobile-nav ul a {
    display: block; padding: 1rem 0;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
}

.g-mobile-social {
    margin-top: auto; display: flex; gap: 1.5rem;
    padding-top: 2rem; border-top: 1px solid var(--COLOR-BORDER);
    font-size: 1.3rem;
}

/* ===== HAMZA USTA SIGNATURE BADGE & MASTER SEAL ===== */
.g-signature-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #e5c158;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.g-master-seal-box {
    margin: 1.4rem 0;
    padding: 1.2rem 1.4rem;
    background: #faf8f5;
    border: 1px solid #e5dccb;
    border-left: 3px solid #c5a059;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.g-master-seal-box i {
    font-size: 1.5rem;
    color: #c5a059;
    margin-top: 2px;
}

.g-master-seal-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 4px;
}

.g-master-seal-desc {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.55;
}

/* ===== SEARCH OVERLAY (GUMA STYLE) ===== */
.g-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: none;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.g-search-overlay.open {
    display: block !important;
}

.g-search-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.g-search-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    font-size: 1.5rem;
    color: #111;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.g-search-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid #111;
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
}

.g-search-bar i {
    font-size: 1.3rem;
    color: #111;
}

.g-search-bar input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.2rem;
    font-family: 'Figtree', sans-serif;
    color: #111;
}

.g-search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* ===== VIP NEWSLETTER EMAIL POPUP MODAL ===== */
.g-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.g-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.g-popup-card {
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    padding: 2.8rem 2.2rem 2.2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid #111;
    border-top: 4px solid var(--COLOR-GOLD);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.g-popup-overlay.active .g-popup-card {
    transform: translateY(0) scale(1);
}

.g-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #111;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.2s;
}
.g-popup-close:hover { opacity: 0.6; }

.g-popup-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--COLOR-GOLD);
    margin-bottom: 0.8rem;
}

.g-popup-title {
    font-family: 'Figtree', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0d0d0d;
    line-height: 1.35;
    margin-bottom: 0.8rem;
}

.g-popup-desc {
    font-size: 0.82rem;
    color: #555555;
    line-height: 1.55;
    margin-bottom: 1.6rem;
}

.g-popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.g-popup-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #d0d0d0;
    font-size: 0.85rem;
    font-family: 'Figtree', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    background: #fafafa;
}

.g-popup-form input:focus {
    border-color: var(--COLOR-GOLD);
    background: #ffffff;
}

.g-popup-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #e5c158 0%, #c5a059 100%);
    color: #0d0d0d;
    border: none;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.g-popup-submit-btn:hover {
    background: linear-gradient(135deg, #f5d061 0%, #d4af37 100%);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.g-popup-privacy {
    font-size: 0.68rem;
    color: #888888;
    margin-top: 1rem;
}
