@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    /* Minimalist High-Fashion Palette */
    --primary-color: hsl(20, 30%, 30%); /* Antique Copper */
    --accent-color: hsl(35, 30%, 70%); /* Soft Sand */
    --bg-color: hsl(30, 20%, 98%); /* Eggshell White */
    --text-color: hsl(20, 20%, 15%);
    --text-light: hsl(20, 10%, 45%);
    --white: #ffffff;
    --black: #000000;
    --gold-accent: #d4af37;
    --secondary-color: #2c3e50;
    --dark-gradient: linear-gradient(135deg, #0d120a 0%, #1a1a1a 100%);
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* System */
    --container-width: 1300px;
    --section-padding: 120px 0;
    --transition-premium: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-minimal: 0 4px 30px rgba(0,0,0,0.02);
}

/* Section Architecture */
.section {
    position: relative;
    padding: var(--section-padding);
}

/* Premium Reveal */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-premium);
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Luxury UI Elements */
.btn {
    border-radius: 0;
    padding: 18px 45px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-premium);
}

.btn-primary {
    background: var(--text-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.product-card {
    background: var(--white);
    transition: var(--transition-premium);
    border-radius: 0;
}

.product-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

/* Texture & Base */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

span {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition-premium);
}

/* Default state: On Dark Hero */
.navbar .logo { 
    color: var(--white) !important; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.navbar .logo span { color: var(--white) !important; }
.navbar .nav-links a { 
    color: var(--white) !important; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.navbar .nav-actions button, .navbar .nav-actions .nav-btn { color: var(--white) !important; }
.navbar .nav-actions .material-symbols-outlined { color: var(--white) !important; }

/* Scrolled state: White Background */
.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo { color: var(--text-color) !important; }
.navbar.scrolled .nav-links a { color: var(--text-color) !important; }
.navbar.scrolled .nav-actions button, .navbar.scrolled .nav-actions .nav-btn { color: var(--text-color) !important; }
.navbar.scrolled .nav-actions .material-symbols-outlined { color: var(--text-color) !important; }

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-actions button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-actions button:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1598282361139-4f7f2b1d6e1d?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tagline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1.4s ease forwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s ease forwards;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(222, 109, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(222, 109, 147, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Category Grid */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.category-card {
    position: relative;
    height: 500px;
    border-radius: 60px 10px 60px 10px; /* Ornate Hand-cut effect */
    border: 2px solid var(--gold-accent);
    padding: 10px;
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.category-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 50px 5px 50px 5px;
    transition: transform 1s ease, filter 0.5s ease;
    filter: sepia(0.05);
}
 Check check

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    transition: var(--transition-smooth);
}

.category-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.category-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.category-link:hover {
    gap: 15px;
    opacity: 1;
}

/* --- Layout Systems --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* --- Modernized Product Cards --- */
.product-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

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

.product-img-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--white);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
    filter: sepia(0.15) contrast(1.05) brightness(0.95); /* Handmade warmth */
}

/* Texture Overlay for that Handmade Paper Feel */
.product-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/handmade-paper.png');
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* --- Gaand Faad Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #f8f5f0; /* Warm Eggshell */
}

.hero::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('premium_handicraft_hero_bg_v2_1776430328724.png');
    background-size: cover;
    background-position: center;
    opacity: 0.95;
    z-index: 1;
    transform: scale(1.1); /* Zoomed in for parallax feel */
    animation: heroZoom 20s infinite alternate linear;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
    display: block !important;
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/handmade-paper.png');
    opacity: 0.1;
    z-index: 3;
    pointer-events: none;
}

.heritage-seal {
    position: absolute;
    top: 150px;
    right: 80px;
    width: 180px;
    z-index: 5;
    opacity: 0.8;
    transform: rotate(15deg);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation: floating 6s ease-in-out infinite;
}

.heritage-seal img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

@keyframes floating {
    0% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(18deg) translateY(-15px); }
    100% { transform: rotate(15deg) translateY(0); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    animation: fadeInUp 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 0 50px rgba(0,0,0,0.4));
}

.hero-tagline {
    font-family: var(--font-main);
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6.5rem; /* Huge impact */
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-title span {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    opacity: 1;
    margin-top: 10px;
    position: relative;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 15px;
    background: url('https://www.transparenttextures.com/patterns/handmade-paper.png');
    background-color: var(--gold-accent);
    mask-image: linear-gradient(to right, transparent, black, transparent);
    opacity: 0.6;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 30px auto 45px;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.hero-btns .btn {
    padding: 20px 50px;
    font-size: 0.85rem;
    letter-spacing: 4px;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border: none;
}

.btn-primary:hover {
    background: var(--gold-accent);
    color: var(--white);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}

/* Scroll context */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,1);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 5px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Redesigned Buttons & Overlay */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.action-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-quick-add {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-quick-add:hover {
    background: var(--primary-color);
    color: white;
}

.btn-view-details {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-view-details:hover {
    background: white;
    color: var(--secondary-color);
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-cat {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Immersive Artisanal Canvas (Redesigned) --- */
.artisanal-canvas {
    background: #0d120a; /* Sync with footer green */
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: none;
}

.canvas-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: center;
}

.canvas-image {
    position: relative;
    height: 100%;
}

.canvas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2) brightness(0.7);
}

.image-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--gold-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.canvas-content {
    padding: 80px 100px;
    color: var(--white);
}

.exclusive-badge {
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 1px solid var(--gold-accent);
    padding-bottom: 5px;
}

.canvas-content h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.canvas-content h2 span {
    color: var(--gold-accent);
    font-style: italic;
}

.canvas-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.luxury-newsletter .input-group {
    display: flex;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px;
    max-width: 500px;
}

.luxury-newsletter input {
    background: transparent;
    border: none;
    padding: 20px;
    color: var(--white);
    flex: 1;
    font-family: inherit;
    outline: none;
}

.canvas-btn {
    background: var(--gold-accent);
    color: var(--white);
    border: none;
    padding: 0 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-premium);
}

.canvas-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* Responsive Split */
@media (max-width: 900px) {
    .canvas-split { grid-template-columns: 1fr; }
    .canvas-image { height: 400px; }
    .canvas-content { padding: 60px 30px; }
    .canvas-content h2 { font-size: 2.5rem; }
}

/* --- Grand Artisanal Footer --- */
.footer {
    background: #0d120a; /* Deep Forest Green / Charcoal mix */
    background-image: url('https://www.transparenttextures.com/patterns/floral-paper.png');
    background-blend-mode: overlay;
    color: var(--white);
    padding: 120px 0 60px;
    margin-top: 0 !important;
    border: none !important;
}

.footer-top {
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
    color: var(--white);
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.brand-quote {
    color: var(--gold-accent);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.8;
}

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

.footer-col h4 {
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-premium);
}

.footer-col ul li a:hover {
    color: var(--gold-accent);
    padding-left: 8px;
}

.newsletter-col p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}

.newsletter-form-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 0;
}

.newsletter-form-wrapper input {
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: white;
    flex: 1;
    outline: none;
}

.newsletter-btn {
    background: var(--gold-accent);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-premium);
}

.newsletter-btn:hover {
    background: var(--white);
    color: var(--black);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-seals {
    display: flex;
    gap: 30px;
    color: var(--gold-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    align-items: center;
}

.footer-seals span {
    font-size: 1.2rem;
    margin-right: -25px;
}

/* --- The Maker's Studio (Handmade Section) --- */
.studio-section {
    background: #faf9f6; /* Off-white workshop feel */
}

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

.studio-item {
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition-premium);
}

.studio-item:hover {
    transform: translateY(-10px);
}

.studio-img-wrapper {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.studio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2) grayscale(0.2);
}

.studio-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.studio-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes cartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        height: 400px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu needed */
    }
    .menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
}
}

/* --- Additional Pages Styling --- */

/* Shop Page Specifics */
.shop-hero {
    height: 35vh;
    background: var(--dark-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.filter-group {
    display: flex;
    gap: 15px;
}

.filter-group select {
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid #eee;
    outline: none;
    font-family: inherit;
    cursor: pointer;
    background: #fdfdfd;
}

/* Product Details Page */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-top: 50px;
}

.product-gallery {
    border-radius: 25px;
    overflow: hidden;
    position: sticky;
    top: 120px;
    box-shadow: var(--shadow-strong);
}

.product-gallery img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
}

.details-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.details-price {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
}

.details-meta {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.details-meta p {
    margin-bottom: 15px;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

.details-meta span {
    color: var(--text-color);
    font-weight: 600;
}

.details-actions {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 5px 15px;
    background: white;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    outline: none;
    background: none;
}

/* --- Cart Page Styles --- */
.cart-header {
    background: var(--accent-light);
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
    border-radius: 0 0 50px 50px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

/* --- Modern Cart Item Cards --- */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.cart-item-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.cart-item-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.cart-item-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-item-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.cart-item-details p {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.cart-subtotal-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-card .remove-btn {
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.cart-item-card:hover .remove-btn {
    opacity: 1;
}

/* List Headers */
.cart-list-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    padding: 0 25px 15px;
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #eee;
}

/* Order Summary Box */
.cart-summary {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    position: sticky;
    top: 120px;
}

.summary-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-light);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--secondary-color);
}

.total-row {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.total-row span:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

.btn-checkout {
    width: 100%;
    margin-top: 30px;
    padding: 18px;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .cart-list-header { display: none; }
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .cart-item-main { flex-direction: column; }
    .cart-item-card div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .cart-item-card div::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
    }
    .cart-item-card div:first-child::before { display: none; }
}

/* Checkout Page */
.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 60px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -80px;
    width: 80px;
    height: 2px;
    background: #eee;
}

.step:last-child::after { display: none; }

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: white;
    transition: var(--transition-smooth);
}

.step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(222, 109, 147, 0.4);
}

.step.active span {
    color: var(--primary-color);
    font-weight: 700;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.checkout-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    background: #fafafa;
    outline: none;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-input:focus {
    background: white;
    border-color: var(--primary-color);
}

/* Payment Modal Overlay */
.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.payment-modal {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    animation: scaleIn 0.5s ease;
}

.success-icon {
    font-size: 6rem;
    color: #2ecc71;
    margin-bottom: 30px;
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-card {
    padding: 20px;
    transition: var(--transition-smooth);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    height: 80px;
    width: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-10px) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Refined Footer --- */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 100px 0 40px;
    margin-top: 100px;
}

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

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #999;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 25px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 8px;
}

.newsletter-form .btn {
    padding: 12px 25px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    color: #555;
}

.payment-methods i:hover {
    color: #999;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Navigation & Icons Reset --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
}

.nav-actions button, .nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Drawer Update */
.nav-links-mobile a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    padding: 10px 0;
}

/* --- Advanced Mobile Responsiveness --- */

/* Mobile Menu Drawer */
.nav-links-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    z-index: 1500;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

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

.nav-links-mobile a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1400;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* --- Specific Responsive Adjustments --- */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero-title { font-size: 3.8rem; }
    .cart-layout, .checkout-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links { display: none; }
    .menu-toggle { display: block !important; font-size: 1.5rem; }
    
    .hero-section { height: auto; padding: 120px 0 80px; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-btns { flex-direction: column; width: 100%; gap: 15px; }
    
    .section-title { font-size: 2.2rem; margin-bottom: 40px; }
    
    /* Better Gallery Grid on Tablet/Mobile */
    .cart-item-card div:last-child { border: none; }
    
    .cart-item-card div::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: var(--text-light);
    }
    
    .cart-item-card div:first-child::before,
    .cart-item-card div:last-child::before { display: none; }
    
    .cart-item-main { flex-direction: row; text-align: left; }
    .cart-item-img { width: 60px; height: 75px; }

    .cart-summary { position: static; margin-top: 30px; }
}

@media (max-width: 480px) {
    .container, .nav-container { padding: 0 15px; }
    .hero-title { font-size: 2rem !important; word-break: break-word; } /* Forced break for small screens */
    .hero-tagline { letter-spacing: 2px !important; font-size: 0.8rem; }
    .logo { font-size: 1.3rem; }
    .navbar { padding: 10px 0; }
    
    .product-grid { grid-template-columns: 1fr; }
    
    .product-details-grid { grid-template-columns: 1fr; gap: 40px; }
    .details-content h1 { font-size: 1.8rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    
    .checkout-card { padding: 25px 15px; }
    .step span { display: none; }
}
