@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0B3C2A;
    --primary-light: #154D38;
    --primary-dark: #07261A;
    --secondary: #C5A880;
    --secondary-light: #D2BC9E;
    --secondary-dark: #B39265;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-accent: #F1F5F9;
    --bg-dark: #07261A;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(11, 60, 42, 0.05);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border: 1.5px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-gold {
    background-color: transparent;
    border: 1.5px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline-gold:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Topbar Header Info */
.topbar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.topbar-info {
    display: flex;
    gap: 1.5rem;
}

.topbar-info span, .topbar-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.topbar-info a:hover {
    color: var(--secondary);
}

.topbar-socials {
    display: flex;
    gap: 1rem;
}

.topbar-socials a {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-socials a:hover {
    color: var(--secondary);
}

/* Main Navigation Header */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo img {
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu (Classic backup) */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 10;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
    padding-left: 1.8rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mega Menu Styling */
.mega-menu-trigger {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 10;
    padding: 2.5rem 0;
}

.mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mega-menu-list li a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    transition: var(--transition);
}

.mega-menu-list li a:hover {
    color: var(--secondary-dark);
    padding-left: 0.4rem;
}

.mega-menu-featured {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mega-menu-featured .featured-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #051A12;
    overflow: hidden;
    color: var(--white);
    padding: 6rem 0;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(5, 26, 18, 0.95) 40%, rgba(5, 26, 18, 0.5) 100%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 992px) {
    .hero .container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.hero-title {
    font-size: 2.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.hero-title span {
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Info Badges Row */
.features-row {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    margin-top: -3rem;
    position: relative;
    z-index: 5;
    border-radius: var(--radius-md);
    padding: 2rem 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.5rem 1rem;
}

.feature-item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

@media(max-width: 991px) {
    .feature-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
    }
    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.feature-icon-wrapper {
    background-color: rgba(11, 60, 42, 0.06);
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Section Title styling */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

/* Product Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-light);
}

.category-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-badge-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: var(--transition);
}

.category-card:hover .category-badge-icon {
    background-color: var(--secondary);
}

.category-body {
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
}

.category-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.category-card-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    height: 40px;
    overflow: hidden;
}

.category-card-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.category-card:hover .category-card-link {
    color: var(--secondary-dark);
}

/* Bestsellers Slider/Grid Section */
.bestsellers-slider-wrapper {
    position: relative;
    overflow: hidden;
}

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

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.product-img-wrapper {
    height: 280px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-body {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

/* Bulk pricing notice */
.product-wholesale-label {
    font-size: 0.8rem;
    color: var(--secondary-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Stats Counter Banner */
.stats-banner {
    background-color: var(--primary-dark);
    background-image: linear-gradient(to right, rgba(7, 38, 26, 0.95), rgba(11, 60, 42, 0.9));
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

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

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

@media(min-width: 992px) {
    .stats-cta-col {
        grid-column: span 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-left: 1.5px solid rgba(255, 255, 255, 0.15);
        padding-left: 3rem;
    }
}

/* Hakkımızda Section */
.about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media(min-width: 992px) {
    .about-split {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.about-text-content {
    max-width: 650px;
}

.about-tagline {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.about-main-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-paragraph {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-body {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    gap: 1rem;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.blog-card-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card:hover .blog-card-link {
    color: var(--secondary-dark);
}

/* Newsletter bar */
.newsletter-bar {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media(min-width: 992px) {
    .newsletter-grid {
        grid-template-columns: 1.2fr 1.3fr 1.5fr;
    }
}

.newsletter-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-icon {
    font-size: 2rem;
    color: var(--primary);
}

.newsletter-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.newsletter-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1.2rem;
    border: 1.5px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.newsletter-badges {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.newsletter-badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.newsletter-badge-icon-wrapper {
    font-size: 1.5rem;
    color: var(--secondary-dark);
}

.newsletter-badge-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.newsletter-badge-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

@media(max-width: 991px) {
    .newsletter-badges {
        justify-content: flex-start;
    }
}

/* Footer Styling */
.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding-top: 4.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand-col {
    grid-column: span 1;
}

@media(min-width: 1200px) {
    .footer-brand-col {
        grid-column: span 2;
    }
}

.footer-logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: none;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.footer-social-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary-dark);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-list a:hover {
    color: var(--secondary);
    padding-left: 0.4rem;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact-list a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem 0;
    font-size: 0.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.whatsapp-tooltip {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
    border-left: 3px solid #25D366;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

/* Mobile Nav Styles */
@media(max-width: 991px) {
    .logo img {
        height: 60px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-xl);
        z-index: 1000;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        transition: var(--transition);
        gap: 3rem;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--primary);
        margin-top: 0.5rem;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .header-btn {
        width: 100%;
        text-align: center;
    }
}

/* Page Header component (Hakkımızda, Ürünler etc.) */
.page-header {
    background-color: var(--primary-dark);
    background-image: linear-gradient(rgba(7, 38, 26, 0.85), rgba(7, 38, 26, 0.95)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: var(--secondary);
}

.breadcrumbs a:hover {
    color: var(--white);
}

/* Inner Page styling */
.inner-page-content {
    padding: 5rem 0;
}

/* Hakkımızda / Vizyon Mission details */
.vizyon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.vizyon-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vizyon-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.vizyon-card-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.vizyon-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Contact page details */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media(min-width: 992px) {
    .contact-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.contact-info-panel {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-icon-box {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    color: var(--secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact-info-text p, .contact-info-text a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-form-panel {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media(min-width: 768px) {
    .form-group-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 60, 42, 0.08);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.map-wrapper {
    margin-top: 4rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Product details styling */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media(min-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-gallery-container {
    position: relative;
}

.product-main-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-light);
    height: 480px;
}

.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-detail-badge {
    display: inline-block;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--secondary-dark);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.product-detail-price-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 1.2rem 1.8rem;
    margin-bottom: 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.product-detail-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.product-detail-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.product-description-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.5rem;
}

.product-specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.product-specs-table th, .product-specs-table td {
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    text-align: left;
}

.product-specs-table th {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    width: 35%;
}

.product-specs-table td {
    color: var(--text-light);
}

.product-actions-box {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Related products section */
.related-products {
    margin-top: 6rem;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

/* Filter products grid in catalog page */
.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.catalog-item {
    transition: var(--transition);
}

.catalog-item.hidden {
    display: none;
}

/* Catalog Lead Gen Pannel */
.katalog-download-box {
    background-color: var(--primary-dark);
    background-image: linear-gradient(rgba(11, 60, 42, 0.9), rgba(7, 38, 26, 0.95)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    color: var(--white);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-xl);
}

.katalog-download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 992px) {
    .katalog-download-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.katalog-download-text h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.katalog-download-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.katalog-download-features {
    list-style: none;
}

.katalog-download-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.katalog-download-features i {
    color: var(--secondary);
}

.katalog-download-form-panel {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    color: var(--text-dark);
}

.katalog-download-form-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Mobile responsive adjustments */
@media(max-width: 768px) {
    .topbar {
        display: none !important;
    }
}
