/* ===== CSS Variables ===== */
:root {
    --beige-50: #FDF8F3;
    --beige-100: #F5F0E8;
    --beige-200: #EDE4D6;
    --beige-300: #DDD0BC;
    --beige-400: #C8B896;
    --beige-500: #B8A47E;
    --beige-600: #A08B68;
    --beige-700: #84714F;
    --beige-800: #5C4F38;
    --beige-900: #3D3425;
    --text-dark: #2C2420;
    --text-body: #5C5048;
    --text-light: #8A7E74;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(60, 52, 37, 0.06);
    --shadow-md: 0 4px 16px rgba(60, 52, 37, 0.08);
    --shadow-lg: 0 8px 32px rgba(60, 52, 37, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--beige-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.2;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Top Banner ===== */
.top-banner {
    background: var(--beige-900);
    color: var(--beige-200);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.top-banner strong {
    color: var(--beige-300);
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(221, 208, 188, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--beige-200);
    padding: 0 24px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    top: 0;
    align-self: center;
}

.logo span {
    font-weight: 400;
    color: var(--beige-600);
    margin-left: -2px;
}

.logo-jam {
    color: #b5522b;
    font-weight: 700;
    margin-left: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-body);
    position: relative;
    padding: 4px 0;
}

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

.nav-links a:hover {
    color: var(--text-dark);
}

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

.nav-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text-body);
    border-radius: 50%;
    transition: all var(--transition);
    position: relative;
}

.icon-btn:hover {
    background: var(--beige-200);
    color: var(--text-dark);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--beige-700);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--beige-800);
    color: var(--beige-100);
}

.btn-primary:hover {
    background: var(--beige-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--beige-400);
}

.btn-outline:hover {
    background: var(--beige-200);
    border-color: var(--beige-500);
}

.btn-light {
    background: var(--white);
    color: var(--text-dark);
}

.btn-light:hover {
    background: var(--beige-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
    background: var(--white);
    color: var(--text-dark);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all var(--transition);
}

.btn-small:hover {
    background: var(--beige-100);
}

/* ===== Hero ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 85vh;
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--beige-600);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--beige-200), var(--beige-300));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--beige-600);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(92, 79, 56, 0.08));
}

.hero-image-placeholder p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.placeholder-icon {
    position: relative;
    z-index: 1;
}

/* ===== Section Shared ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

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

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

.category-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-md);
    background: var(--beige-50);
    border: 1px solid var(--beige-200);
    transition: all var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--beige-400);
}

.category-img {
    margin-bottom: 20px;
}

.placeholder-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--beige-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--beige-600);
    transition: all var(--transition);
}

.category-card:hover .placeholder-circle {
    background: var(--beige-300);
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== Products ===== */
.collection, .bestsellers {
    padding: 80px 0;
}

.bestsellers {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--beige-200);
    transition: all var(--transition);
}

.bestsellers .product-card {
    background: var(--beige-50);
}

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

.product-img {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--beige-100), var(--beige-200));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-placeholder {
    color: var(--beige-400);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 32, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    background: var(--beige-800);
    color: var(--beige-100);
    z-index: 2;
    letter-spacing: 0.5px;
}

.badge-hot {
    background: #C47A5A;
    color: var(--white);
}

.badge-sale {
    background: #8B5E3C;
    color: var(--white);
}

.badge-best {
    background: var(--beige-600);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.product-color {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.price {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.price-old {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-sale {
    color: #8B5E3C;
}

.product-colors {
    display: flex;
    gap: 6px;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--beige-200);
    cursor: pointer;
    transition: all var(--transition);
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: var(--beige-500);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stars {
    color: var(--beige-600);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== Promo Banner ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--beige-800), var(--beige-700));
    padding: 80px 0;
    text-align: center;
}

.promo-content {
    max-width: 600px;
    margin: 0 auto;
}

.promo-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--beige-400);
    margin-bottom: 16px;
}

.promo-banner h2 {
    font-size: 2.5rem;
    color: var(--beige-100);
    margin-bottom: 20px;
}

.promo-banner p {
    color: var(--beige-300);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ===== Features ===== */
.features {
    padding: 60px 0;
    background: var(--beige-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--beige-700);
    box-shadow: var(--shadow-sm);
}

.feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

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

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--beige-200);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--beige-600);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-body);
    font-style: italic;
}

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

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--beige-300);
    color: var(--beige-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

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

.about-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--beige-200), var(--beige-300));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--beige-600);
    box-shadow: var(--shadow-md);
}

.about-placeholder p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--beige-200);
}

.stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.stat span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== Newsletter ===== */
.newsletter {
    padding: 80px 0;
    background: var(--beige-100);
}

.newsletter-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.newsletter-content > p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid var(--beige-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--beige-600);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--beige-900);
    color: var(--beige-300);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--beige-500);
}

.footer .footer-col:first-child p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--beige-400);
}

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

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

.social-links a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--beige-200);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--beige-200);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col ul a {
    font-size: 0.88rem;
    color: var(--beige-400);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--beige-200);
}

.contact-info li {
    font-size: 0.88rem;
    color: var(--beige-400);
}

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

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--beige-500);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--beige-500);
}

.footer-links a:hover {
    color: var(--beige-300);
}

/* ===== Product Card Arrows ===== */
.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-card:hover .card-arrow {
    opacity: 1;
}

.card-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.card-arrow-left {
    left: 8px;
}

.card-arrow-right {
    right: 8px;
}

.card-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}

.card-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.card-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ===== Quick View Modal ===== */
.qv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 32, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
    animation: qvFadeIn 0.3s ease;
}

@keyframes qvFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.qv-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.2);
    animation: qvSlideUp 0.3s ease;
}

@keyframes qvSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.qv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--beige-100);
    color: var(--text-dark);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qv-close:hover {
    background: var(--beige-300);
}

.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.qv-img-wrap {
    background: var(--beige-100);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}

.qv-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.qv-placeholder {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige-400);
}

.qv-details {
    padding: 40px 32px;
}

.qv-details h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.qv-color {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.qv-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.qv-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.qv-price .price-old {
    font-size: 1rem;
}

.qv-divider {
    border: none;
    border-top: 1px solid var(--beige-200);
    margin: 20px 0;
}

.qv-options {
    margin-bottom: 20px;
}

.qv-options label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.qv-sizes {
    display: flex;
    gap: 8px;
}

.qv-size-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--beige-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-body);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qv-size-btn:hover {
    border-color: var(--beige-500);
}

.qv-size-btn.active {
    background: var(--beige-800);
    color: var(--beige-100);
    border-color: var(--beige-800);
}

.qv-quantity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qv-qty-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--beige-300);
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qv-qty-btn:hover {
    background: var(--beige-100);
    border-color: var(--beige-500);
}

.qv-quantity span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 24px;
    text-align: center;
}

.qv-add-cart {
    margin-top: 8px;
}

/* ===== Quick View Gallery ===== */
.qv-img-wrap {
    position: relative;
}

.qv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.qv-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.qv-arrow-left {
    left: 12px;
}

.qv-arrow-right {
    right: 12px;
}

.qv-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.qv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.qv-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.qv-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== Cart Toast ===== */
.cart-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--beige-800);
    color: var(--beige-100);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(60, 52, 37, 0.2);
    z-index: 3000;
    animation: slideInToast 0.4s ease, fadeOutToast 0.4s ease 2.6s forwards;
}

@keyframes slideInToast {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeOutToast {
    from { opacity: 1; }
    to { opacity: 0; }
}

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

    .qv-img-wrap {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .qv-image, .qv-placeholder {
        min-height: 280px;
    }

    .qv-details {
        padding: 24px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero {
        gap: 40px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--beige-50);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--beige-200);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--beige-100);
    }

    .hamburger {
        display: flex;
    }

    .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 {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 40px 24px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-placeholder {
        max-width: 320px;
        aspect-ratio: 3/3.5;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 0.72rem;
        padding: 8px 16px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
