/* ========================================================
   ASHIRWAD FURNITURE — Premium Stylesheet
   ======================================================== */

/* --- Google Fonts (fallback, loaded in header) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #8B5E3C;
    --primary-dark: #6B4427;
    --primary-light: #C4956A;
    --accent: #D4A574;
    --bg: #FAF7F2;
    --bg-warm: #F5EFE6;
    --white: #FFFFFF;
    --text-dark: #2C1A0E;
    --text-mid: #5C4033;
    --text-light: #A08070;
    --border: #E5D5C5;
    --shadow: 0 4px 24px rgba(139, 94, 60, 0.10);
    --shadow-hover: 0 8px 40px rgba(139, 94, 60, 0.18);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: 0.3s ease;
    --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; outline: none; border: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.3; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text-mid); line-height: 1.75; }

/* --- Layout --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-warm { background: var(--bg-warm); }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* --- Section Header --- */
.section-header { margin-bottom: 48px; }
.section-tag {
    font-size: 12px; text-transform: uppercase; letter-spacing: 3px;
    color: var(--primary-light); font-weight: 600; margin-bottom: 10px;
}
.section-desc { color: var(--text-light); max-width: 560px; margin: 12px auto 0; }

/* ========================================================
   LOADER
   ======================================================== */
#loader {
    position: fixed; inset: 0; background: var(--bg);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
    font-family: 'Playfair Display', serif; font-size: 2rem;
    color: var(--primary); letter-spacing: 6px; margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}
.loader-bar { width: 200px; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--primary); border-radius: 2px; animation: load 1.8s ease-in-out infinite; }
@keyframes load { 0% { width: 0; } 60% { width: 100%; } 100% { width: 100%; opacity: 0; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ========================================================
   HEADER
   ======================================================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 247, 242, 0.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-height);
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); letter-spacing: 3px; }
.logo-sub { font-size: 9px; letter-spacing: 4px; color: var(--text-light); text-transform: uppercase; font-weight: 500; }

.main-nav { display: flex; gap: 36px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-mid); letter-spacing: 0.5px; transition: color var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); font-size: 15px; transition: all var(--transition); position: relative;
}
.icon-btn:hover { background: var(--bg-warm); color: var(--primary); }
.cart-count {
    position: absolute; top: 3px; right: 3px; width: 17px; height: 17px;
    background: var(--primary); color: #fff; border-radius: 50%;
    font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
    display: none;
}
.cart-count.visible { display: flex; }

.hamburger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; font-size: 18px; color: var(--text-mid); }

/* Search Bar */
.search-bar-wrap {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    border-top: 1px solid transparent; background: var(--white);
}
.search-bar-wrap.open { max-height: 80px; padding: 12px 0; border-top-color: var(--border); }
.search-form { display: flex; align-items: center; gap: 8px; max-width: 600px; margin: 0 auto; }
.search-form input {
    flex: 1; padding: 10px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
    background: var(--bg); font-size: 14px; transition: border-color var(--transition);
}
.search-form input:focus { border-color: var(--primary); }
.search-form button {
    padding: 10px 18px; border-radius: var(--radius); background: var(--primary); color: var(--white);
    font-size: 14px; transition: background var(--transition);
}
.search-form button:hover { background: var(--primary-dark); }

main { padding-top: var(--header-height); }

/* ========================================================
   HERO SLIDER
   ======================================================== */
.hero-slider {
    position: relative; height: calc(100vh - var(--header-height)); min-height: 500px;
    overflow: hidden; background: #2C1A0E;
}
.slides-wrapper { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,26,14,0.75) 0%, rgba(44,26,14,0.30) 100%); }
.slide-content {
    position: absolute; left: 8%; bottom: 15%; color: var(--white); max-width: 580px;
    animation: slideUp 0.8s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.slide-tag { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 600; }
.slide-content h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); color: var(--white); margin-bottom: 16px; }
.slide-content p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem; }

.slide-prev, .slide-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.15);
    color: #fff; font-size: 18px; backdrop-filter: blur(4px);
    transition: background var(--transition); z-index: 10;
}
.slide-prev:hover, .slide-next:hover { background: var(--primary); }
.slide-prev { left: 24px; }
.slide-next { right: 24px; }
.slide-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--transition); }
.dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
    border-radius: var(--radius); font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
    transition: all var(--transition); cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,94,60,0.3); }
.btn-light { background: rgba(255,255,255,0.15); color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.btn-light:hover { background: var(--white); color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.btn-cart {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
    background: var(--primary); color: var(--white); border-radius: var(--radius-sm);
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px; transition: all var(--transition);
}
.btn-cart:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ========================================================
   CATEGORIES
   ======================================================== */
.categories-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.category-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 3/4; background-size: cover; background-position: center;
    cursor: pointer; transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-6px); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,26,14,0.75) 0%, rgba(44,26,14,0.1) 60%); transition: background var(--transition); }
.category-card:hover .cat-overlay { background: linear-gradient(to top, rgba(139,94,60,0.8) 0%, rgba(44,26,14,0.2) 60%); }
.cat-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 16px; color: var(--white); text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.cat-label i { font-size: 1.5rem; }
.cat-label span { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; }

/* ========================================================
   PRODUCT CARDS
   ======================================================== */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px;
}
.product-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img-wrap { display: block; position: relative; overflow: hidden; aspect-ratio: 4/3; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay {
    position: absolute; inset: 0; background: rgba(44,26,14,0.35); opacity: 0;
    display: flex; align-items: center; justify-content: center; transition: opacity var(--transition);
}
.product-overlay span { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 1px; padding: 10px 20px; border: 1.5px solid rgba(255,255,255,0.7); border-radius: 30px; }
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 18px; }
.product-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--primary-light); font-weight: 600; }
.product-name { margin: 6px 0 14px; font-size: 1rem; }
.product-name a:hover { color: var(--primary); }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--primary); }

/* ========================================================
   OFFER BANNER
   ======================================================== */
.offer-banner {
    background-image: linear-gradient(135deg, rgba(44,26,14,0.88) 0%, rgba(107,68,39,0.85) 100%),
        url('https://images.unsplash.com/photo-1617806118233-18e1de247200?w=1600');
    background-size: cover; background-position: center; background-attachment: fixed;
    padding: 90px 24px; text-align: center; color: var(--white);
}
.offer-tag { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.offer-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.offer-banner p { max-width: 500px; margin: 0 auto 32px; color: rgba(255,255,255,0.8); }

/* ========================================================
   WHY SECTION
   ======================================================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card { text-align: center; padding: 36px 24px; }
.why-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(139,94,60,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.why-icon i { font-size: 1.5rem; color: var(--primary); }
.why-card h3 { margin-bottom: 12px; }
.why-card p { font-size: 14px; }

/* ========================================================
   PAGE BANNER
   ======================================================== */
.page-banner {
    position: relative; padding: 100px 0 60px;
    background-image: linear-gradient(135deg, rgba(44,26,14,0.85) 0%, rgba(107,68,39,0.7) 100%),
        url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1600');
    background-size: cover; background-position: center; color: var(--white); text-align: center;
}
.page-banner-sm { padding: 70px 0 40px; }
.about-banner { background-image: linear-gradient(135deg, rgba(44,26,14,0.85) 0%, rgba(107,68,39,0.7) 100%), url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?w=1600'); }
.contact-banner { background-image: linear-gradient(135deg, rgba(44,26,14,0.85) 0%, rgba(107,68,39,0.7) 100%), url('https://images.unsplash.com/photo-1617806118233-18e1de247200?w=1600'); }
.page-banner-overlay { position: absolute; inset: 0; }
.page-banner .container { position: relative; }
.page-banner h1 { color: var(--white); margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ========================================================
   SHOP PAGE
   ======================================================== */
.shop-layout { display: grid; grid-template-columns: 270px 1fr; gap: 40px; }
.shop-sidebar { flex-shrink: 0; }
.sidebar-box { background: var(--white); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow); }
.sidebar-box h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-search-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.sidebar-search-wrap input { flex: 1; padding: 10px 12px; background: transparent; font-size: 13px; }
.sidebar-search-wrap button { padding: 10px 14px; background: var(--primary); color: var(--white); font-size: 13px; transition: background var(--transition); }
.sidebar-search-wrap button:hover { background: var(--primary-dark); }
.category-list { display: flex; flex-direction: column; gap: 4px; }
.cat-filter-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text-mid); transition: all var(--transition); }
.cat-filter-link:hover, .cat-filter-link.active { background: var(--primary); color: var(--white); }
.cat-count { font-size: 11px; background: rgba(0,0,0,0.08); padding: 2px 8px; border-radius: 20px; }
.cat-filter-link.active .cat-count { background: rgba(255,255,255,0.2); }
.sidebar-promo { background: var(--primary); text-align: center; }
.sidebar-promo p { color: rgba(255,255,255,0.9); margin-bottom: 14px; font-size: 14px; }
.sidebar-promo a { display: inline-block; padding: 8px 20px; background: var(--white); color: var(--primary); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; transition: all var(--transition); }
.sidebar-promo a:hover { background: var(--accent); color: var(--white); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.result-count { font-size: 14px; color: var(--text-light); }
.clear-filters { font-size: 13px; color: var(--primary); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.clear-filters:hover { color: var(--primary-dark); }
.no-results { text-align: center; padding: 80px 40px; }
.no-results i { font-size: 3rem; color: var(--border); margin-bottom: 20px; }
.no-results h3 { margin-bottom: 10px; }

/* Breadcrumb */
.breadcrumb-bar { background: var(--bg-warm); padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-bar .container { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); flex-wrap: wrap; }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar span { color: var(--border); }

/* ========================================================
   PRODUCT DETAIL
   ======================================================== */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.main-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 4/3; }
.main-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.main-img-wrap:hover img { transform: scale(1.04); }
.product-cat-badge { display: inline-block; padding: 4px 14px; background: rgba(139,94,60,0.1); color: var(--primary); border-radius: 20px; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.product-detail-info h1 { font-size: 2rem; margin-bottom: 10px; }
.product-stars { color: var(--accent); margin-bottom: 12px; }
.product-stars span { color: var(--text-light); font-size: 13px; margin-left: 6px; }
.product-detail-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary); font-weight: 700; margin-bottom: 16px; }
.product-detail-desc { color: var(--text-mid); margin-bottom: 24px; font-size: 0.95rem; line-height: 1.8; }
.product-meta { margin-bottom: 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.meta-row { display: flex; gap: 10px; font-size: 14px; padding: 6px 0; }
.meta-row span { color: var(--text-light); width: 90px; flex-shrink: 0; }
.in-stock { color: #2D7A4F; }
.quantity-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.quantity-row label { font-size: 14px; font-weight: 500; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-control button { width: 38px; height: 38px; background: var(--bg-warm); font-size: 18px; color: var(--text-mid); transition: all var(--transition); }
.qty-control button:hover { background: var(--primary); color: var(--white); }
.qty-control input { width: 50px; text-align: center; font-size: 15px; font-weight: 600; background: transparent; border: none; }
.product-actions { display: flex; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.product-guarantees { display: flex; gap: 20px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.guarantee-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.guarantee-item i { color: var(--primary); }

/* ========================================================
   CART PAGE
   ======================================================== */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.cart-header-row { display: grid; grid-template-columns: 80px 1fr 140px 120px 40px; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 2px solid var(--border); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.cart-row { display: grid; grid-template-columns: 80px 1fr 140px 120px 40px; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 14px; font-weight: 500; display: block; margin-bottom: 4px; transition: color var(--transition); }
.cart-item-name:hover { color: var(--primary); }
.cart-item-price { font-size: 13px; color: var(--text-light); }
.cart-qty { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.cart-qty button { width: 34px; height: 34px; background: var(--bg-warm); font-size: 16px; color: var(--text-mid); transition: all var(--transition); }
.cart-qty button:hover { background: var(--primary); color: var(--white); }
.cart-qty span { width: 36px; text-align: center; font-size: 14px; font-weight: 600; }
.cart-subtotal { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--primary); }
.cart-remove { width: 34px; height: 34px; border-radius: 50%; color: var(--text-light); transition: all var(--transition); }
.cart-remove:hover { background: #fee; color: #c0392b; }
.cart-summary { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); height: fit-content; }
.cart-summary h3 { margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; color: var(--text-mid); }
.summary-total { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); font-weight: 600; border-top: 2px solid var(--border); padding-top: 16px; margin-top: 6px; }
.free-tag { color: #2D7A4F; font-weight: 600; }
.btn-text-danger { background: none; color: #c0392b; font-size: 13px; text-decoration: underline; }
.empty-cart { text-align: center; padding: 80px 40px; }
.empty-icon { font-size: 4rem; color: var(--border); margin-bottom: 20px; }

/* ========================================================
   CHECKOUT PAGE
   ======================================================== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
.checkout-form-wrap { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.checkout-form-wrap h3, .order-summary-wrap h3 { margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); background: var(--bg); font-size: 14px; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-section { margin: 28px 0; }
.payment-section h3 { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.payment-option {
    display: flex; align-items: center; gap: 16px; padding: 18px; border: 2px solid var(--primary);
    border-radius: var(--radius); background: rgba(139,94,60,0.04);
}
.payment-option i:first-child { font-size: 1.4rem; color: var(--primary); }
.payment-option strong { display: block; font-size: 14px; margin-bottom: 3px; }
.payment-option p { font-size: 12px; color: var(--text-light); }
.payment-option .check-icon { margin-left: auto; font-size: 1.2rem; color: var(--primary); }
.order-summary-wrap { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); height: fit-content; }
.checkout-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.checkout-item img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.checkout-item-info { flex: 1; }
.checkout-item-name { font-size: 14px; font-weight: 500; display: block; }
.checkout-item-qty { font-size: 12px; color: var(--text-light); }
.checkout-item-price { font-weight: 600; font-size: 14px; color: var(--primary); }
.checkout-totals { margin-top: 4px; }

/* ========================================================
   ORDER SUCCESS MODAL
   ======================================================== */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(44,26,14,0.7); z-index: 10000;
    display: flex; align-items: center; justify-content: center; padding: 24px;
    backdrop-filter: blur(4px);
}
.modal-box { background: var(--white); border-radius: var(--radius); padding: 48px 40px; max-width: 480px; width: 100%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: modalIn 0.4s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.92) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.success-icon { font-size: 4rem; color: #2D7A4F; margin-bottom: 20px; }
.modal-box h2 { margin-bottom: 12px; }
.order-id-text { background: var(--bg-warm); padding: 10px 20px; border-radius: var(--radius-sm); font-size: 14px; margin: 16px 0; }
.delivery-note { margin-top: 14px; font-size: 13px; color: var(--primary); }

/* ========================================================
   ABOUT PAGE
   ======================================================== */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.about-img-main { grid-column: 1 / -1; border-radius: var(--radius); height: 260px; width: 100%; }
.about-img-sm { border-radius: var(--radius); height: 180px; width: 100%; }
.about-text-col h2 { margin: 8px 0 20px; }
.about-lead { font-size: 1.1rem; color: var(--text-dark); font-weight: 500; margin-bottom: 18px; }
.about-text-col p { margin-bottom: 14px; }
.about-stats { display: flex; gap: 32px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--primary); }
.stat span { font-size: 13px; color: var(--text-light); }
.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: 16px; }
.showroom-address { margin: 20px auto; max-width: 500px; font-size: 14px; color: var(--text-light); }
.showroom-address i { color: var(--primary); margin-right: 6px; }

/* ========================================================
   CONTACT PAGE
   ======================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-col h2 { margin: 8px 0 16px; }
.contact-intro { margin-bottom: 30px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; gap: 16px; padding: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(139,94,60,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--primary); font-size: 1.1rem; }
.contact-card-info h4 { font-size: 14px; margin-bottom: 6px; }
.contact-card-info p { font-size: 13px; color: var(--text-light); }
.contact-card-info a { color: var(--primary); }
.contact-note { color: var(--accent) !important; font-size: 12px !important; }
.contact-form-box { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form-box h3 { margin-bottom: 24px; }
.contact-success-msg { text-align: center; padding: 40px; }
.contact-success-msg i { font-size: 3rem; color: #2D7A4F; margin-bottom: 14px; }
.contact-success-msg h3 { margin-bottom: 10px; }
.map-section { height: 400px; }
.map-section iframe { width: 100%; height: 100%; display: block; }

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); letter-spacing: 3px; margin-bottom: 14px; }
.footer-logo span { font-size: 0.8rem; letter-spacing: 4px; color: var(--accent); }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col p { font-size: 13px; margin-bottom: 8px; }
.footer-col i { color: var(--accent); margin-right: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ========================================================
   TOAST
   ======================================================== */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9000; display: flex; flex-direction: column; gap: 10px; }
.toast {
    background: var(--text-dark); color: var(--white); padding: 14px 20px;
    border-radius: var(--radius-sm); font-size: 13px; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border-left: 4px solid var(--accent); max-width: 300px;
    animation: toastIn 0.3s ease; display: flex; align-items: center; gap: 10px;
}
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.toast.fade-out { animation: toastOut 0.4s ease forwards; }
@keyframes toastOut { to { opacity: 0; transform: translateX(30px); } }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { gap: 40px; }
}

@media (max-width: 900px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .product-detail-layout { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-header-row, .cart-row { grid-template-columns: 70px 1fr 120px 90px 36px; }
    .checkout-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px; gap: 16px; box-shadow: var(--shadow); z-index: 999; }
    .main-nav.open { display: flex; }
    .hamburger { display: flex; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cart-header-row { display: none; }
    .cart-row { grid-template-columns: 70px 1fr 40px; gap: 10px; }
    .cart-qty { display: none; }
    .cart-subtotal { display: none; }
    .section { padding: 56px 0; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .slide-content { left: 5%; right: 5%; bottom: 10%; }
    .offer-banner { background-attachment: scroll; }
}
