/* ===== GENEL STILLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Silkworm Treasures - Opulent Style Minimal Palette */
    --primary-color: #2B2B2B;        /* Charcoal Black - Ana renk */
    --primary-dark: #1A1A1A;         /* Daha koyu siyah - Hover */
    --accent-color: #D4C4B0;         /* Soft Taupe - Vurgu rengi */
    --accent-dark: #C0B09D;          /* Koyu Taupe */
    --secondary-color: #8B8B8B;      /* Soft Gray - İkincil */
    --text-color: #2B2B2B;           /* Charcoal - Ana metin */
    --text-light: #888888;           /* Light Gray - Alt metin */
    --bg-color: #FAFAF8;             /* Soft White - Arka plan */
    --bg-light: #F5F1E8;             /* Warm Bej - Alternatif arka plan */
    --border-color: #E8E8E8;         /* Light Gray - Kenarlıklar */
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 4px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #FFFFFF;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1001;
    padding: 1.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #2B2B2B;
}

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

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

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    width: max-content;
    max-width: 300px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: var(--transition);
    margin-top: 1rem;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-item:first-child {
    font-weight: 600;
    color: #2B2B2B;
    border-radius: 4px 4px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 4px 4px;
}

.dropdown-item:hover {
    background: #F5F1E8;
    color: #2B2B2B;
}

.dropdown-category {
    font-weight: 600;
    color: #2B2B2B;
    padding-top: 0.85rem;
    padding-bottom: 0.5rem;
}

.dropdown-subitem {
    padding-left: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.dropdown-subitem:hover {
    background: #F5F1E8;
    color: #2B2B2B;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: fixed;
    top: 70px; /* Navbar altından başlasın */
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color);
    padding: 1.5rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scroll iOS */
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 400;
    transition: var(--transition);
    font-size: 0.95rem;
}

.lang-btn:hover {
    border-color: #2B2B2B;
    background: white;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-width: 180px;
    z-index: 1000;
    display: none;
}

.lang-menu.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #F5F1E8;
    color: #2B2B2B;
}

.lang-option.active {
    background: #2B2B2B;
    color: white;
    font-weight: 600;
}

.mobile-lang-menu {
    border-top: 2px solid var(--border-color);
    margin-top: 1rem;
    padding: 1rem 0.75rem;
    background: #F5F1E8;
}

.mobile-menu-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    text-align: center;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mobile-lang-menu .mobile-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 0.35rem;
    border-radius: 10px;
    background: white;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
    min-height: 70px;
}

.mobile-lang-menu .mobile-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #2B2B2B;
}

.mobile-lang-menu .mobile-link.active {
    background: #2B2B2B;
    color: white;
    border-color: #1A1A1A;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown {
    border-bottom: 1px solid var(--border-color);
}

.mobile-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #F5F1E8;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-sublink {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-sublink:hover {
    background: white;
    color: #2B2B2B;
    padding-left: 2rem;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.15) 0%, 
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 600px;
    padding: 3rem 4rem;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.slide-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.slide-subtitle::before {
    content: '↘';
    font-size: 1.3rem;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.hero-primary-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #333;
    color: white;
    border-radius: 50%;
    font-size: 1rem;
}

.hero-secondary-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

.hero-secondary-link:hover {
    opacity: 1;
    border-bottom-color: white;
}

/* Slider Controls */
.slider-btn {
    display: none;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: #2B2B2B;
    color: white;
}

.btn-primary:hover {
    background: #444444;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2B2B2B;
    border: 1px solid #2B2B2B;
}

.btn-secondary:hover {
    background: #2B2B2B;
    color: white;
    border-color: #2B2B2B;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
.categories,
.products-section,
.about-content,
.contact-section {
    padding: 2.5rem 0;
}

.categories {
    padding-top: 1rem;
}

.features {
    padding: 5rem 0;
    background: #FFFFFF;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 90%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.category-card:hover .category-card-image {
    transform: scale(1.1);
}

.category-card:hover::before {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 65%,
        rgba(0, 0, 0, 0.3) 85%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    color: white;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.category-card:hover h3 {
    transform: translateX(5px);
}

.category-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    font-weight: 300;
    font-size: 0.95rem;
}

.category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.category-card:hover .category-arrow {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Fallback for categories without images */
.category-card-no-image {
    background: linear-gradient(135deg, #B8A394 0%, #8B7355 100%);
}

.category-card-no-image::before {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4C4B0;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-light);
    font-weight: 300;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #2B2B2B 0%, #1A1A1A 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #2B2B2B 0%, #1A1A1A 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* ===== CATEGORY FILTER ===== */
.category-filter,
.subcategory-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
    background: var(--bg-light);
    font-weight: 400;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2B2B2B;
    color: white;
    transform: translateY(-2px);
    border-color: #2B2B2B;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: transparent;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    background: #F5F1E8;
    margin-bottom: 1rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
}

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

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

.product-info {
    padding: 0;
    text-align: center;
    margin-bottom: 1rem;
}

.product-info a {
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
    color: var(--text-color);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.product-info a:hover h3 {
    color: #2B2B2B;
    opacity: 0.7;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-locked {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-locked .price-blur-bg {
    color: var(--text-light);
    filter: blur(5px);
    opacity: 0.3;
    user-select: none;
}

.product-price-locked .price-lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.product-price-locked .price-lock-overlay a {
    color: #2B2B2B;
    text-decoration: none;
}

.product-price-locked .price-lock-overlay a:hover {
    text-decoration: underline;
}

.fabric-card {
    cursor: default;
}

.fabric-card:hover {
    transform: none;
}

.fabric-card .product-image {
    cursor: default;
}

.fabric-card .product-info h3 {
    font-family: monospace;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: default;
}

.no-products {
    text-align: center;
    color: var(--text-light);
    padding: 3rem;
    font-size: 1.1rem;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    padding: 3rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-detail-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-detail-image img {
    width: 100%;
    height: auto;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-category {
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price-large {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2B2B2B;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 0.1rem;
}

.product-description-full,
.product-features {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.product-description-full h3,
.product-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

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

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-image img {
    width: 100%;
    height: auto;
}

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

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.value-card {
    background: #F5F1E8;
    padding: 2rem;
    border-radius: 4px;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4C4B0;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-link {
    color: #2B2B2B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #1A1A1A;
    text-decoration: underline;
}

/* ===== FORM STYLES ===== */
.contact-form {
    background: #F5F1E8;
    padding: 2rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2B2B2B;
}

.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header optimizations for mobile */
    .container {
        padding: 0 12px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo-image {
        height: 55px;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    /* Smaller icons on mobile */
    .icon-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .cart-count {
        font-size: 0.65rem;
        width: 16px;
        height: 16px;
        line-height: 16px;
    }
    
    /* Hide language selector on mobile - moved to hamburger menu */
    .language-switcher {
        display: none !important;
    }
    
    .nav-links {
        display: none;
    }
    
    
    .mobile-menu-btn {
        display: flex;
        padding: 0.5rem;
    }
    
    .mobile-menu-btn .bar {
        width: 22px;
    }
    
    /* Slider responsive */
    .hero-slider {
        padding: 0;
        margin: 0 0 1rem 0;
    }
    
    .slider-container {
        height: 450px;
        border-radius: 0;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slider-dots {
        right: 20px;
        bottom: 20px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-detail-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        padding: 0;
        margin: 0 0 0.75rem 0;
    }
    
    .slider-container {
        height: 400px;
        border-radius: 0;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-title {
        font-size: 2rem;
        letter-spacing: 0;
    }
    
    .slide-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-primary-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        right: 15px;
        bottom: 15px;
    }
    
    .categories,
    .features,
    .products-section {
        padding: 1.5rem 0;
    }
    
    .categories {
        padding-top: 0.5rem;
    }
}

/* ===== SHOPPING CART ===== */
/* Icon Buttons */
.icon-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.icon-btn:hover {
    background: #F5F1E8;
    color: #2B2B2B;
}

.cart-btn-minimal {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #E74C3C;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid white;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--text-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    font-size: 2rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.cart-item-fabric {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity button {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    background: #2B2B2B;
    color: white;
}

.cart-item-quantity span {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 600;
    color: #2B2B2B;
}

.cart-item-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #E74C3C;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-block {
    width: 100%;
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: -300px;
    background: #27AE60;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transition: right 0.3s ease;
}

.cart-notification.show {
    right: 20px;
}

/* Fabric Selection - Compact Version */
.fabric-selector {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #F5F1E8;
    border-radius: 4px;
}

.fabric-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.fabric-selector-header h3 {
    margin: 0;
}

.fabric-count {
    font-size: 0.9rem;
    color: var(--text-light);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Selected Fabric Display */
.selected-fabric-display {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 2px solid #2B2B2B;
}

.selected-fabric-image {
    width: 150px;
    max-height: 250px;
    border-radius: 8px;
    overflow: hidden;
    grid-row: 1 / 3;
}

.selected-fabric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-fabric-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    font-size: 3rem;
}

.selected-fabric-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.selected-fabric-code {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2B2B2B;
}

.selected-fabric-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.selected-fabric-material {
    font-size: 0.85rem;
    color: var(--text-light);
}

.selected-fabric-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2B2B;
    margin-top: 0.25rem;
}

.product-selectors {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.selector-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.selector-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.quantity-select,
.size-select {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    min-width: 70px;
    transition: border-color 0.2s;
}

.quantity-select:hover,
.size-select:hover {
    border-color: var(--primary-color);
}

.quantity-select:focus,
.size-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* Legacy support */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.quantity-selector label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.quantity-select:focus {
    outline: none;
    border-color: #2B2B2B;
}

.selected-fabric-actions {
    display: flex;
    align-items: flex-end;
}

.selected-fabric-actions .btn {
    width: 100%;
    max-width: 300px;
}

/* Compact Fabric Grid */
.fabric-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.fabric-item-compact {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

/* SADECE Safari için özel fix */
@supports (-webkit-hyphens:none) {
    .fabric-item-compact {
        aspect-ratio: auto;
        height: 0;
        padding-bottom: 100%;
    }
    
    .fabric-item-compact > * {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Safari scrollbar styling */
.fabric-grid-compact::-webkit-scrollbar {
    width: 6px;
}

.fabric-grid-compact::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.fabric-grid-compact::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.fabric-grid-compact::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.fabric-item-compact:hover {
    border-color: #2B2B2B;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.fabric-item-compact.selected {
    border-color: #2B2B2B;
    border-width: 3px;
}

.fabric-item-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fabric-item-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Safari için absolute positioning */
@supports (-webkit-hyphens:none) {
    .fabric-item-compact img,
    .fabric-item-no-image {
        position: absolute;
        top: 0;
        left: 0;
    }
}

.fabric-item-no-image {
    justify-content: center;
    background: var(--bg-light);
    font-size: 2rem;
}

.fabric-item-code {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Safari için kumaş kodu düzeltmesi - ALTA sabitle */
@supports (-webkit-hyphens:none) {
    .fabric-item-code {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        height: auto;
        min-height: 1.2rem;
        max-height: 1.5rem;
    }
}

.fabric-item-check {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #2B2B2B;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 2;
}

.fabric-item-compact.selected .fabric-item-check {
    display: flex;
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .fabric-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        max-height: 300px;
        gap: 0.5rem;
    }
    
    /* Safari mobilde de çalışsın */
    @supports (-webkit-hyphens:none) {
        .fabric-item-compact {
            height: 0;
            padding-bottom: 100%;
        }
    }
    
    .selected-fabric-display {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .selected-fabric-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        grid-row: auto;
    }
    
    .selected-fabric-info {
        align-items: center;
    }
    
    .selected-fabric-actions {
        align-items: center;
    }
    
    .selected-fabric-actions .btn {
        width: 100%;
        max-width: none;
    }
}

/* ===== MEGA MENU ===== */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.mega-menu {
    position: relative;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 4px;
    padding: 2rem;
    min-width: 600px;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    z-index: 1000;
    margin-top: 0.5rem;
}

.mega-menu:hover .mega-menu-content,
.mega-menu.active .mega-menu-content {
    display: grid;
}

.mega-menu-section h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2B2B2B;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.mega-menu-item {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mega-menu-item:hover {
    color: #2B2B2B;
    padding-left: 0.5rem;
}

.lang-btn .lang-name {
    display: none;
}

@media (max-width: 968px) {
    .mega-menu-content {
        position: fixed;
        left: 0;
        right: 0;
        transform: none;
        min-width: auto;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* Wholesale Highlight Link */
.nav-link-highlight {
    background: #2B2B2B;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-link-highlight:hover {
    transform: translateY(-1px);
    background: #444444;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-btn {
    position: relative;
}

.user-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-width: 200px;
    display: none;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.user-dropdown.active {
    display: block;
}

.user-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.user-dropdown-header strong {
    display: block;
    margin-bottom: 0.25rem;
}

.user-type-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #2B2B2B;
    color: white;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.user-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.user-dropdown-item:hover {
    background: #F5F1E8;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.25rem 0;
}

/* Product Price Blurred */
.product-price-blurred {
    position: relative;
    display: inline-block;
}

.price-blur-text {
    filter: blur(4px);
    opacity: 0.6;
    user-select: none;
    pointer-events: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2B2B;
}

.price-lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
}

.price-lock-overlay a {
    color: #2B2B2B;
    text-decoration: none;
}

.price-lock-overlay a:hover {
    text-decoration: underline;
}

/* Fabric Price Blurred */
.selected-fabric-price-blurred {
    margin-top: 0.5rem;
}

.fabric-price-blur {
    filter: blur(4px);
    opacity: 0.6;
    user-select: none;
    pointer-events: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2B2B;
}

/* Fabric Action Login */
.fabric-action-login {
    text-align: center;
    padding: 1rem;
    background: #F5F1E8;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
}

.fabric-action-login a {
    color: #2B2B2B;
    text-decoration: none;
    font-weight: 600;
}

.fabric-action-login a:hover {
    text-decoration: underline;
}

/* Price Login Required */
.price-login-required {
    color: var(--text-color);
    font-size: 1.2rem;
}

.price-login-required a {
    color: #2B2B2B;
    text-decoration: none;
    font-weight: 600;
}

.price-login-required a:hover {
    text-decoration: underline;
}

/* Mobile Responsive for Product Selectors */
@media (max-width: 768px) {
    .product-selectors {
        gap: 1rem;
    }
    
    .selector-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }
    
    .selector-group label {
        font-size: 0.85rem;
    }
    
    .quantity-select,
    .size-select {
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }
}
