
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@300;500;700;900&display=swap');

/* LIGHT THEME VARIABLES */
:root {
    --bg-color: #F8F9FA;
    --surface-color: #FFFFFF;
    --accent-color: #ff8e14;
    --accent-hover: #e07a00;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --border-color: #E5E5E5;
    --header-text: #FFFFFF;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif; 
    line-height: 1.6;
    overflow-x: hidden;
}

#main-header {
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s, padding 0.3s;
}
#main-header.scrolled {
    background: rgba(248, 249, 250, 0.95);
    padding: 15px 5%;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: none;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 32px;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    filter: invert(1) brightness(2);
    margin-bottom: 15px;
    display: block;
    transition: var(--transition);
}

.footer-logo-img:hover {
    filter: invert(1) brightness(2) sepia(1) saturate(3) hue-rotate(5deg);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul { display: flex; list-style: none; gap: 30px; }
nav ul li { position: relative; }
nav a { color: var(--text-primary); text-decoration: none; font-size: 12px; letter-spacing: 2px; transition: var(--transition); font-weight: 500; opacity: 0.7; }
nav a:hover { opacity: 1; color: var(--accent-color); }

.nav-dropdown-trigger > a::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: var(--transition);
}

.nav-dropdown-trigger:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    pointer-events: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.nav-dropdown-trigger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #888;
    opacity: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-left: 2px solid transparent;
}

.dropdown-menu a i {
    font-size: 13px;
    width: 18px;
    text-align: center;
    color: #555;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--text-primary);
    background: rgba(166, 124, 82, 0.08);
    border-left-color: var(--accent-color);
    padding-left: 28px;
}

.dropdown-menu a:hover i {
    color: var(--accent-color);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 8px 0;
}

.dropdown-menu .dropdown-all {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
}

.btn-login {
    border: 1px solid var(--accent-color);
    padding: 10px 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    transition: var(--transition);
    font-weight: 600;
}

.btn-login:hover {
    background: var(--accent-color);
    color: var(--text-primary);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 8% 80px 8%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&q=80') center/cover;
}

.hero-content {
    max-width: 800px;
}

.hero h1 { font-size: 55px; font-weight: 900; line-height: 1.1; margin-bottom: 10px; text-transform: uppercase; color: #FFFFFF; }
.hero p { font-size: 16px; letter-spacing: 2px; color: var(--accent-color); font-weight: 500; }

.category-strips { display: flex; height: 700px; width: 100%; border-top: 1px solid var(--border-color); background: #f8f9fa; }
.strip { flex: 1; position: relative; overflow: hidden; transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); border-right: 1px solid rgba(0,0,0,0.1); text-decoration: none; cursor: pointer; }
.strip:hover { flex: 6; }
.strip-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: all 0.6s ease; filter: grayscale(100%); transform: scale(1.05); }
.strip:hover .strip-bg { filter: grayscale(0%); transform: scale(1); }
.strip-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.25); transition: all 0.5s ease; opacity: 1; z-index: 2; pointer-events: none; }
.strip:hover .strip-overlay { background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 80%); }

.strip-vertical-title {
    position: absolute;
    bottom: 30px;
    left: calc(100% - 35px);
    transform-origin: 0 50%;
    transform: rotate(-90deg);
    white-space: nowrap;
    transition: all 0.4s ease;
    z-index: 5;
    pointer-events: none;
    opacity: 1;
}
.strip-vertical-title h3 { font-size: 16px; letter-spacing: 4px; text-transform: uppercase; color: #FFF; font-weight: 700; opacity: 1; text-shadow: 0px 2px 10px rgba(0,0,0,0.4); }
.strip:hover .strip-vertical-title { opacity: 0; visibility: hidden; }

.strip-active-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 10;
    width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transition-delay: 0s;
}
.strip:hover .strip-active-content { opacity: 1; visibility: visible; transition-delay: 0.2s; }

.strip-number { font-size: 60px; font-weight: 900; color: var(--accent-color); line-height: 1; margin-bottom: 10px; font-family: 'Outfit', sans-serif; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.strip-title-active { font-size: 32px; font-weight: 700; color: #FFF; margin-bottom: 15px; letter-spacing: 1px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.strip-desc { font-size: 14px; color: #EEE; margin-bottom: 30px; line-height: 1.6; max-width: 400px; margin-left: 0; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
.strip-btn { display: inline-block; padding: 12px 30px; border: 1px solid var(--accent-color); color: #FFF; font-size: 12px; font-weight: 600; letter-spacing: 2px; transition: var(--transition); text-transform: uppercase; }
.strip-btn:hover { background: var(--accent-color); color: #FFF; }

.features { padding: 120px 8%; display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; }
.features h2 { font-size: 55px; font-weight: 900; line-height: 1.1; margin-bottom: 25px; }
.features p { font-size: 16px; color: var(--text-secondary); }

.project-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
}

.project-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }

.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(248, 249, 250, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover img { transform: scale(1.1); }

.btn-view {
    border: 1px solid #fff;
    padding: 10px 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-view:hover { background: var(--accent-color); color: #fff; }

footer {
    background: #050505;
    padding: 80px 8% 40px;
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-info { max-width: 400px; }
.footer-info .logo { margin-bottom: 15px; display: block; }
.footer-info p { font-size: 13px; color: #555; }

.footer-columns { display: flex; gap: 100px; }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; color: var(--accent-color); margin-bottom: 25px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; font-size: 12px; color: #888; display: flex; align-items: center; gap: 10px; }
.footer-col ul li a { color: #888; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--text-primary); }

.copyright { text-align: center; font-size: 10px; color: var(--text-secondary); border-top: 1px solid var(--border-color); padding-top: 30px; }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--text-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    text-decoration: none;
    transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

.form-container {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    background: var(--surface-color);
    border: 1px solid  var(--border-color);
    padding: 0;
    overflow: hidden;
}

.form-tabs {
    display: flex;
    border-bottom: 1px solid  var(--border-color);
}

.tab {
    flex: 1;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    transition: 0.3s;
    background: var(--bg-color);
    color: #444;
}

.tab.active {
    background: var(--surface-color);
    color: var(--accent-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #555;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    background: var(--bg-color);
    border: 1px solid  var(--border-color);
    padding: 12px 15px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-color);
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input { width: 100%; padding-right: 40px; }

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #444;
    font-size: 14px;
}

.kvkk-check-wrapper {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.btn-submit {
    grid-column: span 2;
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    padding: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-submit:hover { background: var(--accent-hover); }

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(248, 249, 250, 0.95);
}

.modal-content {
    background: var(--surface-color);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid  var(--border-color);
    width: 50%;
    max-height: 70vh;
    overflow-y: auto;
}

.btn-approve-kvkk {
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
}

.reveal { opacity: 0; transform: translateY(30px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

.product-wrap {
    padding: 140px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-breadcrumb {
    font-size: 11px;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 35px;
}

.product-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.product-breadcrumb a:hover { color: var(--accent-color); }

.product-breadcrumb span { color: #333; margin: 0 8px; }

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start; /* Instead of stretch */
}

.product-left-col {
    position: relative;
}

.product-right-col {
    position: relative;
}

.product-right-col-inner {
    display: flex;
    flex-direction: column;
}

.product-header-fixed {
    flex-shrink: 0;
    margin-bottom: 20px;
}

.product-specs-scroll {
    flex: 1;
    min-height: 0; /* Allow scrolling */
    overflow-y: auto;
    padding-right: 15px;
}

.product-specs-scroll::-webkit-scrollbar { width: 6px; }
.product-specs-scroll::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.product-gallery-main {
    width: 100%;
    border: 1px solid var(--border-color);
    display: block;
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--bg-color);
}

.product-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.product-thumbs img {
    width: calc(20% - 8px);
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    opacity: 0.55;
    cursor: pointer;
    transition: var(--transition);
}

.product-thumbs img:hover,
.product-thumbs img.active { opacity: 1; border-color: var(--accent-color); }

.product-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-lead {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 520px;
}

.product-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.product-icon-item {
    text-align: center;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.product-icon-item i {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.product-panel {
    background: var(--surface-color);
    padding: 28px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.product-panel h3 {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.product-panel p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.product-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    transition: var(--transition);
}

.btn-pdf:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.spec-table {
    width: 100%;
    font-size: 12px;
    color: var(--text-secondary);
    border-collapse: collapse;
}

.spec-table td {
    padding: 10px 0;
    border-bottom: 1px solid  var(--border-color);
}

.spec-table td:last-child { text-align: right; color: #aaa; }
.spec-table td.auto-calc { color: var(--accent-color); font-weight: 600; }

.box-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.box-content-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid  var(--border-color);
    font-size: 13px;
    color: #aaa;
}
.box-content-list li:last-child { border-bottom: none; }
.box-content-list li i { color: var(--accent-color); font-size: 11px; flex-shrink: 0; }

.variation-block { margin-top: 70px; }

.variation-block .section-title {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 22px;
    text-transform: uppercase;
}

.variation-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    background: var(--surface-color);
}

.variation-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.variation-table thead {
    background: var(--bg-color);
}

.variation-table th {
    text-align: left;
    padding: 14px 12px;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.variation-table td {
    padding: 12px;
    border-bottom: 1px solid #151515;
    color: var(--text-secondary);
}

.variation-table tbody tr:hover { background: rgba(166, 124, 82, 0.06); }

.variation-table td.price-cell {
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
}

.qty-input {
    width: 64px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    outline: none;
}

.qty-input:focus { border-color: var(--accent-color); }

.variation-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.btn-add-cart {
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--text-primary);
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--accent-color);
    color: var(--text-primary);
}

.cross-sell {
    margin-top: 90px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.cross-sell h2 {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cross-card {
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    background: var(--surface-color);
}

.cross-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.cross-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.cross-card div {
    padding: 18px;
}

.cross-card h4 {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.cross-card p {
    font-size: 11px;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .product-layout { grid-template-columns: 1fr; }
    .product-specs-grid { grid-template-columns: 1fr; }
    .cross-sell-grid { grid-template-columns: 1fr; }
}

.inner-page {
    padding: 140px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-intro {
    margin-bottom: 60px;
    max-width: 800px;
}

.page-intro h1 {
    font-size: clamp(32px, 5vw, 55px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-intro p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.page-intro .eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border: 1px solid var(--border-color);
    background: var(--surface-color);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    background: var(--surface-color);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: var(--transition);
}

.blog-card:hover img { filter: grayscale(0%); }

.blog-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 10px; letter-spacing: 2px; color: #555; margin-bottom: 15px; }
.blog-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 15px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.read-more { font-size: 11px; letter-spacing: 2px; color: var(--accent-color); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }

.ref-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ref-list-card {
    text-decoration: none;
    color: inherit;
}

.ref-img-wrap {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.ref-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }

.ref-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(248, 249, 250, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.ref-list-card:hover .ref-overlay { opacity: 1; }
.ref-list-card:hover .ref-img-wrap img { transform: scale(1.1); }

.ref-info .ref-category { font-size: 10px; letter-spacing: 3px; color: var(--accent-color); display: block; margin-bottom: 8px; }
.ref-info h3 { font-size: 22px; font-weight: 700; text-transform: uppercase; }

.project-info-strip {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.info-item span { display: block; font-size: 10px; color: #555; letter-spacing: 2px; margin-bottom: 5px; }
.info-item { font-size: 13px; font-weight: 600; }

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    margin: 60px 0;
}

.article-wrap {
    padding: 180px 5% 100px;
    max-width: 900px;
    margin: 0 auto;
}

.article-header { margin-bottom: 50px; }
.article-meta { font-size: 11px; letter-spacing: 2px; color: var(--accent-color); margin-bottom: 15px; }
.article-header h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.1; }

.article-cover {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
}

.article-body { font-size: 17px; line-height: 1.85; color: #ccc; }
.article-body p { margin-bottom: 25px; }
.article-body h2 { color: var(--text-primary); font-size: 24px; margin: 50px 0 20px; font-weight: 700; }
.article-body ul { margin-bottom: 25px; padding-left: 20px; }
.article-body li { margin-bottom: 10px; }

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-list-grid { grid-template-columns: 1fr; }
    .project-info-strip { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

.reference-detail-wrap {
    padding: 140px 5% 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.reference-detail-wrap .lead {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 28px 0 40px;
    max-width: 800px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.detail-meta-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 18px;
}

.detail-meta-item span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.detail-meta-item strong {
    font-size: 13px;
    font-weight: 600;
}

.video-embed-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    background: var(--bg-color);
}

.video-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.detail-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.back-link:hover { color: var(--accent-hover); }

@media (max-width: 1024px) {
    .detail-meta-grid { grid-template-columns: 1fr 1fr; }
    .detail-gallery { grid-template-columns: 1fr; }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(166, 124, 82, 0.1);
}

.category-card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    filter: grayscale(60%) brightness(0.25);
}

.category-card:hover .category-card-bg {
    filter: grayscale(0%) brightness(0.35);
    transform: scale(1.08);
}

.category-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

.category-card-content {
    position: absolute;
    bottom: 0; left: 0;
    padding: 30px;
    z-index: 2;
    width: 100%;
}

.category-card-content i {
    font-size: 26px;
    color: var(--accent-color);
    margin-bottom: 14px;
    display: block;
    transition: var(--transition);
}

.category-card:hover .category-card-content i {
    transform: translateY(-4px);
}

.category-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.category-card-content p {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 260px;
}

.hero-slide .hero-content p {
    font-size: 55px;
    line-height: 1.1;
    margin-top: 10px;
    color: var(--text-primary);
    text-transform: uppercase;
    font-weight: 900;
}

.category-count {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 1200px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } .category-card { height: 300px; } }
@media (max-width: 480px) { .categories-grid { grid-template-columns: 1fr; } }

.catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 100px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 24px 0;
}

.sidebar-title {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--accent-color);
    padding: 0 20px 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    opacity: 1;
}

.sidebar-nav a i {
    font-size: 13px;
    width: 18px;
    text-align: center;
    color: #444;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    color: var(--text-primary);
    background: rgba(166, 124, 82, 0.06);
    border-left-color: rgba(166, 124, 82, 0.3);
}

.sidebar-nav a.active {
    color: var(--text-primary);
    background: rgba(166, 124, 82, 0.1);
    border-left-color: var(--accent-color);
    font-weight: 600;
}

.sidebar-nav a.active i,
.sidebar-nav a:hover i {
    color: var(--accent-color);
}

.catalog-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.product-result-count {
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
}

.sort-select {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: #888;
    padding: 8px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.sort-select:focus { border-color: var(--accent-color); color: var(--text-primary); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-grid-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: block;
    overflow: hidden;
}

.product-grid-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.pgc-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.pgc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.product-grid-card:hover .pgc-img-wrap img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.pgc-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(248, 249, 250, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.product-grid-card:hover .pgc-overlay { opacity: 1; }

.pgc-overlay span {
    border: 1px solid #fff;
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-primary);
    font-weight: 600;
}

.pgc-body {
    padding: 20px;
}

.pgc-code {
    font-size: 10px;
    letter-spacing: 2px;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

.pgc-body h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.pgc-price {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { position: static; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .prod-card-title { font-size: 11px; }
    .prod-card-price { font-size: 14px; }
    .prod-card-btn { padding: 8px; font-size: 10px; }
}

.article-hero { padding-top: 120px; }

@media (max-width: 768px) {
    .hero {
        padding: 0 5% 100px 5%;
    }
    .hero h1 {
        font-size: 35px;
        line-height: 1.2;
    }
    .hero p {
        font-size: 13px;
    }
    .hero-slide .hero-content p {
        font-size: 35px;
    }
}

.product-gallery-main { cursor: zoom-in; }

/* ==========================================================================
   MOBIL RESPONSIVE OPTIMIZASYONU
   ========================================================================== */

/* Masaüstünde mobil butonları gizle */
.mobile-menu-toggle,
.mobile-menu-close {
    display: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 1024px) {
    /* Mobil Toggle Butonu */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--text-primary);
        font-size: 22px;
        cursor: pointer;
        z-index: 1001;
        transition: var(--transition);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--border-color);
    }
    
    .mobile-menu-toggle:hover {
        background: var(--surface-color);
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

    /* Mobil Kapatma Butonu */
    .mobile-menu-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 25px;
        right: 25px;
        background: transparent;
        border: none;
        color: #888;
        font-size: 22px;
        cursor: pointer;
        transition: var(--transition);
    }
    .mobile-menu-close:hover {
        color: var(--text-primary);
    }

    /* Nav Drawer (Sürgülü Çekmece Menü) */
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%; /* Ekranın sağında gizli */
        width: 300px;
        height: 100vh;
        background: var(--bg-color);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
        padding: 90px 30px 40px;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 35px !important;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 9999;
        overflow-y: auto;
        margin-left: 0 !important;
    }
    
    .nav-container.mobile-active {
        right: 0 !important; /* Menü açılır */
    }

    /* Menü Listesi */
    nav {
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        gap: 18px !important;
        width: 100%;
    }
    nav ul li {
        width: 100%;
    }
    nav a {
        font-size: 13px !important;
        display: block;
        padding: 6px 0;
        width: 100%;
        opacity: 0.8;
        border-bottom: 1px solid var(--border-color);
    }
    nav a:hover {
        opacity: 1;
        border-bottom-color: var(--accent-color);
    }

    /* Ürünler Açılır Menü (Dropdown) Düzeni */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
        padding: 5px 0 5px 15px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    .dropdown-menu a {
        padding: 8px 12px !important;
        font-size: 11px !important;
        border-left: 1px solid var(--border-color) !important;
    }
    .dropdown-menu a:hover {
        padding-left: 16px !important;
        background: transparent !important;
    }
    
    .nav-dropdown-trigger > a::after {
        display: none !important; /* Küçük ok simgesini mobilde gizle veya yanına al */
    }

    /* Header Aksiyonları (Arama, Sepet, Giriş, Dil) */
    .header-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        margin-left: 0 !important;
        margin-top: 10px;
        gap: 20px !important;
    }
    
    #cart-drawer {
        width: 300px !important;
        max-width: 85vw !important;
        right: -300px;
    }
    #cart-drawer.active {
        right: 0 !important;
    }

    
    .search-form {
        width: 100%;
        justify-content: space-between;
        padding: 8px 15px !important;
    }
    .search-form input {
        width: 100% !important;
    }

    .cart-icon {
        font-size: 18px;
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-primary);
    }
    .cart-icon::after {
        content: 'SEPETİM';
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 500;
        color: #888;
    }
    .cart-icon:hover::after {
        color: var(--accent-color);
    }

    .btn-login {
        text-align: center;
        width: 100%;
        padding: 12px 25px !important;
    }
    
    .lang-selector {
        width: 100%;
    }
    .lang-selector #current-lang {
        justify-content: center;
        width: 100%;
        padding: 10px 15px !important;
    }
    .lang-drop {
        width: 100% !important;
        position: static !important;
        margin-top: 5px;
        box-shadow: none !important;
    }
}

@media (max-width: 768px) {
    /* 1. Kategori Şeritleri Mobil Düzeni */
    .category-strips {
        flex-direction: column !important;
        height: auto !important;
        border-top: none;
    }
    
    .strip {
        width: 100% !important;
        height: 120px !important;
        border-right: none !important;
        border-bottom: 1px solid var(--surface-color) !important;
        flex: none !important;
    }
    
    .strip:hover {
        flex: none !important;
    }
    
    .strip-bg {
        filter: grayscale(40%) brightness(0.5) !important; /* Dokunmatik ekranlarda görsellerin görünebilmesi için */
    }
    
    .strip-vertical-title {
        left: 50% !important;
        bottom: 50% !important;
        transform: translate(-50%, 50%) rotate(0) !important;
        transform-origin: center center !important;
    }
    .strip-vertical-title h3 {
        font-size: 14px !important;
        letter-spacing: 2px !important;
    }
    .strip:hover .strip-vertical-title {
        opacity: 1 !important;
        visibility: visible !important;
    }
    .strip-active-content {
        display: none !important;
    }

    /* 2. Footer Mobil Düzeni */
    .footer-main {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 40px !important;
        padding: 40px 5% !important;
    }
    
    .footer-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-right {
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
        width: 100% !important;
    }
    
    .footer-col {
        min-width: 100% !important;
        text-align: center !important;
    }
    
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col ul li {
        justify-content: center;
    }

    /* 3. Kayıt Ol / Giriş Yap Formları Mobil Düzeni */
    .form-container {
        margin: 20px 10px !important;
        width: calc(100% - 20px) !important;
    }
    
    .form-grid {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
        gap: 15px !important;
    }
    
    .form-group,
    .form-grid > div {
        grid-column: span 1 !important;
        min-width: 0 !important;
    }
    
    .form-group label {
        white-space: normal !important;
        word-break: break-word !important;
    }
    
    .kvkk-check-wrapper {
        grid-column: span 1 !important;
        align-items: flex-start !important;
    }
    
    .btn-submit {
        grid-column: span 1 !important;
        padding: 12px !important;
        width: 100% !important;
    }
    
    .tab {
        padding: 12px 2px !important;
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
    }
    
    .modal-content {
        width: 90% !important;
        padding: 20px !important;
        margin: 20% auto !important;
    }
}

/* ==========================================
   CART DRAWER & VAT ACCENTS (VIXO PREMIUM)
   ========================================== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--surface-color);
    border-left: 1px solid  var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid  var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-primary);
}
.cart-drawer-close {
    background: transparent;
    border: none;
    color: #888;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.cart-drawer-close:hover {
    color: var(--accent-color);
}

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-drawer-empty {
    text-align: center;
    color: #666;
    margin: auto;
    font-size: 14px;
    letter-spacing: 1px;
}

.cart-drawer-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #141414;
    position: relative;
}
.cart-drawer-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    background: var(--surface-color);
    border: 1px solid  var(--border-color);
}
.cart-drawer-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cart-drawer-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}
.cart-drawer-item-title:hover {
    color: var(--accent-color);
}
.cart-drawer-item-meta {
    font-size: 11px;
    color: #555;
    letter-spacing: 0.5px;
}
.cart-drawer-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}
.cart-drawer-qty-select {
    display: flex;
    align-items: center;
    border: 1px solid  var(--border-color);
    background: var(--surface-color);
}
.cart-drawer-qty-btn {
    background: transparent;
    border: none;
    color: #888;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}
.cart-drawer-qty-btn:hover {
    color: var(--text-primary);
}
.cart-drawer-qty-input {
    width: 32px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
}
.cart-drawer-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
}
.cart-drawer-item-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: #444;
    cursor: pointer;
    font-size: 12px;
    transition: color 0.3s;
}
.cart-drawer-item-remove:hover {
    color: #FF4D4D;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cart-drawer-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #888;
}
.cart-drawer-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid  var(--border-color);
    padding-top: 12px;
}
.cart-drawer-summary-row span.kdv-detail {
    font-size: 11px;
    color: #555;
}
.cart-drawer-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.cart-drawer-btn {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cart-drawer-btn.secondary {
    border: 1px solid  var(--border-color);
    color: var(--text-primary);
    background: var(--surface-color);
}
.cart-drawer-btn.secondary:hover {
    background: var(--surface-color);
    border-color: #333;
}
.cart-drawer-btn.primary {
    background: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
}
.cart-drawer-btn.primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* KDV Badges and Info Text */
.kdv-info-label {
    font-size: 11px;
    color: #666;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.kdv-badge {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(166, 124, 82, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(166, 124, 82, 0.2);
    font-size: 10px;
    font-weight: 600;
    border-radius: 2px;
    margin-left: 6px;
    vertical-align: middle;
}



/* NEW HEADER LIGHT THEME OVERRIDES */
#main-header {
    background: var(--surface-color) !important;
    backdrop-filter: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#main-header nav > ul > li > a, #main-header .cart-icon {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

#main-header .btn-login, #main-header #current-lang {
    background: var(--accent-color) !important;
    border: 1px solid var(--accent-color) !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    border-radius: 4px;
}

#main-header nav > ul > li > a:hover, #main-header .cart-icon:hover {
    color: var(--accent-color) !important;
}

#main-header .btn-login:hover, #main-header #current-lang:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: #FFFFFF !important;
}

#main-header .logo-img, .footer-logo-img {
    filter: none;
    transition: all 0.3s;
}

/* When scrolled */
#main-header.scrolled {
    background: var(--surface-color) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#main-header.scrolled nav > ul > li > a, #main-header.scrolled .cart-icon {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

#main-header.scrolled .btn-login, #main-header.scrolled #current-lang {
    background: var(--accent-color) !important;
    border: 1px solid var(--accent-color) !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
}

#main-header.scrolled nav > ul > li > a:hover, #main-header.scrolled .cart-icon:hover {
    color: var(--accent-color) !important;
}

#main-header.scrolled .btn-login:hover, #main-header.scrolled #current-lang:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: #FFFFFF !important;
}

#main-header.scrolled .logo-img {
    filter: none; /* Return logo to original color (black/brown) on white bg */
}

/* Overriding specific components */
.footer { background: var(--surface-color); color: var(--text-secondary); border-top: 1px solid var(--border-color); }
.footer-col ul li a { color: var(--text-secondary); }
.footer-col ul li a:hover { color: var(--accent-color); }

/* DROPDOWN MENU LIGHT THEME */
.dropdown-menu {
    background: var(--surface-color) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
}

.dropdown-menu a {
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.dropdown-menu a:hover {
    background: var(--bg-color) !important;
    color: var(--accent-color) !important;
}

/* PRODUCT CARD LIGHT THEME */
.prod-card {
    background: var(--surface-color) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.prod-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
    border-color: var(--accent-color) !important;
}

.prod-card .prod-name,
.prod-card h3 {
    color: var(--text-primary) !important;
}

.prod-card .prod-cat,
.prod-card .cat-name {
    color: var(--text-secondary) !important;
}

.prod-card .prod-price,
.prod-card .price {
    color: var(--accent-color) !important;
}

.prod-card .prod-sku {
    color: var(--text-secondary) !important;
}

/* MOBILE MENU LIGHT */
.mobile-menu {
    background: var(--surface-color) !important;
}

.mobile-menu a {
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.mobile-menu a:hover {
    color: var(--accent-color) !important;
}

/* SECTION TITLES */
.section-title, .section-subtitle {
    color: var(--text-primary) !important;
}

/* CART DRAWER LIGHT */
.cart-drawer {
    background: var(--surface-color) !important;
    border-left: 1px solid var(--border-color) !important;
    box-shadow: -10px 0 50px rgba(0,0,0,0.08) !important;
}

.cart-drawer-header {
    border-bottom: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

.cart-drawer-item {
    border-bottom: 1px solid var(--border-color) !important;
}

.cart-drawer-item-name {
    color: var(--text-primary) !important;
}

.cart-drawer-item-price {
    color: var(--accent-color) !important;
}

/* FOOTER LIGHT */
footer, .footer, #footer {
    background: var(--surface-color) !important;
    color: var(--text-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
}

footer a, .footer a, #footer a {
    color: var(--text-secondary) !important;
}

footer a:hover, .footer a:hover, #footer a:hover {
    color: var(--accent-color) !important;
}

.footer-logo-img {
    filter: none !important;
}

.copyright {
    color: var(--text-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
}

/* GENERAL SECTION/PAGE BACKGROUNDS */
section {
    background: var(--bg-color);
}

.featured-section,
.references-section,
.brands-section,
.stats-section {
    background: var(--bg-color) !important;
}

/* FORM ELEMENTS LIGHT */
input, textarea, select {
    background: var(--surface-color) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent-color) !important;
    outline: none;
}

/* BREADCRUMBS */
.breadcrumb, .breadcrumb a {
    color: var(--text-secondary) !important;
}

.breadcrumb a:hover {
    color: var(--accent-color) !important;
}

/* USER DROPDOWN LIGHT */
.user-drop {
    background: var(--surface-color) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

.user-drop a {
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.user-drop a:hover {
    background: var(--bg-color) !important;
    color: var(--accent-color) !important;
}

/* LANG DROPDOWN LIGHT */
.lang-drop {
    background: var(--surface-color) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

.lang-drop a {
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.lang-drop a:hover {
    background: var(--bg-color) !important;
    color: var(--accent-color) !important;
}

/* TABS & CONTENT PANELS */
.tab-btn {
    color: var(--text-secondary) !important;
    border-bottom: 2px solid transparent;
}

.tab-btn.active, .tab-btn:hover {
    color: var(--accent-color) !important;
    border-bottom-color: var(--accent-color) !important;
}

.tab-content, .tab-panel {
    background: var(--surface-color) !important;
    color: var(--text-primary) !important;
}

/* SPECIFICATION TABLE */
table, .spec-table {
    background: var(--surface-color) !important;
    color: var(--text-primary) !important;
}

table th {
    background: var(--bg-color) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}

table td {
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* OVERLAY FIX - Keep overlays dark for readability on images */
.hero-slide::before {
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.1)) !important;
}

/* SEARCH BOX IN HEADER (scrolled state) */
#main-header.scrolled .search-form {
    background: var(--bg-color) !important;
    border: 1px solid var(--border-color);
}

#main-header.scrolled .search-form input {
    color: var(--text-primary) !important;
}

/* STRIP / CATEGORY STRIPS */
.strip-title h3 {
    text-shadow: 0 0 20px rgba(0,0,0,0.5) !important;
}

/* REVIEW STARS */
.stars {
    color: var(--accent-color) !important;
}

/* PAGINATION */
.pagination a, .pagination span {
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
    background: var(--surface-color) !important;
}

.pagination .active, .pagination a:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
    border-color: var(--accent-color) !important;
}

/* PROD-CARD ALIGNMENT FIX - Flexbox push-down */
.prod-card-separator {
    margin-top: auto !important;
}

.prod-card-stars {
    margin-top: 0 !important;
}

.prod-card-price {
    margin-top: 0 !important;
}

/* Ensure prod-card-body fills available space and pushes content down */
.prod-card-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* GLOBAL PROD CARD REDESIGN */
.prod-card {
    background: var(--surface-color) !important; border-radius: 8px; border: 1px solid var(--border-color) !important; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-decoration: none;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important; border-color: var(--accent-color) !important; }
.prod-card-img-wrapper { position: relative; padding-top: 100%; overflow: hidden; background: #f8f9fa; border-bottom: 1px solid var(--border-color); }
.prod-card-img-wrapper img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s ease; padding: 20px; }
.prod-card:hover .prod-card-img-wrapper img { transform: scale(1.03); }
.prod-card-body { padding: 15px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-card-attributes { font-size: 11px; color: #444; line-height: 1.6; font-weight: 600; margin-bottom: 15px; }
.attr-row { display: flex; }
.attr-label { width: 70px; color: #888; }
.attr-val { flex: 1; color: #333; }

.prod-card-separator {
    margin-top: auto;
    height: 1px;
    background: var(--border-color);
    position: relative;
    margin-bottom: 15px;
}
.prod-card-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.prod-card-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.brand-watermark {
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    font-style: italic;
    letter-spacing: 1px;
}
.price-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}
.price-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.price-row .currency {
    font-size: 11px;
    font-weight: 700;
    color: #444;
    background: #d9d9d9;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-row .amount {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    background: #d9d9d9;
    padding: 0 10px;
    border-radius: 12px;
    width: 85px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.prod-card-actions { display: flex; gap: 10px; margin-bottom: 15px; }
.prod-card-btn { flex: 1; padding: 10px; font-size: 12px; font-weight: 600; text-align: center; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.prod-card-btn.add-to-cart { background: var(--accent-color); color: #FFF; }
.prod-card-btn.add-to-cart:hover { background: var(--accent-hover); }
.prod-card-btn.quote-btn { background: var(--accent-color); color: #FFF; }
.prod-card-btn.quote-btn:hover { background: var(--accent-hover); }

.prod-card-stars { color: #888; font-size: 14px; text-align: center; letter-spacing: 2px; }

/* ==========================================================================
   MOBILE-ONLY ADDITIONS (Masaüstüne dokunmaz)
   ========================================================================== */

@media (max-width: 768px) {
    /* --- FOOTER MOBİL DÜZENİ (inline styled footer) --- */
    footer {
        padding: 20px 5% !important;
    }
    footer > div {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
    }
    footer > div > div {
        max-width: 100% !important;
        width: 100% !important;
        flex: none !important;
    }
    footer > div > div > div {
        justify-content: center !important;
    }
    footer ul {
        align-items: center !important;
    }
    footer ul li a {
        justify-content: center !important;
    }

    /* --- HERO MOBİL --- */
    .hero {
        height: 60vh !important;
        min-height: 350px;
    }

    /* --- ÜRÜN DETAY SAYFASI --- */
    .product-wrap {
        padding: 100px 4% 60px !important;
    }
    .product-title {
        font-size: 22px !important;
    }
    .product-lead {
        font-size: 13px !important;
    }
    .product-panel {
        padding: 18px !important;
    }
    .variation-table {
        font-size: 11px !important;
    }
    .variation-table th,
    .variation-table td {
        padding: 8px 6px !important;
    }

    /* --- İÇ SAYFALAR --- */
    .inner-page {
        padding: 100px 4% 60px !important;
    }
    .page-intro h1 {
        font-size: 28px !important;
    }
    .article-wrap {
        padding: 120px 4% 60px !important;
    }

    /* --- ÜRÜN KARTLARI MOBİL --- */
    .products-grid,
    .products-showcase-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .prod-card-body {
        padding: 15px !important;
    }
    .prod-card-btn {
        padding: 10px !important;
        font-size: 13px !important;
    }
    .price-row .amount {
        font-size: 13px !important;
        width: auto !important;
        padding: 0 15px !important;
    }
    .price-row .currency {
        width: 20px !important;
        height: 20px !important;
        font-size: 10px !important;
    }

    /* --- WHATSAPP BUTONU MOBİL --- */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        bottom: 20px !important;
        right: 15px !important;
    }

    /* --- REFERANS DETAY --- */
    .reference-detail-wrap {
        padding: 100px 4% 60px !important;
    }
    .detail-meta-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* --- COOKIE BANNER MOBİL --- */
    #cookie-consent-banner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px !important;
    }
    #cookie-consent-banner > div {
        min-width: auto !important;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .detail-meta-grid {
        grid-template-columns: 1fr !important;
    }
    .cross-sell-grid {
        grid-template-columns: 1fr !important;
    }
    .product-specs-grid {
        grid-template-columns: 1fr !important;
    }
    .hero {
        height: 50vh !important;
        min-height: 300px;
    }
    .hero h1 {
        font-size: 26px !important;
    }
}
