/**
 * DROPMENTOR - Ana CSS Dosyası
 * Modern, responsive tasarım
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Değişkenleri - Dinamik olarak yüklenir */
:root {
    /* Varsayılan değerler - dinamik renkler yüklenemezse kullanılır */
    --primary-color: var(--color-primary_orange, #FF9900);
    --primary-dark: var(--color-primary_orange_dark, #E47911);
    --secondary-color: var(--color-primary_dark, #232F3E);
    --text-color: var(--color-text_medium, #565959);
    --text-dark: var(--color-text_dark, #0F1111);
    --bg-light: var(--color-bg_gray, #F7F8FA);
    --bg-white: var(--color-bg_white, #FFFFFF);
    --border-color: var(--color-border_gray, #EAEDED);
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
    
    /* Durum renkleri */
    --success-color: var(--color-success, #067D62);
    --danger-color: var(--color-danger, #C7511F);
    --info-color: var(--color-info, #0073BB);
    --warning-color: var(--color-warning, #FFA500);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(32, 32, 32, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content span {
    margin-right: 10px;
    font-size: 20px;
}

.cookie-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-btn:hover {
    background: var(--primary-dark);
}

/* Header */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item.has-submenu .nav-link::after {
    display: none;
}

/* Submenu */
.nav-item {
    position: relative;
}

.nav-item.has-submenu {
    position: relative;
}

.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu .submenu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.nav-item.has-submenu .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.submenu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 300px;
    padding: 8px 0;
    list-style: none;
    z-index: 1001;
    margin: 0;
    transition: all 0.3s ease;
}

.submenu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

/* Submenu ile nav-item arasındaki boşluğu kapatmak için */
.nav-item.has-submenu::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
    z-index: 1000;
}

.submenu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-color);
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu a:hover {
    background: rgba(var(--color-primary_orange, #FF9900), 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Footer */
.site-footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-contact a {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-menu-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-menu-list {
    list-style: none;
}

.footer-menu-list li {
    margin-bottom: 10px;
}

.footer-menu-list a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

.footer-menu-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* New Footer Styles - Kurumsal Dropshipping */
/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--color-primary_orange, #FF9900) 0%, var(--color-primary_orange_dark, #E47911) 100%);
    padding: 40px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.newsletter-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-bg_white, #FFFFFF);
}

.newsletter-content p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--color-primary_dark, #232F3E);
    color: var(--color-bg_white, #FFFFFF);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #000;
    transform: translateY(-2px);
}

.newsletter-content small {
    font-size: 12px;
    opacity: 0.8;
}

.newsletter-success {
    color: var(--color-bg_white, #FFFFFF);
    font-size: 18px;
    font-weight: 500;
}

/* Main Footer */
.footer-main {
    padding: 40px 0 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-bg_white, #FFFFFF);
}

.footer-company {
    grid-column: span 1;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-slogan {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color-primary_orange, #FF9900);
}

.footer-about {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

.company-legal {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.8;
}

.company-legal p {
    margin-bottom: 5px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li > div {
    margin-left: 25px;
}

.footer-links-simple li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-simple i {
    width: 16px;
    font-size: 14px;
    margin: 0;
    float: none;
}

.footer-links a {
    color: var(--color-bg_white, #FFFFFF);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-primary_orange, #FF9900);
}

.footer-links i {
    width: 20px;
    color: var(--color-primary_orange, #FF9900);
    margin-right: 10px;
    float: left;
    margin-top: 3px;
}

.footer-links strong {
    display: block;
    margin-bottom: 5px;
}

.footer-links small {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Footer Buttons */
.footer-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-footer {
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    color: var(--color-bg_white, #FFFFFF);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-footer:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-primary_orange, #FF9900);
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg_white, #FFFFFF);
    transition: all 0.3s;
    font-size: 16px;
}

.social-icons a:hover {
    background: var(--color-primary_orange, #FF9900);
    transform: translateY(-2px);
}

/* Footer Contact */
.footer-contact {
    margin-top: 20px;
}

.footer-contact h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    width: 20px;
    color: var(--color-primary_orange, #FF9900);
    margin-right: 10px;
}

.footer-contact a {
    color: var(--color-bg_white, #FFFFFF);
    text-decoration: none;
    opacity: 0.9;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--color-primary_orange, #FF9900);
}

/* Footer Bottom Updates */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 15px 0;
    text-align: left;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin-bottom: 10px;
    font-size: 14px;
}

.legal-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--color-bg_white, #FFFFFF);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.legal-links a:hover {
    opacity: 1;
}

/* Payment & Security */
.footer-security {
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods i {
    font-size: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-methods i:hover {
    opacity: 1;
}

.ssl-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    opacity: 0.8;
}

.ssl-info i {
    color: var(--color-success, #067D62);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,153,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow);
        padding: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    /* Alt menü mobil stilleri */
    .nav-item.has-submenu .submenu {
        position: static !important;
        display: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(255,153,0,0.05);
        border-radius: 8px;
        margin-top: 10px;
        min-width: auto;
        padding: 10px 0;
        pointer-events: auto;
        z-index: 100;
    }
    
    .nav-item.has-submenu.submenu-open .submenu {
        display: block !important;
    }
    
    .nav-item.has-submenu .submenu::before {
        display: none;
    }
    
    .nav-item.has-submenu .nav-link i {
        transition: transform 0.3s ease;
    }
    
    .nav-item.has-submenu.submenu-open .nav-link i {
        transform: rotate(180deg);
    }
    
    .nav-item.has-submenu .submenu a {
        padding: 10px 15px;
        font-size: 14px;
        cursor: pointer !important;
        pointer-events: auto !important;
        display: block;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}
