* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --accent: #1B6CB5;
    --accent-hover: #154f87;
    --accent-cta: #E8A020;
    --accent-cta-hover: #c8881a;
    --card-bg: #ffffff;
    --nav-bg: #ffffff;
    --border: #e0e0e0;
    --topbar-bg: #2c3e50;

    /* Wave colors for light mode */
    --wave-color-1: #1B6CB5;
    --wave-color-2: #4a90e2;
    --wave-color-3: #f8f9fa;
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --accent: #4a90e2;
    --accent-hover: #357abd;
    --card-bg: #2d2d2d;
    --nav-bg: #242424;
    --border: #404040;
    --topbar-bg: #1a252f;

    /* Wave colors for dark mode */
    --wave-color-1: #1B6CB5;
    --wave-color-2: #4a90e2;
    --wave-color-3: #2d2d2d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

/* Top Bar */
.top-bar {
    background: var(--topbar-bg);
    color: white;
    padding: 0.7rem 5%;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-link:hover {
    color: var(--accent-cta);
}

.top-link i {
    margin-right: 0.5rem;
}

.social-label {
    margin-right: 0.5rem;
    opacity: 0.9;
}

.social-icon {
    color: white;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-cta);
    transform: translateY(-2px);
}

/* Navigation */
nav {
    background: var(--nav-bg);
    padding: 0.8rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s;
}

#navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 55px;
    object-fit: contain;
    display: block;
    filter: brightness(0);
    transition: filter 0.3s;
}

[data-theme="dark"] .logo-img {
    filter: brightness(0) invert(1);
}

.footer-logo-img {
    max-height: 45px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.nav-right {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--accent);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

/* Teklif Al / CTA Button in Nav */
.teklif-btn {
    background: var(--accent-cta);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.teklif-btn:hover {
    background: var(--accent-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 160, 32, 0.4);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0 0.3rem;
}

.lang-btn {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.lang-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Mobile lang switcher */
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 260px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
    max-height: 600px;
    padding: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--accent);
    padding-left: 1.5rem;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--accent);
    font-size: 0.9rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 1rem;
}

.dropdown-all {
    font-weight: 600;
    color: var(--accent);
    justify-content: space-between;
}

.dropdown-all i:last-child {
    margin-left: auto;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    gap: 6px;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.hamburger.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-top: 100px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 3rem;
}

.mobile-nav-links > li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links > li > a {
    display: block;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > a.active {
    color: var(--accent);
}

/* Mobile Dropdown */
.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--bg-secondary);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 700px;
}

.mobile-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-dropdown-menu li a:hover {
    color: var(--accent);
    padding-left: 2rem;
}

.mobile-dropdown-menu li a i {
    color: var(--accent);
    width: 20px;
}

.mobile-all-products {
    font-weight: 600 !important;
    color: var(--accent) !important;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 1rem !important;
}

.mobile-menu-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.mobile-menu-footer p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.mobile-menu-footer p i {
    margin-right: 0.5rem;
    color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(27, 108, 181, 0.4);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27, 108, 181, 0.5);
}

/* Enhanced Footer */
.footer {
    background: var(--nav-bg);
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5% 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-links ul,
.footer-products ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-products li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-products a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i,
.footer-products a i {
    font-size: 0.7rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links a:hover i,
.footer-products a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 0.2rem;
    width: 16px;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: var(--bg-secondary);
    padding: 1.2rem 5%;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* iOS Style Theme Toggle */
.theme-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: 0.4s;
    border-radius: 34px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider:before {
    position: absolute;
    content: "🌙";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

input:checked+.slider:before {
    transform: translateX(30px);
    content: "☀️";
}

.slider:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-secondary);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.breadcrumbs a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   HERO SECTION - Video Background
   ======================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Keep legacy background as fallback */
    background: linear-gradient(135deg, #1B6CB5 0%, #4a90e2 100%);
    padding-bottom: 12rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 850px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   HERO SLIDER
   ======================================== */

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: var(--accent-cta);
    border-color: var(--accent-cta);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--accent-cta);
    border-color: var(--accent-cta);
    transform: scale(1.3);
}

/* Kept for legacy selectors that reference these */
.hero-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-icon-left {
    position: absolute;
    left: 8%;
    top: 25%;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.12);
    animation: float 6s ease-in-out infinite;
}

.hero-icon-right {
    position: absolute;
    right: 8%;
    top: 25%;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.12);
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white !important;
}

.hero-cta-secondary:hover {
    background: var(--accent-cta) !important;
    border-color: var(--accent-cta);
}

/* Wave Separator - Bottom of section */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
    height: 350px;
}

.wave-separator svg {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

/* Wave Separator - Top of section */
.wave-separator-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
    height: 350px;
}

.wave-separator-top svg {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

/* DNA / transition icon styles (kept for compatibility) */
.section-transition-icon {
    position: absolute;
    z-index: 10;
    line-height: 1;
    opacity: 0.25;
    pointer-events: none;
}

.section-transition-icon-left {
    bottom: -10px;
    left: 8%;
    font-size: 300px;
    color: var(--dna-icon-color);
    animation: dnaFloat 6s ease-in-out infinite, dnaRotate 12s ease-in-out infinite, dnaPulse 4s ease-in-out infinite;
}

.section-transition-icon-right {
    bottom: -200px;
    right: 8%;
    font-size: 350px;
    color: var(--dna-icon-color-blue);
    animation: dnaFloat 7s ease-in-out infinite 1s, dnaRotateReverse 14s ease-in-out infinite, dnaPulse 5s ease-in-out infinite 0.5s;
}

:root {
    --dna-icon-color: rgba(255, 255, 255, 0.9);
    --dna-icon-color-blue: rgba(27, 108, 181, 0.9);
}

[data-theme="dark"] {
    --dna-icon-color: rgba(92, 163, 245, 0.9);
    --dna-icon-color-blue: rgba(107, 179, 255, 0.9);
}

@keyframes dnaFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

@keyframes dnaRotate {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-30px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes dnaRotateReverse {
    0%, 100% { transform: translateY(0px) rotate(5deg); }
    25% { transform: translateY(-20px) rotate(-5deg); }
    50% { transform: translateY(-35px) rotate(5deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes dnaPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.35; }
}

/* Wave gradient stops */
.wave-stop-1 {
    stop-color: var(--wave-color-1);
    stop-opacity: 1;
}

.wave-stop-2 {
    stop-color: var(--wave-color-2);
    stop-opacity: 1;
}

.wave-stop-3 {
    stop-color: var(--wave-color-3);
    stop-opacity: 1;
}

/* Section Positioning for Waves */
.hero,
.about-section,
.features,
.vision-mission,
.products,
.contact {
    position: relative;
}

/* About Section */
.about-section {
    background: var(--bg-secondary);
    padding-top: 5rem;
    margin-top: -10vh;
    position: relative;
    z-index: 2;
}

.features {
    padding: 1rem 5% 5rem;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 3;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Vision/Mission Section */
.vision-mission {
    padding: 5rem 5% 5rem;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.vm-card h2 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.vm-card h2 i {
    margin-right: 0.5rem;
}

.vm-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 5rem 5% 6rem;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
    z-index: 3;
}

.product-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1B6CB5 0%, #4a90e2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.product-link:hover {
    color: var(--accent-hover);
}

.product-link i {
    margin-left: 0.3rem;
}

/* Owl Carousel Custom Styling */
.owl-stage-outer {
    padding-bottom: 40px;
}

.owl-theme .owl-nav {
    margin-top: 20px;
    display: none;
}

.owl-theme .owl-nav [class*='owl-'] {
    background: var(--accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--border);
    width: 12px;
    height: 12px;
    transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--accent);
    transform: scale(1.3);
}

/* ========================================
   E-KATALOG SECTION
   ======================================== */
.ekatalog-section {
    padding: 5rem 5%;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.ekatalog-container {
    max-width: 1300px;
    margin: 0 auto;
}

.ekatalog-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.ekatalog-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.catalog-group {
    margin-bottom: 3.5rem;
}

.catalog-group-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.books-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.book-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    cursor: pointer;
}

.book-3d {
    width: 130px;
    height: 180px;
    perspective: 800px;
}

.book-cover {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(800px) rotateY(-15deg);
    transition: transform 0.4s ease;
    border-radius: 0 8px 8px 0;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.3);
}

.book-card:hover .book-cover {
    transform: perspective(800px) rotateY(-30deg) translateX(5px);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
}

.book-front {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0 8px 8px 0;
    padding: 1rem;
}

.book-spine {
    position: absolute;
    left: -12px;
    top: 0;
    width: 12px;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px 0 0 4px;
    transform: rotateY(-90deg);
    transform-origin: right;
}

.book-front i {
    font-size: 2.5rem;
    color: white;
}

.book-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.3;
}

.book-lang {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
}

.book-download-btn {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border: 1.5px solid var(--accent);
    border-radius: 20px;
    transition: all 0.2s;
}

.book-card:hover .book-download-btn {
    background: var(--accent);
    color: white;
}

/* Contact Section - Split Layout */
.contact {
    padding: 5rem 5%;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 600px;
}

.contact-info-side {
    padding: 3rem;
    background: var(--card-bg);
}

.contact-intro {
    margin-bottom: 2.5rem;
}

.contact-intro h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #4a90e2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.contact-item-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-content a:hover {
    color: var(--accent);
}

.contact-social-icons {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.social-circle.facebook { background: #1877f2; }
.social-circle.facebook:hover { background: #0d396f; transform: translateY(-3px); }
.social-circle.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-circle.instagram:hover { background: linear-gradient(45deg, #d87e2d 0%, #d15a30 25%, #c41f39 50%, #b31d5a 75%, #a3127a 100%); transform: translateY(-3px); }
.social-circle.twitter { background: #000000; }
.social-circle.twitter:hover { background: #333333; transform: translateY(-3px); }
.social-circle.linkedin { background: #0077b5; }
.social-circle.linkedin:hover { background: #005885; transform: translateY(-3px); }
.social-circle.youtube { background: #ff0000; }
.social-circle.youtube:hover { background: #cc0000; transform: translateY(-3px); }

.contact-social-icons a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-social-item {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-map-side {
    position: relative;
    min-height: 600px;
}

.contact-map-side iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 20px 20px 0;
    transition: filter 0.3s;
}

[data-theme="dark"] .contact-map-side iframe {
    filter: invert(90%) hue-rotate(180deg);
}

/* Custom Buttons */
.custom-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.custom-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.custom-btn-small {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s;
}

.custom-btn-small:hover {
    background: var(--accent);
    color: white;
}

/* Active Link Styling */
.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .teklif-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .lang-switcher {
        display: none;
    }

    .nav-right {
        gap: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .hero-arrow-prev { left: 0.8rem; }
    .hero-arrow-next { right: 0.8rem; }

    .hero-dots {
        bottom: 5rem;
    }

    .hero-icon-left,
    .hero-icon-right {
        font-size: 3rem;
    }

    .hero-icon-left {
        left: 3%;
        top: 20%;
    }

    .hero-icon-right {
        right: 3%;
        top: 20%;
    }

    .wave-separator,
    .wave-separator-top {
        height: 200px;
    }

    .section-transition-icon-left {
        font-size: 150px;
        bottom: -5px;
        left: 5%;
    }

    .section-transition-icon-right {
        font-size: 180px;
        bottom: -100px;
        right: 5%;
    }

    .about-section {
        margin-top: -5vh;
        padding-top: 12rem;
    }

    .vm-container {
        grid-template-columns: 1fr;
    }

    .contact-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-info-side {
        padding: 2rem;
    }

    .contact-map-side {
        min-height: 400px;
    }

    .contact-map-side iframe {
        border-radius: 0 0 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a,
    .footer-products a {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .books-grid {
        justify-content: center;
    }

    .book-card {
        width: 130px;
    }

    .book-3d {
        width: 110px;
        height: 155px;
    }
}

@media (max-width: 480px) {
    .top-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-left {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.8rem;
    }

    .contact-intro h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-nav-links > li > a {
        font-size: 1.3rem;
        padding: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.88rem;
    }

    .hero-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .hero-dots {
        bottom: 4rem;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .books-grid {
        gap: 1rem;
    }

    .book-card {
        width: 110px;
    }

    .book-3d {
        width: 95px;
        height: 135px;
    }

    .book-front i {
        font-size: 2rem;
    }

    .book-title {
        font-size: 0.62rem;
    }

    .ekatalog-section h2 {
        font-size: 1.7rem;
    }

    .catalog-group-title {
        font-size: 1rem;
    }
}

/* ========================================
   SUB-PAGES CSS
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--topbar-bg) 0%, var(--accent) 100%);
    color: white;
    padding: 6rem 5% 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Content Container */
.page-content {
    padding: 4rem 5%;
    background: var(--bg-primary);
    min-height: 60vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Page Styles */
.about-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.values-list i {
    color: var(--accent);
    margin-right: 10px;
}

.placeholder-img {
    width: 100%;
    height: 300px;
    background: var(--card-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section h2 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
}

.team-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Products Grid (Full Page) */
.products-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* ========================================
   PRODUCT DETAIL PAGE STYLES
   ======================================== */
.product-detail-section {
    padding: 3rem 5%;
    background: var(--bg-primary);
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #1B6CB5 0%, #4a90e2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    transition: transform 0.5s ease;
}

.main-image.slide-left {
    animation: slideLeft 0.5s ease forwards;
}

.main-image.slide-right {
    animation: slideRight 0.5s ease forwards;
}

@keyframes slideLeft {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 1rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.gallery-prev { left: 15px; }
.gallery-next { right: 15px; }

.thumbnail-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B6CB5 0%, #4a90e2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(27, 108, 181, 0.4);
}

.product-info {
    padding: 1rem 0;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #4a90e2 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-short-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-specs {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.spec-item:last-child { border-bottom: none; padding-bottom: 0; }
.spec-item:first-child { padding-top: 0; }

.spec-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.spec-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.spec-value.in-stock { color: #27ae60; }
.spec-value.in-stock i { font-size: 0.6rem; margin-right: 0.3rem; animation: pulse 2s infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #4a90e2 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(27, 108, 181, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(27, 108, 181, 0.5);
}

.secondary-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.secondary-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.product-description-section {
    padding: 4rem 5%;
    background: var(--bg-secondary);
}

.description-container {
    max-width: 1000px;
    margin: 0 auto;
}

.description-container h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.description-container h2 i { color: var(--accent); }

.description-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.description-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.description-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.description-content h3:first-of-type {
    border-top: none;
    padding-top: 0;
}

.description-content ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.description-content ul li {
    color: var(--text-secondary);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

.description-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.related-products-section {
    padding: 4rem 5%;
    background: var(--bg-primary);
}

.related-container {
    max-width: 1400px;
    margin: 0 auto;
}

.related-container h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.related-container h2 i { color: var(--accent); }

.related-carousel { margin: 0 -10px; }
.related-carousel .product-card { margin: 10px; }
.related-carousel.owl-theme .owl-dots { margin-top: 30px; }

/* ========================================
   PRODUCT DETAIL RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-gallery {
        position: relative;
        top: 0;
    }
    .main-image {
        height: 350px;
        font-size: 6rem;
    }
    .gallery-nav {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-detail-section { padding: 2rem 5%; }
    .main-image { height: 300px; font-size: 5rem; }
    .gallery-nav { font-size: 1.8rem; padding: 0.8rem; }
    .gallery-prev { left: 10px; }
    .gallery-next { right: 10px; }
    .thumbnail { width: 60px; height: 60px; font-size: 1.4rem; }
    .thumbnail-container { gap: 0.8rem; }
    .product-title { font-size: 2rem; }
    .product-short-desc { font-size: 1rem; }
    .product-actions { flex-direction: column; }
    .action-btn { width: 100%; justify-content: center; }
    .description-content { padding: 2rem; }
    .breadcrumbs-container { font-size: 0.85rem; }
    .about-detail-grid { grid-template-columns: 1fr; }
    .page-header { padding: 5rem 5% 3rem; }
    .page-header h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .main-image { height: 250px; font-size: 4rem; }
    .gallery-nav { font-size: 1.5rem; padding: 0.5rem; }
    .gallery-prev { left: 5px; }
    .gallery-next { right: 5px; }
    .thumbnail { width: 50px; height: 50px; font-size: 1.2rem; }
    .thumbnail-container { gap: 0.5rem; }
    .product-title { font-size: 1.6rem; }
    .spec-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .description-content { padding: 1.5rem; }
    .description-content p,
    .description-content ul li { font-size: 0.95rem; }
}
