/* Reset ve Base Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme Colors */
    --color-primary: #FFF8F2;
    --color-secondary: #F7DDE1;
    --color-accent: #EDE7E3;
    --color-dark: #222;
    --color-gold: #C9A27C;
    --color-white: #FFFFFF;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #E0E0E0;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-overlay: rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --header-height: 80px;
}

/* Dark Theme */
[data-theme="dark"] {
    --color-primary: #1a1a1a;
    --color-secondary: #2a2a2a;
    --color-accent: #3a3a3a;
    --color-dark: #f5f5f5;
    --color-white: #1a1a1a;
    --color-text: #e0e0e0;
    --color-text-light: #b0b0b0;
    --color-border: #404040;
    --color-shadow: rgba(255, 255, 255, 0.1);
    --color-overlay: rgba(0, 0, 0, 0.8);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-primary);
    overflow-x: hidden;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), #B8956A);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(201, 162, 124, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 124, 0.4);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-dark);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

[data-theme="dark"] .header {
    background: rgba(26, 26, 26, 0.95);
}

.navbar {
    height: var(--header-height);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo a:hover {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text);
}

.theme-toggle:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

.theme-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Koleksiyon Section */
.koleksiyon {
    background: var(--color-white);
}

.koleksiyon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.koleksiyon-card {
    background: var(--color-primary);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--color-shadow);
}

.koleksiyon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--color-shadow);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    position: relative; */
}

.placeholder-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
}

/* Placeholder backgrounds for different categories */
/* .elbise-bg {
    background: linear-gradient(135deg, #F7DDE1, #E8C4C8);
}

.gomlek-bg {
    background: linear-gradient(135deg, #EDE7E3, #D4CCC4);
}

.altgiyim-bg {
    background: linear-gradient(135deg, #C9A27C, #B8956A);
}

.disgiyim-bg {
    background: linear-gradient(135deg, #D4A574, #C2936B);
} */

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.card-description {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-button {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-weight: 500;
}

.card-button:hover {
    background: #B8956A;
    transform: translateY(-2px);
}

/* Ürünler Section */
.urunler {
    background: var(--color-accent);
}

.urun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.urun-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--color-shadow);
    position: relative;
}

.urun-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px var(--color-shadow);
}

.urun-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.urun-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.urun-badge.sinirlı {
    background: #e74c3c;
}

/* Product placeholder backgrounds */
.urun1-bg {
    background: linear-gradient(135deg, #F7DDE1, #E8C4C8);
}

.urun2-bg {
    background: linear-gradient(135deg, #EDE7E3, #D4CCC4);
}

.urun3-bg {
    background: linear-gradient(135deg, #C9A27C, #B8956A);
}

.urun4-bg {
    background: linear-gradient(135deg, #D4A574, #C2936B);
}

.urun5-bg {
    background: linear-gradient(135deg, #B19A7D, #A08970);
}

.urun6-bg {
    background: linear-gradient(135deg, #F0E6E1, #E5D8D1);
}

.urun-content {
    padding: 25px;
}

.urun-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.urun-description {
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.urun-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-old {
    color: var(--color-text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.price-new {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.2rem;
}

.beden-rehberi-btn {
    width: 100%;
    justify-content: center;
}

/* Hakkımızda Section */
.hakkimizda {
    background: var(--color-white);
}

.hakkimizda-content {
    width: 100%;
    align-items: center;
}

.hakkimizda-text {
    text-align: center;
}

.hakkimizda-description {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.hakkimizda-image {
    height: 400px;
}

.hakkimizda-bg {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 15px;
}

/* Beden Tablosu Section */
.beden-tablosu {
    background: var(--color-accent);
}

.beden-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.beden-aciklama {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Yorumlar Section */
.yorumlar {
    background: var(--color-white);
}

.yorumlar-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    overflow: hidden;
    border-radius: 15px;
}

.yorum-card {
    display: none;
    background: var(--color-primary);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--color-shadow);
}

.yorum-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.yorum-text {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}

.author-name {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.stars {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: #B8956A;
    transform: scale(1.1);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-gold);
}

/* SSS Section */
.sss {
    background: var(--color-accent);
}

.sss-container {
    max-width: 800px;
    margin: 0 auto;
}

.sss-item {
    background: var(--color-white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--color-shadow);
}

.sss-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.sss-question:hover {
    background: var(--color-primary);
}

.sss-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: var(--transition);
}

.sss-question[aria-expanded="true"] .sss-icon {
    transform: rotate(180deg);
}

.sss-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sss-answer p {
    padding: 0 25px 25px;
    color: var(--color-text);
    line-height: 1.6;
}

.sss-item.active .sss-answer {
    max-height: 200px;
}

/* İletişim Section */
.iletisim {
    background: var(--color-white);
}

.iletisim-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.iletisim-info h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.iletisim-info p {
    color: var(--color-text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.iletisim-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text);
}

.iletisim-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: var(--color-gold);
}

.iletisim-form {
    background: var(--color-primary);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--color-shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    background: var(--color-white);
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 124, 0.1);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
}

.footer-description {
    color: var(--color-text-light);
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: #B8956A;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: var(--color-text-light);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    margin: auto;
    max-width: 600px;
    width: 90%;
    border-radius: 15px;
    overflow: hidden;
    transform: translateY(-50px);
    transition: var(--transition);
    max-height: 80vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--color-border);
}

.modal-title {
    font-size: 1.5rem;
    color: var(--color-dark);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--color-text);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-dark);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.modal-body {
    padding: 25px;
}

.modal-description {
    color: var(--color-text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.beden-table-container {
    overflow-x: auto;
    margin-bottom: 25px;
}

.beden-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-primary);
    border-radius: 8px;
    overflow: hidden;
}

.beden-table th,
.beden-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.beden-table th {
    background: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
}

.beden-table tr:last-child td {
    border-bottom: none;
}

.modal-note {
    background: var(--color-accent);
    padding: 15px;
    border-radius: 8px;
    color: var(--color-text);
}

/* Snackbar */
.snackbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    transition: var(--transition);
    opacity: 0;
}

.snackbar.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.snackbar-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.snackbar-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 5px 20px var(--color-shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .koleksiyon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .urun-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hakkimizda-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hakkimizda-text {
        padding-right: 0;
    }
    
    .hakkimizda-image {
        height: 300px;
    }
    
    .iletisim-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .beden-table {
        font-size: 0.9rem;
    }
    
    .beden-table th,
    .beden-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .card-content,
    .urun-content {
        padding: 20px;
    }
    
    .iletisim-form {
        padding: 25px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .yorumlar-slider {
        padding: 0 10px;
    }
    
    .yorum-card {
        padding: 25px;
    }
}
