/* ================================
   STRADIVARIUS - PREMIUM WOMEN'S E-COMMERCE
   Sıradışı, Profesyonel, Kadınlara Özgü Tasarım
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B4789;
    --secondary: #D4A5B8;
    --light: #F5E6F0;
    --white: #FFFFFF;
    --dark: #2C2C2C;
    --gray: #F0F0F0;
    --accent: #E5A8C4;
    --gold: #D4AF37;
    --text: #333333;
    --border: #E0D5E3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

/* ================================
   HEADER
   ================================ */

.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0.1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 220px;
}

.nav-menu {
    flex: 1;
    margin: 0 3rem 0 8rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-btn {
    font-size: 18px;
    color: var(--dark);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.cart-btn {
    position: relative;
}

.cart-badge,
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #E5A8C4;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    line-height: 20px;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
}
}

/* ================================
   ARAMA (SEARCH)
   ================================ */

.header-search {
    width: 0;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-search.active {
    width: 300px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    height: 44px;
}

.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(139, 71, 137, 0.15);
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
}

.search-btn:hover {
    color: var(--secondary);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2px;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    background: var(--light);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    background: var(--gray);
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-price {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

.search-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-top: 80px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-block;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 71, 137, 0.3);
}

.btn-secondary {
    background: var(--accent);
    color: white;
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-add-to-cart {
    width: 100%;
    background: var(--primary);
    color: white;
    margin-top: 1rem;
    font-size: 12px;
}

.btn-add-to-cart:hover {
    background: var(--secondary);
}

/* ================================
   CONTAINER
   ================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   CATEGORIES SHOWCASE
   ================================ */

.categories-showcase {
    padding: 80px 2rem;
    background: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    text-align: center;
    transition: all 0.3s ease;
}

.category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 71, 137, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.view-btn {
    background: white;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.category-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 400;
}

/* ================================
   FEATURED COLLECTION BANNER
   ================================ */

.featured-collection {
    padding: 120px 0 0 0;
    background: white;
    overflow: hidden;
}

.collection-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0;
    height: 500px;
    width: 100%;
}

.collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.collection-image {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
}

.collection-item:hover .collection-image {
    transform: scale(1.05);
    z-index: 10;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    transition: transform 0.6s ease;
    display: block;
}

.collection-item:hover .collection-image img {
    transform: scale(1.08);
}

.collection-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 5;
}


/* ================================
   FEATURED SECTION
   ================================ */

.featured-section {
    padding: 80px 2rem;
    background: linear-gradient(135deg, rgba(245, 230, 240, 0.5) 0%, var(--white) 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 400;
    margin-top: 0.5rem;
}

.see-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.see-more:hover {
    color: var(--accent);
    gap: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: var(--gray);
}

.product-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.product-badge span {
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge .discount {
    background: #FF6B6B;
}

.product-badge .featured {
    background: var(--gold);
    color: var(--dark);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view,
.btn-wishlist,
.btn-cart {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-quick-view {
    width: auto;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-quick-view:hover,
.btn-wishlist:hover,
.btn-cart:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-info h3 a {
    text-decoration: none;
    color: var(--dark);
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: var(--primary);
}

.product-category {
    font-size: 12px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-rating {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.product-rating i {
    color: var(--accent);
    margin-right: 2px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 14px;
}

.sale-price {
    color: var(--primary);
}

.price {
    color: var(--primary);
}

/* ================================
   PROMOTIONAL BANNER
   ================================ */

.promo-banner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 40px 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.promo-left,
.promo-right {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.promo-left img,
.promo-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-banner:hover .promo-left img,
.promo-banner:hover .promo-right img {
    transform: scale(1.05);
}

.promo-content {
    text-align: center;
    padding: 2rem;
}

.promo-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.promo-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.promo-content p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* ================================
   WHY US SECTION
   ================================ */

.why-us {
    padding: 80px 2rem;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.why-card {
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.why-card p {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.8;
}

/* ================================
   NEWSLETTER
   ================================ */

.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 2rem;
    color: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    background: white;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.newsletter-form button:hover {
    background: var(--accent);
    color: white;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--dark);
    color: #ccc;
    padding: 60px 2rem 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-methods {
    font-size: 24px;
    color: var(--gold);
    display: flex;
    gap: 10px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
        margin: 0 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 2rem;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .promo-banner {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .collection-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .collection-image {
        height: 400px;
        width: 400px;
    }

    .collection-label {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .hero {
        padding: 40px 1rem;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-image {
        height: 300px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .collection-image {
        height: 350px;
        width: 350px;
    }

    .collection-label {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-container {
        gap: 1rem;
    }
}


/* ================================
   HEADER TRANSPARENT OVERRIDE
   ================================ */

.nav-logo,
.nav-logo a {
    color: var(--white) !important;
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-menu a {
    color: var(--white) !important;
}

.nav-icon {
    color: var(--white) !important;
}

.nav-icon:hover {
    color: var(--accent) !important;
}



/* ================================
   LOGIN MODAL
   ================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.login-modal h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 71, 137, 0.1);
}

.auth-btn {
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-btn:hover {
    background: var(--secondary);
}

.auth-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.auth-footer {
    text-align: center;
    font-size: 13px;
    color: var(--secondary);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: var(--secondary);
}

.form-error {
    font-size: 12px;
    color: #FF6B6B;
    margin-top: -12px;
}

.form-success {
    font-size: 12px;
    color: #4CAF50;
    padding: 10px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 4px;
    margin-bottom: 10px;
}

/* ================================
   USER MENU
   ================================ */

.user-info {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-menu-toggle:hover {
    background: var(--light);
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1500;
    margin-top: 5px;
    overflow: hidden;
}

.user-info:hover .user-menu,
.user-info.active .user-menu {
    display: flex;
    flex-direction: column;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
    text-align: left;
}

.user-menu-item:hover {
    background: var(--light);
    color: var(--primary);
}

.user-menu-item i {
    width: 16px;
    text-align: center;
    color: var(--primary);
}

.user-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}


/* ================================
   SIZE MODAL
   ================================ */

.size-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.size-modal.active {
    display: flex;
}

.size-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.size-modal-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--border);
}

.size-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--secondary);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.size-modal-close:hover {
    color: var(--primary);
    background: var(--light);
    transform: rotate(90deg);
}

/* Ürün bilgisi */
.size-modal-product {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 230, 240, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    align-items: flex-start;
}

.size-modal-image {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.size-modal-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.size-modal-product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.size-modal-product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: auto;
}

/* Beden seçimi */
.size-modal-body {
    padding: 24px;
    text-align: center;
}

.size-modal-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.size-modal-sizes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.size-modal-btn {
    padding: 12px 8px;
    border: 2px solid var(--border);
    background: white;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.size-modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light);
    transition: left 0.3s ease;
    z-index: -1;
}

.size-modal-btn:hover::before {
    left: 0;
}

.size-modal-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.size-modal-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(139, 71, 137, 0.3);
    transform: scale(1.05);
}

.size-modal-btn.active::before {
    left: 0;
}

/* Footer */
.size-modal-footer {
    padding: 20px 24px 24px;
    display: flex;
    gap: 12px;
    flex-direction: row-reverse;
}

.size-modal-submit,
.size-modal-cancel {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.size-modal-submit {
    background: var(--primary);
    color: white;
}

.size-modal-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.size-modal-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 71, 137, 0.3);
}

.size-modal-submit:hover::after {
    width: 300px;
    height: 300px;
}

.size-modal-cancel {
    background: var(--border);
    color: var(--text);
}

.size-modal-cancel:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .size-modal-content {
        width: 95%;
        max-width: 100%;
    }

    .size-modal-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .size-modal-image {
        width: 120px;
        height: 160px;
    }

    .size-modal-sizes {
        grid-template-columns: repeat(3, 1fr);
    }

    .size-modal-footer {
        flex-direction: column;
    }

    .size-modal-submit,
    .size-modal-cancel {
        width: 100%;
    }
}



.denim-banner {
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.banner-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.banner-link {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: fit-content;
}

.banner-link:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .denim-banner {
        height: 250px;
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    .denim-banner {
        height: 150px;
        margin: 20px 0;
    }
}
