@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
/* =========================================
   ATTAINABLE LUXURY – COMPLETE DESIGN SYSTEM
   ========================================= */

/* --- Variables --- */
:root {
    --sage: #9CAF88;
    --sage-dark: #7a9063;
    --sage-light: #b8c9a8;
    --white: #ffffff;
    --charcoal: #222222;
    --grey: #666666;
    --light-grey: #f0f0f0;
    --beige: #f7f4ef;
    --beige-dark: #ede8e0;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Arial, sans-serif;
    --max-width: 1200px;
    --section-padding: 90px 0;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--charcoal); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--grey); }
.serif { font-family: var(--font-serif); }

/* --- Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-sage { color: var(--sage); }
.bg-white { background: var(--white); }
.bg-beige { background: var(--beige); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-sage { background: var(--sage); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--sage);
    color: var(--white);
    border: 2px solid var(--sage);
}
.btn-primary:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 48px; font-size: 0.85rem; }

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(156,175,136,0.2);
    transition: all var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.logo { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.05em; }
.logo-sub { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 8px 12px;
    transition: color var(--transition);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: var(--sage);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.active { color: var(--sage); }
.nav-cta::after { display: none; }
.nav-cta:hover { color: var(--white) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-hover);
    border-top: 2px solid var(--sage);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--light-grey);
    font-size: 0.72rem;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--beige); color: var(--sage); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
}

/* ── FIX: Hero background image uploaded from admin panel ── */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3a28 50%, #1a1a1a 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 120px 24px 80px;
    max-width: 800px;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 24px;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white);
}
.hero-title em { font-style: italic; color: var(--sage-light); }
.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3a28 100%);
    text-align: center;
    color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.page-hero .breadcrumb { font-size: 0.75rem; letter-spacing: 0.15em; color: var(--sage-light); text-transform: uppercase; margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--sage-light); }

/* --- Sections --- */
section { padding: var(--section-padding); }
.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
}
.section-title { margin-bottom: 20px; }
.section-subtitle { font-size: 1.05rem; max-width: 600px; margin: 0 auto 48px; }
.section-header { margin-bottom: 64px; }
.section-header.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px; }
.grid-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 8px; }

/* --- Service Cards --- */
.service-card {
    background: var(--white);
    padding: 48px 36px;
    text-align: center;
    border: 1px solid var(--beige-dark);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    /* ── FIX: flex column so button always sticks to bottom ── */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sage);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 16px; font-size: 1.4rem; }
.service-card p {
    font-size: 0.9rem;
    /* ── FIX: push the button down by consuming remaining space ── */
    flex: 1;
}
.service-card .btn { margin-top: 24px; }

/* --- Product Cards --- */
.product-card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    overflow: hidden;
    transition: all var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.product-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--beige);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 24px; }
.product-category { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 8px; }
.product-name { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 8px; color: var(--charcoal); }
.product-price { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 16px; }
.product-actions { display: flex; gap: 12px; }
.add-to-cart { flex: 1; padding: 10px; background: var(--sage); color: var(--white); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: background var(--transition); border: none; cursor: pointer; }
.add-to-cart:hover { background: var(--sage-dark); }

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-step {
    text-align: center;
    padding: 48px 32px;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 56px;
    right: -1px;
    width: 2px;
    height: 40px;
    background: var(--sage);
    opacity: 0.3;
}
.process-step:last-child::after { display: none; }
.step-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--sage);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.process-step p { font-size: 0.85rem; }

/* --- Testimonials --- */
.testimonials-section { background: var(--charcoal); color: var(--white); padding: var(--section-padding); }
.testimonials-section .section-label { color: var(--sage-light); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section p { color: rgba(255,255,255,0.7); }
.testimonials-slider { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.6s ease; }
.testimonial-slide { min-width: 100%; padding: 0 60px; text-align: center; }
.stars { color: var(--sage); font-size: 1.2rem; margin-bottom: 24px; letter-spacing: 4px; }
.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.5;
}
.testimonial-author { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-light); }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 48px; }
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}
.slider-dot.active { background: var(--sage); transform: scale(1.3); }
.slider-arrows { display: flex; justify-content: space-between; position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); pointer-events: none; }
.slider-arrow { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); cursor: pointer; pointer-events: auto; transition: all var(--transition); }
.slider-arrow:hover { background: var(--sage); border-color: var(--sage); }

/* --- About Preview --- */
.about-preview { background: var(--beige); }
.about-img { aspect-ratio: 4/5; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content { padding: 40px; }
.about-stat { margin: 32px 0; display: flex; gap: 24px; }
.stat-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: var(--sage); line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); padding-top: 8px; }

/* --- Contact Form --- */
.contact-section { background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--sage); }
textarea { resize: vertical; min-height: 140px; }
.contact-info-card { background: var(--sage); color: var(--white); padding: 48px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item-icon { font-size: 1.2rem; }
.contact-item-text strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item-text p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }
.alert { padding: 16px 20px; margin-bottom: 24px; border-left: 4px solid; font-size: 0.9rem; }
.alert-success { background: #f0f7ed; border-color: var(--sage); color: var(--sage-dark); }
.alert-error { background: #fdf0f0; border-color: #e74c3c; color: #c0392b; }

/* --- Blog Cards --- */
.blog-card { background: var(--white); border: 1px solid var(--light-grey); overflow: hidden; transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--beige); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { padding: 28px; }
.blog-meta { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.blog-title { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 12px; line-height: 1.3; }
.blog-title a { color: var(--charcoal); transition: color var(--transition); }
.blog-title a:hover { color: var(--sage); }
.blog-excerpt { font-size: 0.88rem; margin-bottom: 20px; }
.read-more { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--transition); }
.read-more:hover { gap: 14px; }

/* --- Gallery --- */
.gallery-item { overflow: hidden; aspect-ratio: 1; background: var(--beige); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* --- CTA Banner --- */
.cta-banner { background: var(--sage); color: var(--white); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 40px; font-size: 1.05rem; }
.cta-banner-dark { background: var(--charcoal); }

/* --- Fabric Grid --- */
.fabric-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.fabric-swatch { text-align: center; }
.swatch-color { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 12px; border: 3px solid var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.swatch-name { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 4px; }
.swatch-desc { font-size: 0.75rem; color: var(--grey); }

/* --- Package Cards --- */
.package-card { background: var(--white); border: 1px solid var(--light-grey); padding: 40px 32px; text-align: center; transition: all var(--transition); }
.package-card.featured { border-color: var(--sage); position: relative; }
.package-card.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--sage); color: var(--white); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 20px; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.package-price { font-family: var(--font-serif); font-size: 2.5rem; color: var(--sage); margin: 20px 0; }
.package-features { text-align: left; margin: 20px 0; }
.package-features li { padding: 8px 0; border-bottom: 1px solid var(--light-grey); font-size: 0.88rem; padding-left: 20px; position: relative; }
.package-features li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

/* --- Shop Filter --- */
.shop-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn { padding: 10px 24px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--light-grey); background: var(--white); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--sage); color: var(--white); border-color: var(--sage); }

/* --- Admin Styles --- */
.admin-body { display: flex; min-height: 100vh; background: #f5f6fa; font-family: var(--font-sans); }
.admin-sidebar { width: 260px; background: var(--charcoal); color: var(--white); flex-shrink: 0; display: flex; flex-direction: column; position: fixed; height: 100vh; overflow-y: auto; }
.sidebar-brand { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-brand h2 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); font-weight: 400; }
.sidebar-brand span { font-size: 0.65rem; color: var(--sage-light); letter-spacing: 0.15em; text-transform: uppercase; }
.sidebar-nav { flex: 1; padding: 20px 0; }
.sidebar-nav a { display: flex; align-items: center; gap: 12px; padding: 14px 24px; color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; transition: all var(--transition); }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(156,175,136,0.15); color: var(--white); border-left: 3px solid var(--sage); }
.sidebar-nav .nav-section { padding: 16px 24px 8px; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.admin-main { margin-left: 260px; flex: 1; display: flex; flex-direction: column; }
.admin-topbar { background: var(--white); padding: 20px 32px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar h1 { font-size: 1.4rem; font-weight: 400; font-family: var(--font-serif); }
.admin-content { padding: 32px; flex: 1; }
.admin-card { background: var(--white); border-radius: 4px; padding: 28px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); margin-bottom: 24px; }
.admin-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--light-grey); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: var(--white); padding: 24px; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); border-left: 4px solid var(--sage); }
.stat-card h4 { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; font-weight: 600; font-family: var(--font-sans); }
.stat-card .stat-val { font-family: var(--font-serif); font-size: 2.2rem; color: var(--charcoal); font-weight: 400; }
table { width: 100%; border-collapse: collapse; }
table th { text-align: left; padding: 12px 16px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); border-bottom: 2px solid var(--light-grey); }
table td { padding: 14px 16px; border-bottom: 1px solid var(--light-grey); font-size: 0.88rem; vertical-align: middle; }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: var(--beige); }
.badge { display: inline-block; padding: 3px 10px; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 20px; }
.badge-sage { background: rgba(156,175,136,0.15); color: var(--sage-dark); }
.btn-sm { padding: 7px 16px; font-size: 0.7rem; letter-spacing: 0.08em; }
.btn-danger { background: #e74c3c; color: var(--white); border-color: #e74c3c; }
.btn-danger:hover { background: #c0392b; border-color: #c0392b; }
.btn-edit { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-edit:hover { background: #444; border-color: #444; }
.admin-form .form-group { margin-bottom: 20px; }
.admin-form label { display: block; margin-bottom: 8px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.admin-form input, .admin-form textarea, .admin-form select { width: 100%; padding: 12px 14px; border: 1px solid #ddd; font-size: 0.9rem; outline: none; }
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-color: var(--sage); }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--charcoal); }
.login-card { background: var(--white); padding: 48px; width: 100%; max-width: 400px; }
.login-card h2 { font-family: var(--font-serif); text-align: center; margin-bottom: 8px; }
.login-card p { text-align: center; font-size: 0.85rem; margin-bottom: 32px; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo span { font-family: var(--font-serif); font-size: 1.5rem; color: var(--sage); }

/* --- Breadcrumb --- */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.75rem; margin-bottom: 24px; }
.breadcrumb a { color: var(--sage); }
.breadcrumb span { color: var(--grey); }

/* --- Single Blog Post --- */
.blog-post-content { max-width: 740px; margin: 0 auto; }
.blog-post-content img { width: 100%; margin: 32px 0; }
.blog-post-content h2, .blog-post-content h3 { margin: 32px 0 16px; }
.blog-post-content p { font-size: 1.02rem; line-height: 1.9; color: #444; margin-bottom: 24px; }
.blog-post-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.blog-post-header h1 { margin-bottom: 20px; }

/* --- Special Banner --- */
.special-banner { background: linear-gradient(135deg, var(--charcoal) 0%, #2d3a28 100%); color: var(--white); padding: 80px 0; }
.special-banner h2 { color: var(--white); margin-bottom: 16px; }
.special-banner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* --- Installment Plan --- */
.installment-table { width: 100%; border-collapse: collapse; }
.installment-table th { background: var(--sage); color: var(--white); padding: 16px 20px; text-align: left; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.installment-table td { padding: 14px 20px; border-bottom: 1px solid var(--light-grey); font-size: 0.9rem; }
.installment-table tr:nth-child(even) td { background: var(--beige); }

/* --- Dividers --- */
.divider { width: 60px; height: 2px; background: var(--sage); margin: 20px 0; }
.divider-center { margin: 20px auto; }

/* --- Lazy Loading --- */
img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
img.loaded { opacity: 1; }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Success/Flash Messages --- */
.flash-msg { padding: 14px 20px; margin-bottom: 20px; font-size: 0.88rem; border-left: 4px solid; }
.flash-success { background: #edf7ea; border-color: var(--sage); color: var(--sage-dark); }
.flash-error { background: #fdf0f0; border-color: #e74c3c; color: #c0392b; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        padding: 80px 24px 40px;
        transition: right var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a { display: block; padding: 14px 0; border-bottom: 1px solid var(--light-grey); font-size: 0.85rem; }
    .main-nav a::after { display: none; }
    .has-dropdown .dropdown { position: static; box-shadow: none; border-top: none; opacity: 1; visibility: visible; transform: none; background: var(--beige); }
    .dropdown li a { padding: 10px 16px; font-size: 0.8rem; }
    .nav-cta { margin-top: 16px; display: inline-block; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 3rem; }
    .testimonial-slide { padding: 0 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .about-content { padding: 24px 0; }
}

@media (max-width: 480px) {
    .grid-3 { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .product-actions { flex-direction: column; }
}
/* --- Hhenry Kripps Signature Font --- */
.hk-signature {
    font-family: 'Satisfy', cursive;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-size: inherit;
}

.section-title.hk-signature {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h1.hk-signature {
    font-size: clamp(3rem, 7vw, 5rem);
    color: #ffffff;
}