:root {
    --primary: #1a1a1a;
    --secondary: #8b7355;
    --accent: #c9a962;
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --border: #e5e3df;
    --gold: #c9a962;
    --cream: #f5f0e8;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.header-top {
    background: #ffffff;
    color: #333;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-left .company-name {
    font-weight: 700;
    color: #b89b7a;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-top-left a {
    color: #333;
    transition: color 0.3s;
    font-size: 14px;
}

.header-top-left a:hover {
    color: #b89b7a;
}

.header-top-left a .fa-instagram {
    color: #E1306C;
}

.header-top-left a .fa-facebook {
    color: #1877F2;
}

.header-top-left a .fa-whatsapp {
    color: #25D366;
}

.header-top-right {
    display: flex;
    gap: 15px;
}

.header-top-right a {
    transition: color 0.3s;
}

.header-top-right a:hover {
    color: var(--gold);
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    order: 0;
}

.nav {
    order: 0;
    margin-left: 0;
}

.header-actions {
    margin-left: auto;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    display: none;
}

.logo-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    order: -1;
    margin-right: 30px;
    position: relative;
    z-index: 100;
}

@media (min-width: 993px) {
    .header-actions {
        margin-left: auto;
    }
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-btn {
    font-size: 18px;
    color: var(--text-muted);
    transition: color 0.3s;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    pointer-events: auto;
    z-index: 1001;
    position: relative;
}

.admin-btn:hover {
    color: var(--primary);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link.active {
    color: var(--secondary);
}

/* Hero */
.hero {
    margin-top: 140px;
    position: relative;
    height: 1100px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-slide::before {
    content: '';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    border-radius: 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    max-width: 400px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary);
    color: white;
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Categories */
.categories {
    padding: 100px 0;
    background: var(--bg-white);
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 40px 0;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.category-nav a {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.category-nav a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.category-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 12px;
    scroll-margin-top: 100px;
}

.category-title {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.photo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.photo-nav {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.photo-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.category-photos {
    display: flex;
    gap: 15px;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    width: 100%;
}

.category-photos::-webkit-scrollbar {
    display: none;
}

.category-photos img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.category-photos img:hover {
    transform: scale(1.4);
    cursor: pointer;
}

.category-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.category-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.category-actions {
    display: flex;
    gap: 12px;
}

.category-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
}

.category-actions button:last-child {
    background: #25D366;
}

.category-actions button:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .category-card {
        min-width: 300px;
    }
}

@media (max-width: 576px) {
    .category-card {
        min-width: 260px;
        flex-direction: column;
        align-items: stretch;
    }
}

/* Products */
.products {
    padding: 100px 0;
    background: var(--bg-light);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--border);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.products-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    min-width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

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

.product-image {
    aspect-ratio: 1/1;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

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

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.95);
    transition: bottom 0.3s;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.product-action-btn:hover {
    background: var(--secondary);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-name {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

/* About */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
}

.about-slogan {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.about-quiet {
    font-size: 15px;
    font-style: italic;
    color: #666;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px;
    padding: 15px;
    border-left: 3px solid var(--primary);
    background: #fafafa;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features i {
    color: var(--gold);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Featured Gallery */
.featured-gallery {
    padding: 100px 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    max-height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.video-desc {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text);
}

.video-item {
    position: relative;
}

.video-item video {
    cursor: pointer;
    transition: transform 0.3s;
}

.video-item::after {
    content: '▶ Play';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    pointer-events: none;
}

.video-item:hover::after {
    content: '▶ Tıkla & İzle';
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Instagram Feed */
.instagram-feed {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.insta-username {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.insta-item {
    position: relative;
    aspect-ratio: 3/4;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    max-height: 350px;
}

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

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-overlay i {
    color: white;
    font-size: 24px;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-item {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.contact-item i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-family: inherit;
    background: var(--bg-white);
    border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.cart-modal.active {
    visibility: visible;
    opacity: 1;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.cart-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 450px;
    max-width: 100%;
    background: var(--bg-white);
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-modal.active .cart-panel {
    transform: translateX(0);
}

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

.cart-header h3 {
    font-size: 20px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

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

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 50px 0;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 80px;
    height: 100px;
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
}

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

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

.cart-item-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--secondary);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
}

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

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart-footer .btn {
    width: 100%;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--bg-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-top-left span:nth-child(2) {
        display: none;
    }
    
    .header-top-left span:nth-child(3) {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-main .container {
        justify-content: flex-start;
    }
    
    .menu-toggle {
        order: -2;
        display: flex;
    }
    
    .logo {
        order: -1;
        margin-right: auto;
    }
    
    .header-actions {
        margin-left: auto;
        order: -1;
    }
    
    .admin-btn {
        display: inline-block;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .header-main .container {
        gap: 10px;
    }
    
    .menu-toggle {
        display: flex;
        order: -2;
    }
    
    .logo {
        order: -1;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .cart-btn {
        font-size: 18px;
    }
    
    .admin-btn {
        font-size: 16px;
    }
    
    .hero {
        height: 400px;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 100px 15px 40px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .categories {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card h3 {
        font-size: 12px;
    }
    
    .products {
        padding: 60px 0;
    }
    
    .products-filter {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .about-features li {
        font-size: 14px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-item i {
        font-size: 24px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-col a, .footer-col p {
        font-size: 13px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
    
    .cart-panel {
        width: 100%;
    }
}

/* Quick View Modal */
.quick-view-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quick-view {
    background: white;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 1;
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.quick-view-image {
    aspect-ratio: 3/4;
    background: var(--cream);
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-info {
    padding: 40px 30px;
}

.quick-view-category {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.quick-view-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quick-view-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 25px;
}

.quick-view-info .btn {
    width: 100%;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .quick-view-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-view-image {
        aspect-ratio: 1;
    }
    
    .quick-view-info {
        padding: 25px;
    }
    
    .quick-view-info h2 {
        font-size: 20px;
    }
    
    .quick-view-price {
        font-size: 22px;
    }
}

/* Order Form Modal */
.order-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-form {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.order-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.order-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.order-form input,
.order-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    font-size: 14px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.order-form input:focus,
.order-form select:focus {
    outline: none;
    border-color: var(--secondary);
}

.order-form .btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .order-form {
        padding: 30px 20px;
    }
    
    .order-form h3 {
        font-size: 20px;
    }
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #b89b7a;
    color: #b89b7a;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.lang-btn:hover, .lang-btn.active {
    background: #b89b7a;
    color: #fff;
}

/* Currency Switcher */
.currency-switch select {
    background: transparent;
    border: 1px solid #b89b7a;
    color: #b89b7a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 10px;
}

.currency-switch select:focus {
    outline: none;
}

/* Tracking Modal */
.tracking-modal, .order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.tracking-modal.active, .order-modal.active {
    display: block;
}

.tracking-content, .order-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 50px auto;
}

.tracking-info {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.tracking-info p {
    margin-bottom: 10px;
    color: #333;
}

.header-top-right {
    margin-left: auto;
}

/* Mobile Responsive for New Sections */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .insta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .featured-gallery,
    .video-section,
    .instagram-feed {
        padding: 60px 0;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #b89b7a;
}