/* style.css */
:root {
    /* Colors */
    --primary: #C5A880;
    /* Soft gold/sand tone */
    --primary-dark: #b09168;
    --primary-light: #f3efe9;
    --text-dark: #868686;
    --text-light: #666666;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #EAEAEA;
    --accent: #E5C3C6;
    /* Soft dusty rose */
    --danger: #e74c3c;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Modasahre Specific Styles */

/* Top Bar */
.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.5px;
}
.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
@media (max-width: 768px) {
    .top-bar-container { flex-direction: column; gap: 5px; }
}

/* New Header */
.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px 10px;
    width: 250px;
}
.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
    padding: 5px;
}
.search-box button {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}
.header-center {
    flex: 1;
    text-align: center;
}
.header-logo {
    font-family: 'Great Vibes', 'Playfair Display', cursive;
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}
.header-icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}
.header-icon-link i {
    font-size: 16px;
}

/* Category Navigation */
.cat-nav {
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}
.cat-nav-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 20px;
    flex-wrap: wrap;
}
.cat-nav-list a {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.cat-nav-list a:hover {
    color: #d9534f;
}

/* Circular Categories */
.circle-categories {
    padding: 40px 20px;
    background: #fff;
}
.circle-cats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.circle-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100px;
    cursor: pointer;
    text-decoration: none;
}
.circle-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #e74c3c;
    padding: 2px;
    object-fit: cover;
    background-color: #fff;
    img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }
}
.circle-cat span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    text-align: center;
    letter-spacing: 0.5px;
}
.circle-cat:hover .circle-img {
    transform: scale(1.05);
    transition: 0.3s;
}

/* Trust & Social Section */
.trust-social-section {
    width: 100%;
}
.trust-bar {
    background: #f9f9f9;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 50px;
    border-right: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}
.trust-item:last-child {
    border-right: none;
}
.trust-item i {
    font-size: 32px;
    color: #222;
}
.social-follow {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}
.social-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 32px;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    color: #333;
}
.social-title i {
    font-size: 36px;
}
.instagram-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.instagram-btn:hover {
    transform: translateY(-3px);
    background: #000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #fff;
}
@media (max-width: 992px) {
    .trust-bar { gap: 30px; }
}
@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 20px;
    }
    .trust-item {
        border-right: none;
        padding: 0;
        text-align: center;
    }
    .social-title { font-size: 24px; }
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
}

/* Size Chart Modal */
.size-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}
.size-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.close-size-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}
.close-size-modal:hover { color: var(--danger); }
.size-chart-img {
    width: 100%;
    height: auto;
    display: block;
}
.btn-size-chart {
    background: none;
    border: none;
    color: var(--primary-dark);
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    margin-left: 10px;
    font-weight: 500;
}
.btn-size-chart:hover { color: #000; }

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Components */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title .divider {
    height: 2px;
    width: 40px;
    background-color: #e74c3c;
    margin: 0 auto 16px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.navbar:not(.scrolled) .mobile-menu-btn,
.navbar:not(.scrolled) .nav-links a {
    color: var(--bg-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    position: relative;
}

.navbar:not(.scrolled) .nav-links.desktop-links a {
    color: var(--bg-white);
}

/* Underline effect */
.nav-links.desktop-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition);
}

.nav-links.desktop-links a:hover::after,
.nav-links.desktop-links a.active::after {
    width: 100%;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 60px;
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.navbar:not(.scrolled) .logo-img {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-icons .icon-link {
    font-size: 18px;
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1001;
    transition: var(--transition);
    padding: 60px 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-logo {
    text-align: center;
    margin-bottom: 40px;
}

.mobile-logo img {
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
}

.mobile-menu ul {
    flex: 1;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu ul li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: auto;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-social a:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1549298240-0d8e60513026?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center 20%;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    position: relative;
    display: inline-block;
}

.subtitle::before,
.subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--bg-white);
}

.subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.hero .btn-primary:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

/* Services Banner */
.services-banner {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
    background-color: var(--primary-light);
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    font-weight: 500;
}

.service-item i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Categories Section */
.categories {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.cat-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cat-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0.8;
    transition: var(--transition);
}

.category-card:hover .cat-img {
    transform: scale(1.05);
}

.category-card:hover .cat-img::after {
    opacity: 1;
}

.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--bg-white);
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

.category-card:hover .cat-content {
    transform: translateY(0);
}

.cat-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.btn-link {
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.category-card:hover .btn-link {
    opacity: 1;
    visibility: visible;
}

.btn-link i {
    transition: transform 0.3s;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Featured Products */
.featured {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}



.product-img-box {
    position: relative;
    padding-bottom: 133%; /* 3:4 aspect ratio */
    overflow: hidden;
    background-color: #f8f8f8;
    margin-bottom: 15px;
}

.prod-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .prod-img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.badge.new {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.badge.discount {
    background-color: var(--danger);
    color: var(--bg-white);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: none;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.action-btn:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.add-to-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.product-card:hover .add-to-cart-btn {
    bottom: 0;
}

.add-to-cart-btn:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.product-info {
    text-align: center;
}

.product-info h4 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.product-card:hover .product-info h4 {
    color: var(--primary);
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.price {
    font-weight: 500;
    color: var(--text-dark);
}

.discount-price {
    color: #dc2626;
    font-weight: 700;
}

.old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #f7f7f7;
    color: #333;
    padding-top: 60px;
    border-top: 1px solid #eaeaea;
}

.footer-col h3 {
    color: #000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-col ul li a {
    color: #666;
    font-size: 13px;
}

.brand-col p {
    color: #666;
    margin-bottom: 20px;
    font-size: 13px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #eee;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
}
.social-links a:hover {
    background-color: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.newsletter p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #333;
    font-family: var(--font-body);
    outline: none;
    font-size: 13px;
}
.newsletter-form input::placeholder {
    color: #999;
}
.newsletter-form button {
    color: #333;
}
.newsletter-form button:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    color: #666;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.brand-col p {
    color: #a0a0a0;
    margin-bottom: 24px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.social-links a:hover {
    background-color: var(--primary);
}

.footer-col h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0a0a0;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.newsletter p {
    color: #a0a0a0;
    font-size: 15px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .desktop-links {
        display: none;
    }

    .logo {
        position: static;
        transform: none;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .services-banner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .categories {
        padding: 60px 20px;
    }

    .featured {
        padding: 60px 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* --- Mobil iyileştirmeler --- */
.product-filters-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: end;
}

@media (min-width: 640px) {
    .product-filters-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .product-filters-bar {
        grid-template-columns: 140px 140px 120px 140px auto auto;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: auto !important;
        height: auto !important;
        flex-direction: column;
        justify-content: flex-start;
    }

    .home-hero .hero-bg {
        position: relative !important;
        height: 42vh;
        min-height: 220px;
    }

    .home-hero .hero-content--boxed,
    .home-hero .hero-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: none !important;
        width: 100%;
        text-align: center !important;
        padding: 24px 18px 32px !important;
        box-sizing: border-box;
    }

    .home-hero .home-hero__title {
        font-size: clamp(1.6rem, 7vw, 2.25rem) !important;
        line-height: 1.2 !important;
    }

    .home-hero .home-hero__subtitle::before,
    .home-hero .home-hero__subtitle::after {
        display: none;
    }

    .main-header .header-container {
        flex-wrap: wrap;
        gap: 12px;
        padding: 0 14px;
    }

    .main-header .header-left {
        order: 2;
        flex: 1 1 100%;
        min-width: 0;
    }

    .main-header .header-center {
        order: 1;
        flex: 1 1 auto;
        text-align: left;
        min-width: 0;
    }

    .main-header .header-right {
        order: 3;
        flex: 1 1 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 6px 10px;
        padding-top: 8px;
        border-top: 1px solid #f0f0f0;
    }

    .main-header .search-box {
        width: 100%;
        max-width: none;
    }

    .main-header .header-logo {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .main-header .header-icon-link {
        flex: 1;
        justify-content: center;
        min-height: 44px;
        padding: 6px 4px;
        font-size: 10px;
        text-align: center;
        flex-direction: column;
        gap: 2px;
    }

    .main-header .header-icon-link i {
        font-size: 17px;
    }

    .main-header .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        margin-left: 8px !important;
    }

    .review-img {
        height: auto;
        max-height: min(360px, 62vw);
        min-height: 200px;
    }

    .category-card {
        height: auto;
        min-height: 280px;
        aspect-ratio: 3 / 4;
        max-height: 85vh;
    }

    .circle-categories {
        padding: 24px 12px;
    }

    .circle-cats-container {
        gap: 16px 12px;
    }

    .circle-cat {
        width: 76px;
    }

    .circle-img {
        width: 72px;
        height: 72px;
    }

    .section-title h2 {
        font-size: 1.35rem;
    }

    #product-detail-container {
        flex-direction: column !important;
        gap: 28px !important;
    }

    #prod-img-box {
        height: auto !important;
        min-height: 280px !important;
        aspect-ratio: 3 / 4;
        max-height: 72vh;
    }
}

@media (max-width: 380px) {
    .main-header .header-icon-link {
        font-size: 0;
        flex: 0 1 auto;
        min-width: 44px;
    }

    .main-header .header-icon-link i {
        font-size: 20px;
    }
}

@media (hover: none), (max-width: 768px) {
    .product-card .product-actions {
        opacity: 1;
        transform: none;
    }

    .product-card .add-to-cart-btn {
        bottom: 0;
    }

    .product-card:hover .prod-img {
        transform: none;
    }
}

/* Düşük güç / hareket azalt tercihi: animasyon yükünü hafifletir */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}