/* ================================================================
   ESC MOBILYA v1 — Modern Furniture Theme
   Color Palette: Warm earth tones + clean modern
   ================================================================ */

:root {
    --primary: #8B6914;
    --primary-light: #B08D3A;
    --primary-dark: #6B4F0E;
    --secondary: #2D2D2D;
    --accent: #C8956C;
    --bg: #FFFFFF;
    --bg-warm: #F9F6F1;
    --bg-dark: #1A1A1A;
    --text: #444444;
    --text-light: #777777;
    --text-dark: #1A1A1A;
    --border: #E8E4DD;
    --border-light: #F0ECE5;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1280px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139,105,20,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo .logo-img {
    height: 75px;
    width: auto;
}

.site-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Desktop Nav */
.desktop-nav { display: flex; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu .nav-menu-item {}

.nav-menu .nav-menu-link {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-menu .nav-menu-link:hover,
.nav-menu .nav-menu-item.active > .nav-menu-link {
    color: var(--primary);
    background: rgba(139,105,20,0.06);
}

/* Submenu */
.nav-menu .has-submenu { position: relative; }

.nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

.nav-menu .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .submenu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text);
}

.nav-menu .submenu a:hover {
    color: var(--primary);
    background: var(--bg-warm);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.header-phone svg { width: 16px; height: 16px; }

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav-list {
    flex: 1;
    padding: 16px 24px;
}

.mobile-nav-list li { border-bottom: 1px solid var(--border-light); }

.mobile-nav-list a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-nav-list a:hover { color: var(--primary); }

.mobile-nav-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.mobile-nav-footer svg { width: 16px; height: 16px; }

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.menu-overlay.open { opacity: 1; visibility: visible; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    margin-top: 0;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: var(--white);
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-pagination {
    position: absolute;
    bottom: 30px !important;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section {
    padding: 100px 0;
}

.bg-warm { background: var(--bg-warm); }

.section-header {
    margin-bottom: 60px;
}

.section-header.text-center { text-align: center; }

.section-tag {
    display: inline-block;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mt-60 { margin-top: 60px; }

/* ================================================================
   PAGE HEADER
   ================================================================ */
.page-header {
    padding: 140px 0 60px;
    background: var(--bg-warm);
    text-align: center;
}

.page-header-sm { padding: 120px 0 30px; }

.page-header-content {}

.page-title {
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-nav a { color: var(--text); }
.breadcrumb-nav a:hover { color: var(--primary); }

/* Category Page Header */
.page-header-category {
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.page-header-category .page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.page-header-category .page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-category .page-title { color: var(--white); }
.page-header-category .page-subtitle { color: rgba(255,255,255,0.85); }
.page-header-category .breadcrumb-nav { color: rgba(255,255,255,0.7); }
.page-header-category .breadcrumb-nav a { color: rgba(255,255,255,0.9); }

/* ================================================================
   CATEGORIES
   ================================================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.categories-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
}

.category-card-lg { aspect-ratio: 3/2; }

.category-card-img {
    position: absolute;
    inset: 0;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-card-img img {
    transform: scale(1.08);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
    z-index: 2;
}

.category-card-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4px;
}

.category-card-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.category-card-link svg { width: 14px; height: 14px; }

.category-card:hover .category-card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
/* Isotope uyumlu layout — CSS Grid yerine float/percentage */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.products-grid .product-card-wrap {
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
}

.products-grid-4 .product-card-wrap {
    width: calc(25% - 30px);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card-img {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-cat {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.product-card-title a {
    color: var(--text-dark);
}

.product-card-title a:hover { color: var(--primary); }

.product-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.product-card-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition);
}

.product-card-btn svg { width: 14px; height: 14px; }
.product-card-btn:hover { color: var(--primary); }

/* ================================================================
   FILTER BAR
   ================================================================ */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ================================================================
   FEATURES
   ================================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--bg-warm);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary);
}

.feature-card-icon i { font-size: 28px; }

.feature-card-title {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================================================
   ABOUT HOME
   ================================================================ */
.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-home-img {
    position: relative;
}

.about-home-img img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.about-home-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.exp-text {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-home-content .section-tag { margin-bottom: 12px; }
.about-home-content .section-title { margin-bottom: 20px; }

.about-home-stats {
    display: flex;
    gap: 40px;
    margin: 36px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* About Detail */
.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-detail-img img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.about-text { margin-bottom: 20px; }
.about-text-content { color: var(--text-light); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #F5A623;
    color: #F5A623;
}

.testimonial-text {
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonials-pagination { margin-top: 30px; text-align: center; }

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ================================================================
   BLOG CARDS
   ================================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.blog-card-img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-card-meta svg { width: 14px; height: 14px; }

.blog-card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.blog-card-title a { color: var(--text-dark); }
.blog-card-title a:hover { color: var(--primary); }

.blog-card-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-link svg { width: 14px; height: 14px; }

.blog-card-link:hover { color: var(--primary-dark); }

/* ================================================================
   BLOG DETAIL
   ================================================================ */
.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.blog-detail-header { margin-bottom: 30px; }

.blog-detail-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-detail-meta svg { width: 15px; height: 15px; }

.blog-detail-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.blog-detail-image {
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-detail-image img { width: 100%; }

.blog-detail-content {
    font-size: 16px;
    line-height: 1.8;
}

.blog-detail-content p { margin-bottom: 1.2rem; }
.blog-detail-content h2, .blog-detail-content h3 { margin: 2rem 0 1rem; }
.blog-detail-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-detail-content ul, .blog-detail-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-detail-content li { margin-bottom: 0.5rem; list-style: disc; }

/* Blog Share */
.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.blog-detail-share > span {
    font-weight: 600;
    font-size: 14px;
}

.share-buttons { display: flex; gap: 8px; }

.share-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    color: var(--white);
}

.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wp { background: #25d366; }

.share-btn:hover { opacity: 0.9; color: var(--white); }

/* Sidebar */
.blog-detail-sidebar {}

.sidebar-widget {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-posts { display: flex; flex-direction: column; gap: 16px; }

.sidebar-post {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sidebar-post img {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-post h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post span { font-size: 12px; color: var(--text-light); }
.sidebar-post:hover h5 { color: var(--primary); }

.sidebar-cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.sidebar-cta h4 { color: var(--white); margin-bottom: 8px; }
.sidebar-cta p { font-size: 14px; opacity: 0.9; margin-bottom: 16px; }

.sidebar-cta .btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ================================================================
   PRODUCT DETAIL
   ================================================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-main-image img { width: 100%; }

.product-detail-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-detail-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 16px;
}

.product-detail-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-detail-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-detail-desc p { margin-bottom: 1rem; }

.product-detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
    padding: 24px;
    background: var(--bg-warm);
    border-radius: var(--radius);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.meta-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.product-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--bg-warm);
    border-radius: 50%;
    color: var(--primary);
}

.contact-card-icon svg { width: 24px; height: 24px; }

.contact-card h4 { margin-bottom: 8px; font-size: 1rem; }
.contact-card p { font-size: 14px; color: var(--text-light); margin: 0; }
.contact-card a { color: var(--primary); }

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.contact-form-wrap .section-title { margin-bottom: 12px; }

/* Forms */
.contact-form { margin-top: 30px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,105,20,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success svg { width: 60px; height: 60px; color: #27ae60; margin-bottom: 16px; }
.form-success h4 { margin-bottom: 8px; }

/* Contact Info Side */
.contact-info-card {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-info-card h3 { margin-bottom: 12px; }
.contact-info-card > p { color: var(--text-light); margin-bottom: 24px; }

.contact-info-details { display: flex; flex-direction: column; gap: 20px; }

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.info-item span, .info-item a { font-size: 14px; color: var(--text-light); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-title {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font);
    font-weight: 600;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-links li a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    margin: 0;
}

.footer-credit a { color: var(--primary-light); }
.footer-credit a:hover { color: var(--white); }

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.empty-state svg { width: 60px; height: 60px; margin-bottom: 16px; opacity: 0.4; }
.empty-state h3 { margin-bottom: 8px; color: var(--text); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1200px) {
    .products-grid-4 .product-card-wrap { width: calc(33.333% - 30px); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 991px) {
    .section { padding: 70px 0; }

    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    .header-phone span { display: none; }

    .products-grid .product-card-wrap,
    .products-grid-4 .product-card-wrap { width: calc(50% - 30px); }

    .blog-grid { grid-template-columns: repeat(2, 1fr); }

    .about-home-grid,
    .about-detail-grid,
    .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }

    .blog-detail-grid { grid-template-columns: 1fr; }
    .blog-detail-sidebar { order: -1; }

    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }

    .about-home-experience { right: 20px; }
}

@media (max-width: 767px) {
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 36px; }

    .hero-slide { min-height: 500px; max-height: 700px; }
    .hero-content { padding-top: 80px; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .categories-grid,
    .categories-grid-large { grid-template-columns: 1fr 1fr; gap: 16px; }

    .products-grid .product-card-wrap,
    .products-grid-4 .product-card-wrap { width: calc(50% - 20px); margin: 0 10px 20px; }
    .products-grid { margin: 0 -10px; }

    .blog-grid { grid-template-columns: 1fr; }

    .contact-cards { grid-template-columns: 1fr 1fr; gap: 16px; }

    .form-row { grid-template-columns: 1fr; }

    .filter-bar { gap: 6px; }
    .filter-btn { padding: 8px 16px; font-size: 13px; }

    .product-detail-meta { grid-template-columns: 1fr; }

    .about-home-stats { gap: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .categories-grid { grid-template-columns: 1fr; }

    .products-grid .product-card-wrap,
    .products-grid-4 .product-card-wrap { width: 100%; margin: 0 0 16px; }
    .products-grid { margin: 0; }

    .contact-cards { grid-template-columns: 1fr; }

    .about-home-stats { flex-direction: column; gap: 16px; }

    .product-detail-actions { flex-direction: column; }
    .product-detail-actions .btn { width: 100%; justify-content: center; }
}