/* ================================================================
   ETHERIA — Design System & Styles
   ================================================================ */

/* --- Design Tokens --- */
:root {
    --bg-light: #f9f6f0;
    --bg-beige: #efebe4;
    --bg-dark: #3c3530;
    --text-primary: #3c3530;
    --text-secondary: #746b62;
    --text-light: #faf7f2;
    --gold-accent: #a3814e;
    --gold-accent-hover: #b8935b;
    --accent-rose: #7b5b5c;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-logo: 'Cookie', cursive;
    --spacing-section: 6rem;
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;
}

/* --- Reset & Base --- */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* --- Utility Classes --- */
.text-white {
    color: #fff !important;
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-light);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-beige {
    background-color: var(--bg-beige);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.mt-4 {
    margin-top: 1rem;
}

.hidden {
    display: none !important;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: var(--transition-fast);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(60, 53, 48, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Solid header for inner pages (product, cart, collections) */
.site-header-solid {
    background: rgba(60, 53, 48, 0.98);
    backdrop-filter: blur(10px);
}

.site-header-solid .header-actions button i,
.site-header-solid .menu-toggle i {
    color: #fff;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Scrolled state colors */
.site-header.scrolled .header-actions button i,
.site-header.scrolled .menu-toggle i {
    color: #fff;
}

/* --- Logo --- */
.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    width: 120px;
    height: auto;
    display: block;
    transition: var(--transition-fast);
}

/* --- Header Actions --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-actions button,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.25rem;
    transition: var(--transition-fast);
}

.header-actions button:hover,
.menu-toggle:hover {
    transform: scale(1.1);
}

/* --- Cart Badge --- */
.cart-toggle {
    position: relative;
}

.cart-toggle[data-count]::after {
    content: attr(data-count);
    position: absolute;
    top: -6px;
    right: -8px;
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--gold-accent);
    border-radius: 999px;
    color: #fff;
    font-size: 0.7rem;
}

.cart-toggle[data-count="0"]::after {
    display: none;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.subheading {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.section-title {
    margin-bottom: 2rem;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--gold-accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--gold-accent-hover);
    box-shadow: 0 0 20px rgba(163, 129, 78, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--text-primary);
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid rgba(60, 53, 48, 0.24);
    color: var(--text-primary);
}

.btn-outline-dark:hover {
    background: #fff;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    height: 100vh;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: -2;
    background-image: url('images/hero.png');
    background-position: center 20%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    padding-top: 5rem;
    color: #fff;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-desc {
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ================================================================
   PRODUCT GRID (Collections & Homepage)
   ================================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background-color: #efebe4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Badges */
.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.4rem 0.8rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.badge-new {
    background-color: var(--gold-accent);
}

.badge-bestseller {
    background-color: var(--bg-dark);
}

/* Product Info */
.product-info h3 {
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
}

.product-category {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Underline style for homepage category labels */
.product-category-underline {
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--text-primary);
}

/* Pricing in grids */
.product-price-original {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: line-through;
    margin-bottom: 0.15rem;
}

.product-price-current {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ================================================================
   SECTIONS (General)
   ================================================================ */
section {
    padding: var(--spacing-section) 5%;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Story Section --- */
.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.story-content p:last-child {
    margin-top: 2.5rem;
    color: #000;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
}

/* --- Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ================================================================
   COLLECTION PAGES
   ================================================================ */
.collection-hero {
    text-align: center;
    padding: 4rem 5% 2rem;
    background: var(--bg-beige);
}

.collection-hero .subheading {
    color: var(--gold-accent);
}

.collection-page {
    padding: 5rem 5% 8rem;
    min-height: 70vh;
}

.collection-page .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* --- Breadcrumb --- */
.breadcrumb {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    padding: 5rem 5% 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    display: block;
    width: 160px;
    height: auto;
}

.brand-desc {
    max-width: 350px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.footer-links-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-heading {
    margin-bottom: 1.5rem;
    color: beige;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    padding-left: 5px;
    color: #fff;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-sans);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    color: var(--gold-accent);
    transform: translateX(3px);
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--gold-accent);
    opacity: 1;
}

.social-links .marketplace-icon {
    width: 20px;
    height: auto;
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.fade-in.active {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ================================================================
   SIDE MENU
   ================================================================ */
.side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 2001;
    width: 320px;
    max-width: 86%;
    height: 100vh;
    overflow-y: auto;
    padding: 24px 20px;
    background: #f9f6f0;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.12);
    transition: left 0.3s ease;
}

.side-menu.open {
    left: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.close-menu {
    margin-bottom: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: #3c3530;
    font-size: 2rem;
}

.side-menu-nav a,
.menu-group-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(60, 53, 48, 0.1);
    color: #3c3530;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
}

.menu-group-links {
    display: none;
    padding-left: 14px;
}

.menu-group-links.open {
    display: block;
}

.menu-group-links a {
    display: block;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    border-bottom: none;
}

.menu-group-toggle i {
    transition: transform 0.2s ease;
}

.menu-group-toggle.open i {
    transform: rotate(180deg);
}

/* ================================================================
   SEARCH OVERLAY
   ================================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 16px 16px;
    background: rgba(0, 0, 0, 0.45);
}

.search-overlay.show {
    display: flex;
}

.search-box {
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.search-top {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.search-top input {
    flex: 1;
    padding: 18px;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.search-top button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0 16px;
    font-size: 2rem;
}

.search-results {
    max-height: 360px;
    overflow-y: auto;
}

.search-result-item,
.search-empty {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f1f1;
    color: #3c3530;
}

.search-result-item:hover {
    background: #f8f4ee;
}

.search-result-item span {
    color: #8a8179;
    font-size: 0.85rem;
}

/* ================================================================
   TOAST NOTIFICATION
   ================================================================ */
.toast {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 3000;
    padding: 12px 16px;
    background: #3c3530;
    border-radius: 10px;
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.25s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   PRODUCT PAGE
   ================================================================ */
.product-page-body {
    background: #fcfbf8;
}

.product-page-new {
    display: flex;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 7.5rem 3rem 5rem;
}

/* --- Gallery --- */
.product-gallery-new {
    flex: 1.1;
}

.product-slider {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 1rem;
}

.product-main-image-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #f3ede6;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.product-gallery-new img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

#product-img {
    transition: opacity 0.3s ease;
}

.slider-arrow {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6ddd4;
    border-radius: 50%;
    background: #fff;
    color: #5f5650;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: #cdb8a1;
}

.slider-arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

.slider-arrow i {
    font-size: 1.35rem;
}

/* Thumbnails */
.product-thumbnails,
.product-gallery-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.product-gallery-mini {
    margin: 1.25rem 0 1.6rem;
}

.product-thumb {
    width: 62px;
    height: 78px;
    flex: 0 0 auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e5ddd5;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.product-thumb.active {
    border-color: var(--accent-rose);
    box-shadow: 0 0 0 2px rgba(123, 91, 92, 0.14);
}

/* --- Product Details --- */
.product-details-new {
    flex: 1;
    max-width: 520px;
}

.category {
    display: block;
    margin-bottom: 1rem;
    color: #a49e99;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.product-details-new h1 {
    margin-bottom: 0.75rem;
    color: var(--accent-rose);
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
}

/* Dual pricing on product page */
.price-group {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-original {
    color: #a49e99;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-decoration: line-through;
}

.price-current {
    color: #6d6763;
    font-family: var(--font-serif);
    font-size: 1.7rem;
}

.product-desc {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Selectors */
.selector-group {
    margin-bottom: 1.8rem;
}

.selector-label {
    display: block;
    margin-bottom: 0.85rem;
    color: #a49e99;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.selector-link,
.size-guide-link {
    color: var(--accent-rose);
    font-size: 0.85rem;
    text-decoration: underline;
}

/* Color options */
.color-options,
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.color-option {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid #ddd6cd;
    border-radius: 50%;
    cursor: pointer;
}

.color-option.active::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1.5px solid var(--accent-rose);
    border-radius: 50%;
}

/* Size options */
.size-option {
    min-width: 56px;
    height: 44px;
    padding: 0 1rem;
    background: #fff;
    border: 1px solid #eee8df;
    color: #6d6763;
    cursor: pointer;
    transition: var(--transition-fast);
}

.size-option.active {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
    color: #fff;
}

.selected-meta {
    margin-top: 0.9rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Quantity control */
.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 10px 18px;
    border: 1px solid #e4ddd8;
    border-radius: 30px;
}

.qty-control button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #4b433e;
    font-size: 1.4rem;
}

.qty-control span {
    min-width: 16px;
    text-align: center;
    font-weight: 600;
}

/* Action buttons */
.product-actions-stack {
    display: grid;
    gap: 0.9rem;
    margin-top: 2.2rem;
}

.product-btn {
    width: 100%;
    text-align: center;
}

.btn-bag-secondary {
    width: 100%;
    margin-top: 1rem;
    padding: 1.3rem;
    background: transparent;
    border: 1px solid #d8d0cb;
    color: var(--accent-rose);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

/* ================================================================
   CART PAGE
   ================================================================ */
.cart-page {
    min-height: 100vh;
    padding-top: 5.5rem;
}

.cart-hero {
    padding: 3rem 5% 2rem;
}

.cart-section {
    padding-top: 2rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e7e0d9;
}

.cart-check {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-details {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-item-image {
    width: 110px;
    height: 140px;
    flex-shrink: 0;
    object-fit: cover;
    background: #f7f3ee;
    border-radius: 10px;
}

.cart-item-details h3 {
    margin: 0 0 8px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #2f2925;
}

.cart-item-details p {
    margin: 4px 0;
    color: #6f6862;
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 14px;
    border: 1px solid #ded6cf;
    border-radius: 999px;
}

.cart-qty .qty-btn {
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #3f3833;
    font-size: 1.2rem;
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #8a5c5c;
    font-size: 0.95rem;
    text-decoration: underline;
}

.cart-footer-actions {
    margin-top: 28px;
    display: flex;
    justify-content: flex-end;
}

.cart-empty {
    padding: 40px 0;
    text-align: center;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .product-page-new {
        flex-direction: column;
        gap: 2rem;
        padding: 6.5rem 1.2rem 3rem;
    }

    .product-slider {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 0.7rem;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .cart-item {
        grid-template-columns: auto 84px 1fr;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .logo-image {
        width: 96px;
    }

    .site-header {
        padding: 1rem;
    }

    .header-container {
        gap: 0.5rem;
    }

    .hero-desc {
        max-width: 100%;
    }

    /* Footer responsive */
    .footer-container {
        flex-direction: column;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .brand-desc {
        margin: 0 auto;
    }

    /* Cart responsive */
    .cart-item {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .cart-item-details {
        align-items: flex-start;
    }

    .cart-item-image {
        width: 90px;
        height: 115px;
    }

    .cart-item-actions {
        align-items: flex-start;
    }

    .cart-footer-actions {
        justify-content: stretch;
    }

    .cart-footer-actions .btn {
        width: 100%;
    }

    /* Product page responsive */
    .product-slider {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 0.65rem;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .product-thumb {
        width: 52px;
        height: 66px;
    }

    .name {
        font-weight:bolder;
    }
}