:root {
    --primary-red: #ff3b30;
    --primary-red-glow: rgba(255, 59, 48, 0.3);
    --dark-bg: #050508;
    --dark-card: rgba(14, 14, 20, 0.7);
    --dark-card-hover: rgba(20, 20, 28, 0.85);
    --text-light: #ffffff;
    --text-muted: #8e8e9c;
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    --neon-glow: 0 0 20px var(--primary-red-glow);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: #181822;
    border-radius: 4px;
    border: 2px solid var(--dark-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body > :not(.background-overlay):not(.glass-nav) {
    position: relative;
    z-index: 1;
}

body > .glass-nav {
    position: sticky;
    z-index: 10000 !important;
}

/* Carbon Fiber + Tech Grid Background Pattern */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    background-image: 
        /* Subtle Red Glows */
        radial-gradient(circle at 15% 15%, rgba(255, 59, 48, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(255, 59, 48, 0.08) 0%, transparent 45%),
        /* Technical Grid Lines */
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        /* Carbon Fiber Weave Pattern */
        linear-gradient(45deg, rgba(20, 20, 30, 0.3) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(20, 20, 30, 0.3) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(20, 20, 30, 0.3) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(20, 20, 30, 0.3) 75%),
        /* Main background image */
        linear-gradient(180deg, rgba(5, 5, 8, 0.46) 0%, rgba(5, 5, 8, 0.82) 100%),
        linear-gradient(90deg, rgba(5, 5, 8, 0.76) 0%, rgba(5, 5, 8, 0.28) 50%, rgba(5, 5, 8, 0.78) 100%),
        url('../img/site-background.png');
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px, 8px 8px, 8px 8px, 8px 8px, 8px 8px, cover, cover, cover;
    background-position: center, center, center, center, center, center, center, center, center, center, center 28%;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
}

/* Container */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

img,
iframe {
    max-width: 100%;
}

/* Premium Glassmorphism Panel */
.glass-panel {
    background: var(--dark-card);
    backdrop-filter: blur(25px) saturate(190%);
    -webkit-backdrop-filter: blur(25px) saturate(190%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-panel:hover {
    border-color: rgba(255, 59, 48, 0.25);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 59, 48, 0.08);
}

/* Glowing Border Card (Alternative Premium Style) */
.glowing-card {
    position: relative;
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}
.glowing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.4), transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.5s ease;
}
.glowing-card:hover::before {
    background: linear-gradient(135deg, #ff3b30, transparent 40%, #ff3b30);
}

/* Typography & Badges */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-light);
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 59, 48, 0.08);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: var(--primary-red);
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.1);
}

/* Floating Navigation Header */
.glass-nav {
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 10000 !important;
    padding: 1.2rem 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.logo-svg {
    width: 72px;
    height: 54px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 10px rgba(255, 59, 48, 0.35));
}
.logo-text {
    font-size: clamp(1.05rem, 2vw, 1.42rem);
    font-weight: 950;
    color: var(--text-light);
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}
.logo-subtitle {
    display: none;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
}

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

.admin-brand-logo {
    width: 54px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 auto;
}

.admin-brand-text {
    display: block;
    font-size: 0.98rem;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

.admin-brand-subtitle {
    display: block;
    margin-top: 2px;
    color: var(--primary-red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-red);
}
.nav-links a:hover {
    color: var(--text-light);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links li a.active-link {
    color: var(--text-light);
}
.nav-links li a.active-link::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    border: 0;
    font-family: inherit;
}

.menu-toggle::before {
    content: '';
    display: none;
}

.menu-toggle[aria-expanded="true"]::before {
    content: '';
}

/* Premium Shimmer Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff3b30 0%, #d32f2f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.35);
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: all 0.6s ease;
}
.btn:hover::before {
    left: 100%;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.55), var(--neon-glow);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    box-shadow: none;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Main Layout */
main {
    flex: 1;
    padding: 3rem 0;
    z-index: 0 !important;
}

.hero-showcase {
    position: relative;
    overflow: hidden;
    margin: 1.5rem 0 5rem;
    min-height: 650px;
    border: 1px solid rgba(255, 59, 48, 0.22);
    border-radius: 18px;
    background: #050508;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), 0 0 32px rgba(255, 59, 48, 0.08);
}

.hero-showcase-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 59, 48, 0.28), transparent 35%),
        linear-gradient(120deg, rgba(0, 0, 0, 0.9) 0%, rgba(8, 8, 12, 0.96) 48%, rgba(55, 0, 0, 0.75) 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
}

.hero-showcase-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.7), transparent 70%);
}

.hero-showcase-top,
.hero-product-stage,
.hero-brand-strip,
.hero-feature-strip {
    position: relative;
    z-index: 1;
}

.hero-showcase-top {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 3.2rem 3rem 1rem;
}

.hero-slogan {
    padding-top: 5.8rem;
    text-transform: uppercase;
    font-weight: 950;
    line-height: 1.15;
}

.hero-slogan span,
.hero-slogan strong {
    display: block;
}

.hero-slogan span {
    color: #fff;
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.hero-slogan strong {
    margin-top: 0.35rem;
    color: var(--primary-red);
    font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.hero-slogan::after {
    content: '';
    display: block;
    width: min(100%, 390px);
    height: 2px;
    margin-top: 1.6rem;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 18px rgba(255, 59, 48, 0.7);
}

.hero-brand-lockup {
    text-align: center;
    text-transform: uppercase;
}

.hero-brand-logo {
    width: min(190px, 42vw);
    height: auto;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.55));
}

.hero-brand-lockup h1 {
    font-size: clamp(2.9rem, 5.8vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: 0;
    margin: 0;
}

.hero-brand-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.7rem auto 0;
}

.hero-brand-line span {
    width: 120px;
    max-width: 20%;
    height: 4px;
    background: var(--primary-red);
}

.hero-brand-line strong {
    font-size: clamp(1.15rem, 2.4vw, 2.2rem);
    letter-spacing: 0.28em;
}

.hero-brand-lockup p {
    margin-top: 1.05rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.42em;
    font-size: 0.9rem;
}

.hero-brand-lockup p b {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0.9rem 0.12rem;
    border-radius: 999px;
    background: var(--primary-red);
}

.hero-benefits {
    padding-top: 1rem;
}

.hero-benefits div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 59, 48, 0.18);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-benefits i {
    width: 34px;
    color: #fff;
    font-size: 1.25rem;
    text-align: center;
}

.hero-product-stage {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr 0.75fr 1.25fr;
    align-items: end;
    gap: 0.9rem;
    padding: 0 2.4rem 1rem;
    min-height: 245px;
}

.hero-product {
    display: flex;
    align-items: end;
    justify-content: center;
    min-width: 0;
}

.hero-product img {
    width: 100%;
    max-height: 265px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.04);
    filter: drop-shadow(0 22px 28px rgba(0,0,0,0.75)) saturate(1.1);
}

.hero-product-small img {
    aspect-ratio: 1 / 1.08;
    max-height: 230px;
}

.hero-product-main img {
    aspect-ratio: 1.34 / 1;
    max-height: 285px;
}

.hero-product-tall img {
    aspect-ratio: 0.72 / 1;
    max-height: 245px;
}

.hero-product-box img {
    aspect-ratio: 1.55 / 1;
    max-height: 250px;
}

.hero-brand-strip,
.hero-feature-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-brand-strip span {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-right: 1px solid rgba(255, 59, 48, 0.45);
}

.hero-brand-strip img {
    display: block;
    width: auto;
    max-width: 86%;
    max-height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5));
}

.hero-brand-strip span:last-child,
.hero-feature-strip div:last-child {
    border-right: 0;
}

.hero-feature-strip {
    border-color: rgba(255, 59, 48, 0.55);
}

.hero-feature-strip div {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.9rem;
    border-right: 1px solid rgba(255, 59, 48, 0.45);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-feature-strip i {
    color: #fff;
    font-size: 1.7rem;
}

/* Products/Category Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    min-width: 0;
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,59,48,0.25), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.product-card:hover::after {
    opacity: 1;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 59, 48, 0.35);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 59, 48, 0.12);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.2);
}

.oem-code {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 3px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 100%;
    overflow-wrap: anywhere;
}

.product-info {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
}

.product-category {
    color: var(--primary-red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-title,
.product-desc {
    overflow-wrap: anywhere;
}

/* Sleek Floating Action CTAs */
.floating-ctas-container {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 10002 !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
}
.action-fab {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    max-width: 56px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    flex: 0 0 56px;
}
.action-fab:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.action-fab.wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}
.action-fab.wa:hover {
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}
.action-fab.tel {
    background: linear-gradient(135deg, #ff3b30 0%, #d32f2f 100%);
    box-shadow: 0 10px 25px rgba(255, 59, 48, 0.35);
}
.action-fab.tel:hover {
    box-shadow: 0 15px 35px rgba(255, 59, 48, 0.55);
}

/* Premium Footer */
.glass-footer {
    background: rgba(3, 3, 5, 0.97);
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 0 0;
    margin-top: auto;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
.footer-section h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
    display: inline-block;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-red);
    box-shadow: 0 0 8px var(--primary-red);
}
.footer-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.8rem;
}
.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-section ul li a:hover {
    color: var(--text-light);
    transform: translateX(4px);
}
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}
.contact-icon {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-top: 3px;
    filter: drop-shadow(0 0 5px rgba(255, 59, 48, 0.4));
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    background: #020203;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Forms */
.form-group {
    margin-bottom: 1.8rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.form-control {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-control option {
    background: #121218;
    color: #ffffff;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.15);
}

/* Tables in Admin */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-top: 1rem;
}
th {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 12px 20px;
    font-weight: 700;
}
td {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    vertical-align: middle;
}
tr td:first-child {
    border-left: 1px solid var(--glass-border);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
tr td:last-child {
    border-right: 1px solid var(--glass-border);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Parallax Tilt Graphic Box */
.parallax-box {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s ease;
}

/* Scroll-driven Reveal Animations (Professional AOS Style) */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.92);
}

/* Revealed State */
.reveal.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger Delays for Grid elements */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    .background-overlay {
        background-attachment: scroll;
        background-size: 100% 100%, 100% 100%, 38px 38px, 38px 38px, 8px 8px, 8px 8px, 8px 8px, 8px 8px, cover, cover, cover;
        background-position: center, center, center, center, center, center, center, center, center, center, 42% center;
    }

    .container {
        width: min(100% - 32px, 1240px);
        max-width: calc(100vw - 32px);
        overflow-x: clip;
    }

    main {
        padding: 1.2rem 0 2rem;
    }

    .glass-nav {
        padding: 0.85rem 0;
    }

    .nav-container {
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .logo {
        min-width: 0;
        gap: 9px;
        max-width: calc(100% - 64px);
        flex: 1 1 auto;
    }

    .logo-svg {
        width: 58px;
        height: 43px;
        flex: 0 0 auto;
    }

    .logo-text {
        font-size: clamp(0.82rem, 4.2vw, 1.05rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-subtitle {
        font-size: 0.56rem;
        letter-spacing: 0.14em;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        position: fixed;
        top: 72px !important;
        left: 16px !important;
        right: 16px !important;
        width: auto;
        z-index: 10001 !important;
        background: rgba(5, 5, 8, 0.985);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0.75rem;
        gap: 0.35rem;
        border: 1px solid rgba(255, 59, 48, 0.28);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(0,0,0,0.65);
        align-items: stretch;
        text-align: center;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links a {
        display: block;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
        background: rgba(255,255,255,0.025);
    }
    .menu-toggle {
        display: flex !important;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 59, 48, 0.55);
        border-radius: 12px;
        background: rgba(10, 10, 14, 0.96);
        box-shadow: 0 0 18px rgba(255, 59, 48, 0.15);
        flex: 0 0 46px;
        position: relative;
        z-index: 2200;
        margin-left: auto;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle::before {
        display: none;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 768px) {

    .glass-panel {
        border-radius: 18px;
        padding: 1.5rem !important;
    }

    .hero {
        margin-top: 1rem !important;
        padding: 2.2rem 1.2rem !important;
        gap: 2rem !important;
    }

    .hero-showcase {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin: 0.75rem 0 3.25rem !important;
        border-radius: 12px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
    }

    .hero-showcase-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.6rem 1rem 0.75rem;
        text-align: center;
        overflow: hidden;
    }

    .hero-slogan {
        order: 2;
        padding-top: 0;
    }

    .hero-slogan::after {
        margin: 1rem auto 0;
    }

    .hero-brand-lockup {
        order: 1;
    }

    .hero-brand-logo {
        width: min(140px, 44vw);
    }

    .hero-brand-line strong {
        letter-spacing: 0.16em;
    }

    .hero-brand-lockup p {
        letter-spacing: 0.18em;
        font-size: 0.72rem;
    }

    .hero-brand-lockup p b {
        margin-left: 0.35rem;
        margin-right: 0.35rem;
    }

    .hero-benefits {
        order: 3;
        display: grid;
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .hero-benefits div {
        justify-content: center;
        padding: 0.65rem 0;
        font-size: 0.82rem;
    }

    .hero-product-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        padding: 0.5rem 1rem 1rem;
        min-height: 0;
        overflow: hidden;
    }

    .hero-product img,
    .hero-product-main img,
    .hero-product-small img,
    .hero-product-tall img,
    .hero-product-box img {
        aspect-ratio: 1.15 / 1;
        max-height: 150px;
    }

    .hero-brand-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: hidden;
    }

    .hero-brand-strip span {
        min-height: 54px;
        padding: 0.65rem;
    }

    .hero-brand-strip img {
        max-width: 88%;
        max-height: 36px;
    }

    .hero-brand-strip span:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(255, 59, 48, 0.35);
    }

    .hero-feature-strip {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .hero-feature-strip div {
        min-height: 50px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 59, 48, 0.28);
        font-size: 0.72rem;
        flex-wrap: wrap;
        text-align: center;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(32px);
    }

    .reveal.revealed {
        transform: translateY(0) scale(1);
    }

    .hero > div {
        min-width: 0 !important;
        flex-basis: 100% !important;
    }

    h1,
    .hero h1,
    section h1 {
        font-size: clamp(2rem, 10vw, 2.65rem) !important;
        line-height: 1.12 !important;
        letter-spacing: 0 !important;
    }

    h2,
    section h2 {
        font-size: clamp(1.8rem, 8vw, 2.25rem) !important;
        line-height: 1.16 !important;
        letter-spacing: 0 !important;
    }

    h3,
    section h3 {
        letter-spacing: 0 !important;
    }

    p {
        max-width: 100%;
    }

    .section-badge {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 13px 18px !important;
        text-align: center;
        white-space: normal;
    }

    section {
        margin: 4.5rem 0 !important;
    }

    section [style*="min-width: 320px"],
    div[style*="min-width: 320px"] {
        min-width: 0 !important;
    }

    div[style*="gap: 4rem"],
    section[style*="gap: 4.5rem"] {
        gap: 2rem !important;
    }

    div[style*="height: 450px"] {
        height: min(92vw, 360px) !important;
    }

    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="margin-top: 2rem"] {
        margin-top: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .product-image-container {
        height: 210px;
    }

    .product-info {
        padding: 1.25rem;
    }

    .stats-section-container {
        padding: 3rem 0;
    }

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

    .stat-number {
        font-size: clamp(2rem, 11vw, 2.6rem);
    }

    .stat-label {
        font-size: 0.78rem;
        letter-spacing: 0.03em;
    }

    .testimonials-track {
        gap: 1rem;
        width: 100%;
    }

    .testimonial-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 1.4rem;
        border-radius: 14px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        overflow-wrap: break-word;
    }

    .slider-controls {
        margin-top: 1.5rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .glass-footer {
        padding-top: 3rem;
    }

    .contact-item {
        min-width: 0;
    }

    .contact-item > div:last-child {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .floating-ctas-container {
        position: fixed !important;
        right: max(14px, env(safe-area-inset-right)) !important;
        left: auto !important;
        bottom: max(14px, env(safe-area-inset-bottom)) !important;
        gap: 10px;
        align-items: flex-end;
        width: auto !important;
    }

    .action-fab {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, 1240px);
        max-width: calc(100vw - 24px);
    }

    .logo-text {
        font-size: clamp(0.72rem, 4vw, 0.9rem);
    }

    .logo-subtitle {
        display: none;
    }

    .glass-panel {
        padding: 1.15rem !important;
    }

    .hero {
        padding: 1.6rem 1rem !important;
    }

    .hero h1 br,
    section h2 br {
        display: none;
    }

    div[style*="gap: 3rem"] {
        gap: 1.2rem !important;
    }

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

    .product-image-container {
        height: 190px;
    }

    .product-badge {
        top: 10px;
        right: 10px;
        font-size: 0.68rem;
        padding: 5px 10px;
    }

    .footer-bottom {
        padding: 1.4rem 1rem;
    }
}

/* Admin responsive layout */
.admin-layout,
.admin-content,
.sidebar,
.glass-panel {
    min-width: 0;
}

@media (max-width: 900px) {
    body:has(.admin-layout) {
        display: block;
        overflow-x: hidden;
    }

    .admin-layout {
        flex-direction: column !important;
        min-height: 100vh;
        width: 100%;
    }

    .sidebar {
        width: 100% !important;
        position: sticky;
        top: 0;
        z-index: 200;
        padding: 0.9rem 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--glass-border);
        background: rgba(5, 5, 8, 0.96) !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        max-height: 48vh;
        overflow-y: auto;
    }

    .sidebar-logo {
        padding: 0 1rem 0.85rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 1rem !important;
        line-height: 1.25;
    }

    .admin-brand-logo {
        width: 48px;
        height: 36px;
    }

    .admin-brand-text {
        font-size: 0.86rem;
    }

    .admin-brand-subtitle {
        font-size: 0.7rem;
    }

    .sidebar-menu {
        display: flex;
        flex: none !important;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0 0.85rem 0.5rem;
        scrollbar-width: thin;
    }

    .sidebar-menu + .sidebar-menu {
        padding-top: 0.2rem;
    }

    .sidebar-menu li {
        flex: 0 0 auto;
    }

    .sidebar-menu li a {
        display: inline-flex !important;
        align-items: center;
        gap: 0.45rem;
        padding: 0.7rem 0.9rem !important;
        border-left: 0 !important;
        border-radius: 10px;
        border: 1px solid var(--glass-border);
        background: rgba(255, 255, 255, 0.025);
        white-space: nowrap;
        font-size: 0.88rem;
    }

    .sidebar-menu li a:hover,
    .sidebar-menu li a.active {
        border-color: rgba(255, 59, 48, 0.45) !important;
        background: rgba(255, 59, 48, 0.1) !important;
    }

    .sidebar-menu li a i {
        margin-right: 0 !important;
        width: auto !important;
    }

    .admin-content {
        padding: 1rem !important;
        width: 100%;
        overflow: visible !important;
    }

    .admin-header {
        margin-bottom: 1rem !important;
        padding-bottom: 0.85rem !important;
        align-items: flex-start !important;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .admin-header h2 {
        font-size: clamp(1.45rem, 7vw, 2rem) !important;
        line-height: 1.15;
    }

    .admin-content > div[style*="display: flex"],
    .glass-panel div[style*="display: flex"][style*="gap: 2rem"],
    .admin-content form > div[style*="display: grid"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .admin-content .glass-panel[style*="max-width: 400px"] {
        max-width: none !important;
        width: 100%;
        position: static !important;
        top: auto !important;
    }

    .admin-content .glass-panel {
        width: 100%;
    }

    .admin-content table,
    .admin-content thead,
    .admin-content tbody,
    .admin-content tr,
    .admin-content th,
    .admin-content td {
        display: block;
        width: 100% !important;
    }

    .admin-content table {
        border-spacing: 0;
        margin-top: 1rem;
    }

    .admin-content thead {
        display: none;
    }

    .admin-content tbody {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    .admin-content tr {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid var(--glass-border);
        border-radius: 14px;
        padding: 0.85rem;
    }

    .admin-content td,
    .admin-content tr td:first-child,
    .admin-content tr td:last-child {
        border: 0;
        border-radius: 0;
        background: transparent;
        padding: 0.35rem 0;
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .admin-content td::before {
        display: block;
        margin-bottom: 0.15rem;
        color: var(--text-muted);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .admin-content td:nth-child(1)::before {
        content: "Gorsel";
    }

    .admin-content td:nth-child(2)::before {
        content: "Bilgi";
    }

    .admin-content td:nth-child(3)::before {
        content: "Urun / Islem";
    }

    .admin-content td:nth-child(4)::before {
        content: "Islem";
    }

    .admin-content td[colspan]::before,
    .admin-content td[style*="display: flex"]::before {
        display: none;
    }

    .admin-content td[style*="display: flex"] {
        display: flex !important;
        width: 100% !important;
        min-width: 0;
        gap: 0.6rem !important;
        justify-content: stretch !important;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

    .admin-content td .btn {
        flex: 1 1 120px;
        width: auto;
        min-height: 40px;
        padding: 9px 12px !important;
    }

    .admin-content .product-img-thumb {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .form-control {
        font-size: 16px;
    }

    input[type="file"].form-control {
        padding: 10px;
    }
}

@media (max-width: 560px) {
    .login-box {
        width: min(100% - 24px, 400px) !important;
    }

    .sidebar {
        max-height: 42vh;
    }

    .sidebar-logo {
        white-space: nowrap;
    }

    .admin-content {
        padding: 0.75rem !important;
    }

    .admin-content .glass-panel {
        border-radius: 14px;
    }

    .admin-content th,
    .admin-content td {
        padding: 0.7rem 0.6rem;
    }

    .admin-content td:nth-child(3) {
        min-width: 0;
        overflow-wrap: anywhere;
    }
}
/* Testimonials Slider Styles */
.testimonials-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}
.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.testimonial-card {
    min-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(20, 20, 28, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 2.2rem;
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    border-color: rgba(255, 59, 48, 0.2);
    transform: translateY(-5px);
    background: rgba(20, 20, 28, 0.7);
}
.testimonial-rating {
    color: #ffcc00;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-top: 1rem;
}
.testimonial-company {
    font-size: 0.8rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}
.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.slider-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: var(--neon-glow);
}

/* Statistics Grid Section Styles */
.stats-section-container {
    background: linear-gradient(180deg, rgba(14, 14, 20, 0.4) 0%, rgba(5, 5, 8, 0) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}
.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.stat-icon {
    font-size: 2.2rem;
    color: var(--primary-red);
    filter: drop-shadow(0 0 8px rgba(255, 59, 48, 0.4));
}
.stat-number {
    font-size: 3.2rem;
    font-weight: 950;
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}
.stat-label {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
    }
}
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
    .stats-grid {
        gap: 2.5rem;
    }
}
