/* Genel Ayarlar ve Değişkenler */
:root {
    --primary-color: #ffffff; 
    --secondary-color: #fcfcfc; 
    --accent-color: #d4af37; /* Lüks Altın */
    --accent-hover: #b5952f;
    --text-color: #0f1115; /* Koyu Antrasit */
    --text-muted: #686c73;
    --border-color: #eaeaea;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --dark-bg: #0a0a0a;
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --card-glow: rgba(212, 175, 55, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .line {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto 20px auto;
}

.section-title p {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* Butonlar */
.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0; /* Keskin köşeler */
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: var(--accent-color);
    box-shadow: none;
}

.btn-primary i {
    margin: 0 6px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0; /* Keskin köşeler */
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: none;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar i {
    color: var(--accent-color);
    margin-right: 5px;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-right a {
    margin: 0 5px;
    transition: color 0.3s ease;
    color: var(--text-muted);
}

.top-bar-right a:hover, .top-bar-right a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.top-bar-social {
    display: flex;
    align-items: center;
}

.top-bar-social a {
    color: var(--accent-color);
    margin-left: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Header */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    padding: 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.main-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

header.scrolled .main-header {
    padding: 15px 0;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-color);
}

/* Dropdown Menü */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 220px;
    flex-direction: column;
    padding: 10px 0;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-color);
    border-radius: 0 0 8px 8px;
    z-index: 1000;
}

nav ul li.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding-left: 25px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #111;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* About Section */
.about {
    background-color: var(--primary-color);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-box {
    background-color: var(--primary-color);
    padding: 35px 25px;
    text-align: center;
    border-radius: 0; /* Keskin köşeler */
    border: 1px solid var(--border-color);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Products Section */
.products {
    background-color: var(--secondary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--primary-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: 0; /* Keskin köşeler */
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.product-img {
    height: 380px;
    overflow: hidden;
    position: relative;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.product-img img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 15px;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px 15px;
    text-align: center;
    background: var(--primary-color);
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.product-info .btn-outline {
    border-color: var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    font-size: 0.75rem;
}

.product-card:hover .btn-outline {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

/* Technology Section */
.technology {
    background-color: var(--primary-color);
}

.tech-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.tech-text {
    flex: 1;
}

.tech-image {
    flex: 1;
}

/* Catalogs Section */
.catalogs {
    background-color: var(--secondary-color);
}

/* Blog Section */
.blog {
    background-color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-info {
    padding: 25px;
}

.blog-info .date {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.blog-info .read-more {
    color: #111;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.blog-info .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-info .read-more:hover {
    color: var(--accent-color);
}

.blog-info .read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: #111111;
    color: #f4f4f4;
    padding: 70px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col p {
    color: #999;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-heading);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 15px;
    text-align: center;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    outline: none;
    font-family: var(--font-main);
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--accent-hover);
}

.kvkk {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.kvkk a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #777;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.contact-info-boxes {
    flex: 1;
    background-color: #111;
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.info-box p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-box p a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-box p a:hover {
    color: var(--accent-color);
}

.contact-form-container {
    flex: 2;
    padding: 50px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: #fcfcfc;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    cursor: pointer;
}

/* Interactive Dark Map Section */

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-down i {
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Promo Video Section */
.promo-video {
    background-color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-thumbnail {
    width: 100%;
    display: block;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.video-wrapper:hover .video-thumbnail {
    filter: brightness(0.6);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    padding-left: 5px;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse-play 2s infinite;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-button:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Category Filters */
.category-filters-wrapper {
    position: relative;
    width: 100%;
}

.category-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 50px;
    scroll-behavior: smooth;
    cursor: grab;
}
.category-filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 8px 18px;
    background-color: #ffffff;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    flex-shrink: 0;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.filter-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 155, 38, 0.3);
}

/* Scroll Arrows */
.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    height: 48px;
    width: 44px;
    z-index: 10;
    cursor: pointer;
    color: var(--accent-color);
    font-size: 1.1rem;
    background: none;
    border: none;
    transition: all 0.3s ease;
}
.scroll-arrow:hover {
    color: var(--accent-hover);
    transform: scale(1.15);
}
.scroll-arrow.left-arrow {
    left: 0;
    background: linear-gradient(to right, #ffffff 40%, transparent);
}
.scroll-arrow.right-arrow {
    right: 0;
    background: linear-gradient(to left, #ffffff 40%, transparent);
}

/* Expand Button */
.category-expand-row {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.category-expand-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 22px;
    border-radius: 30px;
    font-family: var(--font-main);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.category-expand-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}
.expand-icon {
    transition: transform 0.4s ease;
}
.category-expand-btn.active .expand-icon {
    transform: rotate(180deg);
}

/* Expanded state */
.category-filters.expanded {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding: 8px 10px;
}
.category-filters-wrapper.expanded .scroll-arrow {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content, .tech-content, .contact-wrapper {
        flex-direction: column;
    }
    .about-features {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-info-boxes, .contact-form-container {
        padding: 30px;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .hero {
        min-height: 450px;
        padding-top: 40px;
    }
    .top-bar {
        display: none;
    }
    
    .main-header {
        flex-direction: column;
        padding: 20px 0 0 0;
        align-items: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    .hamburger {
        display: none;
    }

    nav {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background-color: #fafafa;
        padding-top: 0;
        transition: none;
        overflow: visible;
        border-top: 1px solid rgba(0,0,0,0.04);
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    nav ul {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        padding: 0 5px;
        flex-wrap: nowrap;
        gap: 12px;
    }

    nav ul li {
        width: auto;
        margin: 0;
        border-bottom: none;
    }

    nav ul li a {
        display: flex;
        align-items: center;
        padding: 14px 2px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-color);
        position: relative;
        white-space: nowrap;
    }

    nav ul li.dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        min-width: 180px;
        background-color: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid var(--border-color);
        border-top: 3px solid var(--accent-color);
        border-radius: 0 0 8px 8px;
        z-index: 1000;
        padding: 10px 0;
        display: none;
    }
    
    nav ul li.dropdown:hover .dropdown-menu,
    nav ul li.dropdown.active-dropdown .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu li a {
        display: block;
        padding: 10px 15px;
        font-size: 0.85rem;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        white-space: normal;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    .hero p {
        font-size: 1rem;
    }

    .hero-content,
    .about-text,
    .tech-text,
    .contact-text,
    .section-title {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .line {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    .product-img {
        height: 250px;
    }
    
    .footer-col {
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    /* İçeriği tam ortalamak için Flexbox ayarları (JS ile tetiklenecek) */
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation-name: zoom;
    animation-duration: 0.4s;
}
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}
.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Lightbox Arrows */
.prev-lightbox, .next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 35px;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 10001;
}
.prev-lightbox { left: 15px; border-radius: 4px; }
.next-lightbox { right: 15px; border-radius: 4px; }

.prev-lightbox:hover, .next-lightbox:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
}

/* Lightbox Caption */
.lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-main);
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.6);
    border-radius: 4px;
    transition: opacity 0.4s ease;
    max-width: 80%;
    z-index: 10000;
}

/* Lightbox Arrows */
.prev-lightbox, .next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 35px;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 10001;
}
.prev-lightbox { left: 15px; border-radius: 4px; }
.next-lightbox { right: 15px; border-radius: 4px; }

.prev-lightbox:hover, .next-lightbox:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
}

/* Redesign Custom Enhancements */
.hero-subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.stat-item h3 {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* responsive overrides */
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-img {
        height: 180px;
    }
    .product-info {
        padding: 15px 10px;
    }
    .product-info h3 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    .product-info p {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
    }
    .product-info .btn-outline {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}



/* --- HERO SLIDER --- */
.hero {
    position: relative;
    overflow: hidden;
    background: none !important;
}

.hero-marquee-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-marquee {
    display: flex;
    width: max-content;
    animation: marquee 80s linear infinite;
}

/* Pause animation on hover */
.hero-marquee:hover {
    animation-play-state: paused;
}

.hero-marquee img {
    height: 450px;
    object-fit: contain;
    margin: 0 15px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.hero-marquee img:hover {
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Gradient overlay to make text readable */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.55); /* Hafif beyazlatma */
    z-index: -1;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    background: transparent;
    padding: 60px 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 2px 20px rgba(255,255,255,0.9), 0 0 40px rgba(255,255,255,0.7);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-shadow: 0 1px 10px rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .hero-marquee img {
        height: 280px;
    }
    .hero-content {
        padding: 40px 20px;
        width: 90%;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- PREMIUM PRODUCT CARD HOVER --- */
.product-card {
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease !important;
}
.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2), 0 10px 20px rgba(0,0,0,0.08) !important;
}



/* --- TOP INFO BAR GOLD --- */
.top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}
.top-bar a, .top-bar span, .top-bar i {
    color: #d4af37 !important;
}




/* ========================================= */
/* --- PREMIUM LIGHT THEME ENHANCEMENTS --- */
/* ========================================= */

/* Fix Hero Buttons Readability */
.hero-content .btn-primary {
    background: var(--accent-color);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    border: none;
    font-weight: 700;
}
.hero-content .btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}
.hero-content .btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
}
.hero-content a.btn-primary, .hero-content a.btn-outline {
    margin: 5px;
}

/* Global Button Radius & Polish */
.btn-primary, .btn-outline {
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4) !important;
}
.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Typography Polish */
h1, h2, h3, .section-title h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}
.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Cards Polish */
.product-card {
    border: none !important;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.product-info {
    padding: 25px 20px;
    text-align: center;
}
.product-info h3 {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 8px;
}

/* Feature Boxes Polish (About Section) */
.feature-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.feature-box i {
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* General Layout Breathing Room */
.section-padding {
    padding: 100px 0;
}
.bg-light {
    background-color: #fcfcfc;
}

/* Header Polish */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}



/* ========================================= */
/* --- MOBILE LAYOUT ENHANCEMENTS --- */
/* ========================================= */

@media (max-width: 768px) {
    /* General Spacing */
    .section-padding {
        padding: 60px 0 !important;
    }
    
    /* Typography Fixes for Mobile */
    .hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
    .section-title h2 {
        font-size: 2rem !important;
    }
    .section-title p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    /* Hero Section Mobile */
    .hero-content {
        padding: 30px 20px !important;
        width: 92% !important;
        border-radius: 20px !important;
    }
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        align-items: center !important;
    }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline {
        width: 100% !important;
        max-width: 280px;
        margin: 0 !important;
        padding: 14px 20px !important;
    }

    /* Product Grid Mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px;
    }
    .product-img {
        height: 180px !important; /* Shorter for mobile to fit 2 columns nicely */
    }
    .product-info {
        padding: 15px 10px !important;
    }
    .product-info h3 {
        font-size: 0.95rem !important;
    }
    .product-info p {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
    }
    .product-info .btn-outline {
        padding: 8px 15px !important;
        font-size: 0.8rem !important;
    }

    /* Feature Boxes & Layout Mobile */
    .about-features {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    .feature-box {
        padding: 25px 20px !important;
    }
    
    /* Filters Mobile Adjustment */
    .category-filters {
        padding: 8px 30px !important; /* Give space for arrows */
    }
    .scroll-arrow {
        width: 35px !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr !important; /* Switch to 1 column on very small phones */
    }
    .product-img {
        height: 250px !important;
    }
}


/* ========================================= */
/* ========================================= */
/* ========================================= */
/* --- USER REQUESTED MOBILE FIXES V3 --- */
/* ========================================= */

@media (max-width: 768px) {
    /* 1. Hero Container */
    .hero {
        padding-top: 0 !important;
        min-height: 350px !important;
        height: 50vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* 2. Slider wrapper */
    .hero-marquee-wrapper {
        padding: 0 !important;
        background-color: transparent !important;
    }
    
    /* Show 2 doors side-by-side in marquee on mobile */
    .hero-marquee img {
        height: 250px !important;
        width: auto !important;
        margin: 0 5px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* 3. Hero text - Smaller, absolutely centered ON TOP of slider */
    .hero-content {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 5px !important;
        width: 95% !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 10 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Make text even smaller */
    .hero-content h1 {
        font-size: 1.3rem !important;
        color: #1a1a1a !important;
        text-shadow: 0 0 10px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,1), 2px 2px 3px rgba(255,255,255,0.9), -2px -2px 3px rgba(255,255,255,0.9) !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: 0.8rem !important;
        color: #222 !important;
        font-weight: 700 !important;
        text-shadow: 0 0 8px rgba(255,255,255,1), 0 0 15px rgba(255,255,255,1), 1px 1px 2px rgba(255,255,255,0.9), -1px -1px 2px rgba(255,255,255,0.9) !important;
        margin-bottom: 15px !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-subtitle {
        text-shadow: 0 0 10px rgba(255,255,255,1), 1px 1px 3px rgba(255,255,255,0.9) !important;
        font-size: 0.7rem !important;
        font-weight: 800 !important;
        color: var(--accent-color) !important;
        margin-bottom: 5px !important;
    }

    /* Adjust buttons to be much smaller */
    .hero-buttons {
        gap: 8px !important;
    }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline {
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
        max-width: 220px !important;
    }

    /* Product grid 2 columns */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ========================================= */
/* --- USER REQUESTED MOBILE FIXES V4 --- */
/* ========================================= */

@media (max-width: 768px) {
    /* TOP BAR MOBILE FIX - Make it visible and fit side by side */
    .top-bar {
        display: block !important;
        padding: 6px 10px !important;
        text-align: center;
    }
    .top-bar .container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important; /* Center the whole block */
        align-items: center !important;
        gap: 12px !important;
        padding: 0 !important;
        width: 100% !important;
        flex-wrap: nowrap !important; /* Force side by side */
    }
    .top-bar-left {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        align-items: center !important;
        margin-bottom: 0 !important;
    }
    .top-bar-left span {
        font-size: 0.65rem !important; /* Small enough to fit */
        white-space: nowrap !important;
        margin: 0 !important;
    }
    .top-bar-social {
        display: flex !important;
        gap: 8px !important;
        align-items: center !important;
    }
    .top-bar-social a {
        font-size: 0.75rem !important;
        margin: 0 !important;
    }
    .top-bar i {
        margin-right: 3px !important;
    }
    
    /* Adjust header padding if top-bar is visible now to look nice */
    .main-header {
        padding-top: 10px !important;
    }
}

/* Extra small devices, shrink further if needed */
@media (max-width: 400px) {
    .top-bar .container {
        gap: 6px !important;
    }
    .top-bar-left {
        gap: 6px !important;
    }
    .top-bar-left span {
        font-size: 0.6rem !important;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.page-btn {
    padding: 10px 18px;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.page-btn:hover:not([disabled]) {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.page-btn.active {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    font-weight: 600;
}

.page-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.page-dots {
    color: var(--text-muted);
    font-weight: bold;
    padding: 0 5px;
    letter-spacing: 2px;
}

/* Product Search */
.product-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.product-search-wrapper input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.product-search-wrapper input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.product-search-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s ease;
    pointer-events: none;
}

.product-search-wrapper input:focus + .search-icon {
    color: var(--accent-color);
}

/* Show expand button only on mobile */
@media (min-width: 769px) {
    .category-expand-row {
        display: none !important;
    }
    
    /* Show all categories directly on desktop without slider */
    .category-filters {
        flex-wrap: wrap !important;
        justify-content: center !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .scroll-arrow {
        display: none !important;
    }
    
    .category-filters-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Premium Aesthetic Overrides */
:root {
    --text-color: #111827;
    --text-muted: #6b7280;
    --secondary-color: #f9fafb;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.product-search-wrapper input {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.product-card {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-img {
    overflow: hidden;
    position: relative;
}

.product-img img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    width: 100%;
}

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

.product-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.5) 0%, rgba(17, 24, 39, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .product-img::after {
    opacity: 1;
}

.overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    background-color: var(--accent-color);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.product-card:hover .overlay-btn {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.overlay-btn:hover {
    background-color: #fff;
    color: var(--accent-color) !important;
}

h1, h2, h3, .section-title h2 {
    letter-spacing: -0.5px;
}
.top-bar {
    letter-spacing: 0.5px;
}
