:root {
    --clay-cream: #F5EFE6;
    --clay-terracotta: #D4A574;
    --clay-rust: #B67352;
    --clay-earth: #8B6F47;
    --clay-dark: #4A3F35;
    --clay-sage: #9CAF88;
    --shadow: rgba(75, 63, 53, 0.15);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--clay-cream) 0%, #FBF7F0 100%);
    color: var(--clay-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Decorative background elements — static to avoid constant GPU repaints */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--clay-terracotta) 0%, transparent 70%);
    opacity: 0.05;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--clay-sage) 0%, transparent 70%);
    opacity: 0.08;
    z-index: -1;
}

header {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(245, 239, 230, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    animation: slideDown 0.8s ease-out;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 3rem;
}

nav {
    display: flex;
    gap: 2rem;
}

.nav-tab {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clay-earth);
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 201;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--clay-rust);
    transition: transform 0.3s ease;
}

.nav-tab:hover {
    color: var(--clay-rust);
}

.nav-tab:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-tab.active {
    color: var(--clay-rust);
}

.nav-tab.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Nav dropdown (Products hover menu) */
.nav-item {
    position: relative;
}

/* Keep the tab highlighted while dropdown is open — fix: separate selectors */
.nav-item:hover .nav-tab {
    color: var(--clay-rust);
}

.nav-item:hover .nav-tab::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    display: flex;
    flex-direction: row;
    background: rgba(245, 239, 230, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
    white-space: nowrap;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 0.9rem 1.4rem;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: var(--clay-earth);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.05em;
}

.dropdown-item:hover {
    background: none;
    color: var(--clay-rust);
}

/* À propos page */
.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.about-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--clay-earth);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.1rem;
    color: var(--clay-rust);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.about-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--clay-earth);
    margin-bottom: 1rem;
}

.about-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--clay-dark);
    opacity: 0.8;
}

.cart-count-badge {
    background: var(--clay-rust);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.25rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px var(--shadow);
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    color: var(--clay-earth);
    cursor: pointer;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: var(--clay-cream);
}

.lang-btn.active {
    background: var(--clay-rust);
    color: white;
}

/* Cart Page */
.cart-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
    animation: fadeIn 0.6s ease-out;
}

.cart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cart-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--clay-earth);
    margin-bottom: 0.5rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.cart-item-row {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    align-items: center;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-image-large {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details h3 {
    color: var(--clay-earth);
    margin-bottom: 0.5rem;
}

.cart-item-details p {
    color: var(--clay-rust);
    font-size: 0.9rem;
}

.quantity-controls-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--clay-cream);
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.qty-btn {
    background: var(--clay-earth);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--clay-rust);
    transform: scale(1.1);
}

.qty-value {
    font-weight: 600;
    color: var(--clay-earth);
    min-width: 30px;
    text-align: center;
}

.remove-btn-large {
    background: none;
    border: none;
    color: var(--clay-rust);
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    padding: 0.5rem;
}

.remove-btn-large:hover {
    color: var(--clay-dark);
    transform: scale(1.2);
}

/* Order Summary */
.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--clay-earth);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--clay-dark);
}

.summary-row.total {
    border-top: 2px solid var(--clay-earth);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--clay-earth);
}

.delivery-options {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(156, 175, 136, 0.1));
    border-radius: 15px;
}

.delivery-options h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--clay-earth);
    margin-bottom: 1rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.delivery-option:hover {
    border-color: var(--clay-rust);
}

.delivery-option.selected {
    border-color: var(--clay-earth);
    background: var(--clay-cream);
}

.delivery-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.delivery-info {
    flex: 1;
}

.delivery-info h4 {
    color: var(--clay-earth);
    margin-bottom: 0.25rem;
}

.delivery-info p {
    font-size: 0.85rem;
    color: var(--clay-rust);
}

.delivery-price {
    font-weight: 600;
    color: var(--clay-earth);
    font-size: 1.1rem;
}

.empty-cart {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.empty-cart h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--clay-earth);
    margin-bottom: 1rem;
}

.continue-shopping-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
    transition: all 0.3s;
}

.continue-shopping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 115, 82, 0.4);
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--clay-earth);
    letter-spacing: 2px;
}

.logo span {
    font-weight: 600;
    color: var(--clay-rust);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.account-icon {
    position: relative;
    cursor: pointer;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--clay-dark);
    border-radius: 50%;
    border: 2px solid var(--clay-earth);
    transition: all 0.3s ease;
}

.account-icon:hover,
.account-icon.is-logged-in {
    background: var(--clay-earth);
    color: var(--clay-cream);
    border-color: var(--clay-earth);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clay-earth);
    color: var(--clay-cream);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
}

.cart-icon:hover {
    background: var(--clay-rust);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

.signout-btn {
    position: relative;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--clay-earth);
    border: 2px solid var(--clay-earth);
    transition: all 0.3s ease;
}
.signout-btn:hover {
    background: var(--clay-rust);
    border-color: var(--clay-rust);
    color: white;
    transform: translateY(-2px);
}

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

/* ============================================
   HOME — CATEGORY GRID
   ============================================ */
.categories-section {
    padding: 0;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    display: block;
    background: var(--clay-sand);
}

.category-media {
    position: absolute;
    inset: 0;
}

.category-media img,
.category-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-media img,
.category-card:hover .category-media video {
    transform: scale(1.05);
}

.category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6rem 2.5rem 2.5rem;
    background: linear-gradient(to top, rgba(35, 27, 20, 0.72) 0%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.6rem;
}

.category-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1;
    min-height: 2em;
}

.category-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-cta {
    opacity: 1;
    transform: translateY(0);
}

.category-coming-soon {
    position: absolute;
    inset: 0;
    background: rgba(61, 43, 31, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.category-coming-soon::after {
    content: attr(data-label);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-style: italic;
    color: #F5EFE6;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.category-card.is-coming-soon {
    pointer-events: none;
    cursor: default;
}

.category-card.is-coming-soon .category-label {
    display: none;
}

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

/* Products page — category filter pills */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 2rem 5% 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-filter-pill {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid var(--clay-earth);
    background: transparent;
    color: var(--clay-earth);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.category-filter-pill:hover {
    background: var(--clay-cream);
}

.category-filter-pill.active {
    background: var(--clay-earth);
    color: #fff;
    border-color: var(--clay-earth);
}

/* Products page — category sections */
.category-section {
    margin-bottom: 4rem;
}

.category-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--clay-earth);
    padding: 2.5rem 5% 1.25rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
    margin: 0;
    letter-spacing: 0.02em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.6s ease-out both;
    animation-delay: calc(var(--index) * 0.1s);
    display: flex;
    flex-direction: column;
}

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow);
}

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

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

.product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--clay-earth);
    margin-bottom: 0.35rem;
    min-height: calc(2 * 1.3em);
}

.product-description {
    font-size: 0.82rem;
    color: var(--clay-rust);
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clay-earth);
}

.add-to-cart {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 115, 82, 0.4);
}

.add-to-cart:active {
    transform: translateY(0);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 63, 53, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

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

.cart-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

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

.close-cart {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--clay-earth);
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--clay-rust);
}

.cart-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--clay-earth);
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--clay-earth);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--clay-rust);
}

.remove-item {
    background: none;
    border: none;
    color: var(--clay-rust);
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clay-earth);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--clay-sage), #7A9B6F);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(156, 175, 136, 0.4);
}

.empty-cart {
    text-align: center;
    padding: 3rem 0;
    color: var(--clay-rust);
}

footer {
    background: var(--clay-dark);
    color: var(--clay-cream);
    padding: 4rem 5% 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--clay-sand);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact-item a {
    color: var(--clay-cream);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--clay-sand);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-email-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-social .social-link {
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--clay-rust);
    opacity: 0.75;
    transition: opacity 0.2s;
    line-height: 1;
}

.footer-social .social-link:hover {
    opacity: 1;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item summary {
    cursor: pointer;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.9;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    font-size: 0.85rem;
    padding: 0.25rem 0 0.75rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-col-end {
    display: flex;
    flex-direction: column;
}

.footer-lang {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    margin-bottom: 2rem;
    width: fit-content;
}

.footer-lang .lang-btn {
    color: var(--clay-cream);
}

.footer-lang .lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: auto;
    line-height: 1.5;
}

/* Page sections */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Admin Badge */
.admin-badge {
    background: linear-gradient(135deg, #8B6F47, #B67352);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 600;
}

/* Admin Dashboard */
.admin-dashboard {
    display: none;
}

.admin-dashboard.active {
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--clay-earth);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--clay-rust);
    font-size: 1rem;
    font-weight: 500;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-section-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--clay-earth);
}

.product-subtabs {
    display: flex;
    gap: 0;
    margin-top: 1.5rem;
}
.product-subtab {
    padding: 0.6rem 1.4rem;
    border: none;
    background: rgba(139, 111, 71, 0.08);
    color: var(--clay-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.03em;
}
.product-subtab:hover:not(:disabled) {
    background: rgba(139, 111, 71, 0.15);
}
.product-subtab.active {
    background: white;
    color: var(--clay-earth);
    box-shadow: 0 -2px 0 var(--clay-earth) inset;
}
.product-subtab:disabled {
    opacity: 0.4;
    cursor: default;
}
.product-subtab-count {
    background: var(--clay-earth);
    color: white;
    font-size: 0.7rem;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
}

.filter-select {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(139, 111, 71, 0.2);
    border-radius: 30px;
    background: white;
    color: var(--clay-earth);
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--clay-rust);
}

.customers-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(156, 175, 136, 0.1));
}

th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--clay-earth);
    font-size: 0.95rem;
}

td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    color: var(--clay-dark);
}

tbody tr {
    transition: background 0.3s;
}

tbody tr:hover {
    background: rgba(245, 239, 230, 0.5);
}

.customer-email {
    color: var(--clay-rust);
    font-size: 0.9rem;
}

.customer-date {
    color: var(--clay-rust);
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-view {
    background: var(--clay-sage);
    color: white;
}

.btn-view:hover {
    background: #7A9B6F;
    transform: translateY(-2px);
}

.btn-email {
    background: var(--clay-rust);
    color: white;
}

.btn-email:hover {
    background: var(--clay-earth);
    transform: translateY(-2px);
}

.notification-settings {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 3rem;
}

.notification-settings h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--clay-earth);
    margin-bottom: 1.5rem;
}

.notification-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.notification-option:last-child {
    border-bottom: none;
}

.notification-info h4 {
    color: var(--clay-earth);
    margin-bottom: 0.5rem;
}

.notification-info p {
    color: var(--clay-rust);
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(139, 111, 71, 0.2);
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(135deg, var(--clay-sage), #7A9B6F);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.email-config {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(156, 175, 136, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.email-config h4 {
    color: var(--clay-earth);
    margin-bottom: 1rem;
}

.recent-orders-admin {
    margin-top: 3rem;
}

.order-card-admin {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
}

.order-card-admin:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.order-header-admin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.new-order-badge {
    background: linear-gradient(135deg, var(--clay-sage), #7A9B6F);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Product Management */
.product-category-header {
    background: var(--cream-light);
    color: var(--clay-brown);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.stock-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-in-stock {
    background: rgba(156, 175, 136, 0.2);
    color: var(--clay-sage);
}

.stock-low {
    background: rgba(212, 165, 116, 0.2);
    color: var(--clay-terracotta);
}

.stock-out {
    background: rgba(180, 115, 82, 0.2);
    color: var(--clay-rust);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-active {
    background: rgba(156, 175, 136, 0.2);
    color: var(--clay-sage);
}

.status-inactive {
    background: rgba(139, 111, 71, 0.2);
    color: var(--clay-earth);
}

/* Product Modal */
.product-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 63, 53, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
}

.product-form-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem;
}

.product-form-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
    margin: auto;
}

.product-form-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--clay-earth);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Account Section */
.account-section {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.account-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.auth-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.auth-form h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--clay-earth);
    margin-bottom: 0.5rem;
}

.auth-form p {
    color: var(--clay-rust);
    margin-bottom: 2rem;
}

.auth-panel {
    max-width: 900px;
    margin: 0 auto;
}

.auth-form-centered {
    max-width: 440px;
    margin: 0 auto;
}

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

.verification-icon {
    font-size: 3rem;
    color: var(--clay-rust);
    margin-bottom: 1rem;
}

.verification-email-display {
    font-weight: 600;
    color: var(--clay-earth);
    background: var(--warm-linen);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin: 0.5rem 0 1rem;
    word-break: break-all;
}

.verification-hint {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

.verification-divider {
    border: none;
    border-top: 1px solid var(--warm-linen);
    margin: 1.5rem 0;
}

.verification-resend-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.btn-outline-clay {
    background: transparent;
    color: var(--clay-rust);
    border: 2px solid var(--clay-rust);
    transition: background 0.2s, color 0.2s;
}

.btn-outline-clay:hover:not(:disabled) {
    background: var(--clay-rust);
    color: #fff;
}

.btn-outline-clay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(139, 111, 71, 0.2);
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: var(--clay-rust);
    font-size: 0.9rem;
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--clay-rust);
}

.auth-link button {
    background: none;
    border: none;
    color: var(--clay-earth);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s;
}

.auth-link button:hover {
    color: var(--clay-rust);
}

/* Dashboard */
.dashboard {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard.active {
    display: block;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--clay-earth);
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--clay-rust);
    font-size: 1.1rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.dashboard-tab {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid rgba(139, 111, 71, 0.2);
    border-radius: 30px;
    color: var(--clay-earth);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.dashboard-tab:hover {
    border-color: var(--clay-rust);
    color: var(--clay-rust);
}

.dashboard-tab.active {
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border-color: transparent;
}

.dashboard-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
}

.order-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    border: 2px solid rgba(139, 111, 71, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.order-card:hover {
    border-color: var(--clay-rust);
    box-shadow: 0 5px 20px var(--shadow);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.order-number {
    font-weight: 600;
    color: var(--clay-earth);
    font-size: 1.1rem;
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-processing {
    background: rgba(212, 165, 116, 0.2);
    color: var(--clay-rust);
}

.status-shipped {
    background: rgba(156, 175, 136, 0.2);
    color: var(--clay-sage);
}

.status-delivered {
    background: rgba(156, 175, 136, 0.3);
    color: #5A7A4A;
}

.order-details {
    display: grid;
    gap: 0.75rem;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.order-detail-label {
    color: var(--clay-rust);
}

.order-detail-value {
    color: var(--clay-dark);
    font-weight: 500;
}

.order-items {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
}

.order-items h4 {
    color: var(--clay-earth);
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.order-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: var(--clay-earth);
    margin-bottom: 0.25rem;
}

.order-item-details {
    color: var(--clay-rust);
    font-size: 0.85rem;
}

.tracking-info {
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.1), rgba(212, 165, 116, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.tracking-info h4 {
    color: var(--clay-earth);
    margin-bottom: 0.75rem;
}

.tracking-number {
    font-family: monospace;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.track-button {
    padding: 0.5rem 1.5rem;
    background: var(--clay-earth);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.track-button:hover {
    background: var(--clay-rust);
    transform: translateY(-2px);
}

/* Tracking link (replaces button) */
.tracking-link {
    display: inline-block;
    margin-top: 0.6rem;
    color: var(--clay-earth);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid var(--clay-rust);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.tracking-link:hover {
    color: var(--clay-rust);
}

/* Order totals block (user orders) */
.order-totals {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    display: grid;
    gap: 0.4rem;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--clay-dark);
}

.order-grand-total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--clay-earth);
    border-top: 1px solid rgba(139, 111, 71, 0.15);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
}

/* Order address (user orders) */
.order-address {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
}

/* Shared status badge (used in table + modal) */
.order-status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.order-status-badge.status-processing { background: rgba(212,165,116,0.2); color: var(--clay-rust); }
.order-status-badge.status-shipped    { background: rgba(156,175,136,0.2); color: var(--clay-sage); }
.order-status-badge.status-delivered  { background: rgba(156,175,136,0.3); color: #5A7A4A; }
.order-status-badge.status-cancelled  { background: rgba(183,71,71,0.12);  color: #B74747; }

/* Small outline button (used in orders table) */
.btn-outline {
    background: transparent;
    border: 1px solid var(--clay-earth);
    color: var(--clay-earth);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.btn-outline:hover {
    background: var(--clay-earth);
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ============================================
   ORDER DETAIL MODAL (Admin)
   ============================================ */
.order-detail-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.order-detail-content {
    background: #fff;
    border-radius: 12px;
    max-width: 920px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    color: var(--clay-dark);
}

.odm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--clay-cream);
}

.odm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--clay-earth);
    margin: 0 0 0.25rem;
}

.odm-meta {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.odm-meta a { color: var(--clay-rust); text-decoration: none; }
.odm-meta a:hover { text-decoration: underline; }

.odm-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
}

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

.odm-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clay-rust);
    margin: 0 0 0.75rem;
}

.odm-items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.odm-items-table th {
    text-align: left;
    padding: 0.4rem 0.5rem;
    background: var(--clay-cream);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--clay-earth);
}

.odm-items-table td {
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid rgba(139,111,71,0.08);
    color: var(--clay-dark);
}

.odm-totals {
    margin-top: 1rem;
    border-top: 1px solid rgba(139,111,71,0.12);
    padding-top: 0.75rem;
    display: grid;
    gap: 0.35rem;
}

.odm-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #555;
}

.odm-grand-total {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clay-earth);
    border-top: 1px solid rgba(139,111,71,0.2);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
}

.odm-address {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--clay-dark);
    background: var(--clay-cream);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.odm-update-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.odm-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--clay-earth);
    margin-top: 0.5rem;
}

.odm-input {
    width: 100%;
    padding: 0.55rem 0.85rem;
    border: 1.5px solid rgba(139,111,71,0.25);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: var(--clay-dark);
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.odm-input:focus {
    outline: none;
    border-color: var(--clay-earth);
}

.odm-save-btn {
    margin-top: 0.75rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.save-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.save-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 115, 82, 0.4);
}

.logout-button {
    padding: 1rem 2rem;
    background: white;
    color: var(--clay-rust);
    border: 2px solid var(--clay-rust);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.logout-button:hover {
    background: var(--clay-rust);
    color: white;
}

.delete-account-button {
    padding: 1rem 2rem;
    background: white;
    color: #c0392b;
    border: 2px solid #c0392b;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.delete-account-button:hover {
    background: #c0392b;
    color: white;
}

.empty-orders {
    text-align: center;
    padding: 3rem;
    color: var(--clay-rust);
}

.empty-orders h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--clay-earth);
    margin-bottom: 1rem;
}

.shop-now-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.shop-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 115, 82, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--clay-earth);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--clay-rust);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--clay-earth);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--clay-earth);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--clay-rust);
    line-height: 1.6;
}

.contact-details a {
    color: var(--clay-rust);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--clay-earth);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--clay-earth);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--clay-earth);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(139, 111, 71, 0.2);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--clay-dark);
    transition: border-color 0.3s;
    background: var(--clay-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clay-rust);
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 2.75rem;
    box-sizing: border-box;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clay-earth);
    opacity: 0.45;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    transition: opacity 0.2s;
}

.password-toggle:hover {
    opacity: 0.85;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(180, 115, 82, 0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--clay-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clay-earth);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--clay-rust);
    color: white;
    transform: translateY(-3px);
}

/* Product Detail Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 63, 53, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    overflow-y: hidden;
}

.product-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3vh 2rem;
}

.product-detail {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    height: 94vh;
    max-height: 94vh;
    position: relative;
    animation: slideUp 0.4s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0;
    overflow: hidden;
}

.close-product {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--clay-earth);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 15px var(--shadow);
}

.close-product:hover {
    background: white;
    color: var(--clay-rust);
    transform: rotate(90deg);
}

.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
}

.product-detail-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--clay-earth);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--clay-rust);
    margin-bottom: 2rem;
}

.product-detail-description {
    font-size: 1rem;
    color: var(--clay-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    white-space: pre-line;
}

.product-details-list {
    list-style: none;
    margin-bottom: 2rem;
}

.product-details-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.product-details-list li:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--clay-rust);
    font-weight: 500;
}

.detail-value {
    color: var(--clay-dark);
    text-align: right;
}

.care-instructions {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(156, 175, 136, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.care-instructions h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--clay-earth);
    margin-bottom: 0.75rem;
}

.care-instructions p {
    font-size: 0.9rem;
    color: var(--clay-dark);
    line-height: 1.6;
}

.product-detail-actions {
    display: flex;
    gap: 1rem;
}

.add-to-cart-detail {
    flex: 1;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.add-to-cart-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(180, 115, 82, 0.4);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: 500;
    color: var(--clay-earth);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--clay-cream);
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.quantity-btn {
    background: var(--clay-earth);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: var(--clay-rust);
    transform: scale(1.1);
}

.quantity-value {
    font-weight: 600;
    color: var(--clay-earth);
    min-width: 30px;
    text-align: center;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.view-details-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 63, 53, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .view-details-overlay {
    transform: translateY(0);
}

.view-details-text {
    color: white;
    font-weight: 500;
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive */
/* Hide nav dropdown on touch / mobile devices */
@media (max-width: 768px), (hover: none) {
    .nav-dropdown {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-content {
        padding: 2rem;
    }

    .product-detail {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
        max-height: none;
    }

    .product-detail-image {
        min-height: 280px;
        max-height: 320px;
    }

    .product-detail .gallery-main {
        min-height: 280px;
        max-height: 320px;
    }

    .product-detail-info {
        padding: 2rem;
        overflow-y: visible;
        max-height: none;
    }

    .product-detail-name {
        font-size: 2rem;
    }

    .product-modal {
        overflow-y: auto;
    }

    .product-modal.active {
        padding: 1rem;
        align-items: flex-start;
    }

    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 5%;
    }

    .header-center {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-tab {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .account-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .auth-form {
        padding: 2rem;
    }

    .auth-form h2 {
        font-size: 2rem;
    }

    .dashboard-content {
        padding: 2rem;
    }

    .dashboard-header h2 {
        font-size: 2rem;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .profile-form .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-nav {
        gap: 0.5rem;
    }

    .dashboard-tab {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

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

    .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .table-wrapper {
        overflow-x: scroll;
    }

    table {
        min-width: 600px;
    }

    th, td {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .order-header-admin {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

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

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

    .category-card {
        aspect-ratio: 4 / 5;
    }

    .category-label {
        top: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: linear-gradient(to top, rgba(35, 27, 20, 0.65) 0%, rgba(35, 27, 20, 0.2) 100%);
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
        padding-top: 35%;
    }

    .category-name {
        font-size: clamp(1.4rem, 5vw, 2rem);
        min-height: unset;
    }

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

    .about-hero h1 {
        font-size: 2.5rem;
    }

    /* Cart item mobile layout */
    .cart-item-row {
        grid-template-columns: 80px 1fr auto;
        grid-template-rows: auto auto;
        align-items: start;
        gap: 0.75rem 1rem;
    }

    .cart-item-image-large {
        width: 80px;
        height: 80px;
        grid-row: 1 / 3;
        grid-column: 1;
    }

    .cart-item-details {
        grid-column: 2;
        grid-row: 1;
    }

    .quantity-controls-large {
        grid-column: 2;
        grid-row: 2;
        padding: 0.3rem 0.6rem;
        gap: 0.5rem;
        align-self: center;
        width: fit-content;
    }

    .qty-btn {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }

    .remove-btn-large {
        grid-column: 3;
        grid-row: 1;
        align-self: start;
    }

    /* Checkout header: stack vertically */
    .checkout-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .checkout-header h1 {
        font-size: 1.8rem;
    }

    .checkout-page {
        padding: 1.5rem 4%;
    }

    .checkout-card {
        padding: 1.25rem;
        border-radius: 14px;
    }

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

    .checkout-form-row {
        grid-template-columns: 1fr;
    }

    .checkout-summary-col {
        position: static;
    }
}

/* ============================================
   ORDER SUCCESS PAGE
   ============================================ */
.success-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 5%;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clay-sage), #7A9B6F);
    color: #fff;
    font-size: 2.5rem;
    line-height: 80px;
    margin: 0 auto 1.5rem;
}

.success-icon--error {
    background: linear-gradient(135deg, var(--clay-rust), var(--clay-earth));
}

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--clay-earth);
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.success-subtitle {
    color: var(--clay-rust);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.success-order-card {
    background: var(--clay-cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.success-order-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--clay-earth);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
}

.success-order-items {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
}

.success-order-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.35rem 0;
    font-size: 0.95rem;
    color: var(--clay-earth);
}

.success-item-qty {
    color: var(--clay-rust);
    font-size: 0.85rem;
    margin-left: 0.4rem;
}

.success-item-price {
    font-weight: 500;
    white-space: nowrap;
}

.success-totals {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.success-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--clay-earth);
}

.success-grand-total {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    color: var(--clay-earth);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-loading {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: var(--clay-earth);
    font-family: 'Montserrat', sans-serif;
}

.success-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(139, 111, 71, 0.2);
    border-top-color: var(--clay-earth);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-error {
    padding: 2rem 0;
    color: var(--clay-earth);
}

.success-error h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.success-error p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 5%;
    animation: fadeIn 0.6s ease-out;
}
.checkout-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.checkout-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--clay-earth);
    margin: 0;
    align-self: center;
    width: 100%;
    text-align: center;
}
.back-to-cart-btn {
    background: none;
    border: 1.5px solid var(--clay-earth);
    color: var(--clay-earth);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.back-to-cart-btn:hover {
    background: var(--clay-earth);
    color: white;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
}
@media (min-width: 900px) {
    .checkout-grid { grid-template-columns: 1fr 360px; }
}
/* Prevent grid items from expanding beyond their column */
.checkout-forms,
.checkout-summary-col {
    min-width: 0;
}
.checkout-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 1.5rem;
}
.checkout-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--clay-earth);
    margin-bottom: 1.5rem;
}
.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 900px) {
    .checkout-form-row { grid-template-columns: 1fr 1fr; }
}
.checkout-summary-col {
    position: sticky;
    top: 100px;
}
.checkout-summary-items {
    border-bottom: 1px solid var(--clay-cream);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
}
.checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.checkout-summary-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.checkout-summary-item-info { flex: 1; min-width: 0; }
.checkout-summary-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clay-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.checkout-summary-item-qty { font-size: 0.82rem; color: var(--clay-rust); }
.checkout-summary-item-price {
    font-weight: 600;
    color: var(--clay-earth);
    white-space: nowrap;
}
.billing-same-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--clay-dark);
    user-select: none;
}
.billing-same-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--clay-earth);
    cursor: pointer;
    flex-shrink: 0;
}
.place-order-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--clay-rust));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1.25rem;
    transition: all 0.3s;
}
.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(182, 115, 82, 0.4);
}
.cart-checkout-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1.5px solid var(--clay-cream);
    flex-wrap: wrap;
    gap: 1rem;
}
.cart-subtotal-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--clay-earth);
    font-weight: 600;
}
.checkout-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--clay-earth);
    margin-bottom: 1.5rem;
}
.checkout-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.checkout-field label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clay-dark);
}
.checkout-field input {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s;
    outline: none;
    font-family: inherit;
}
.checkout-field input:focus { border-color: var(--clay-earth); }
.checkout-field.full-width { grid-column: 1 / -1; }
.delivery-options-checkout {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.delivery-option-checkout {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1.5px solid #e0d5c8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.delivery-option-checkout input[type="radio"] {
    accent-color: var(--clay-earth);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.delivery-option-checkout.active {
    border-color: var(--clay-earth);
    background: var(--clay-cream);
}
.delivery-option-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}
.delivery-name { font-weight: 500; color: var(--clay-dark); }
.delivery-price { font-weight: 700; color: var(--clay-earth); }
.checkout-totals {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.25rem;
}
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--clay-dark);
}
.checkout-grand-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clay-earth);
    border-top: 1.5px solid var(--clay-cream);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}
.checkout-summary-card { position: sticky; top: 100px; }

/* ============================================
   BAN ADDRESS AUTOCOMPLETE
   ============================================ */
.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 200;
    overflow: hidden;
}
.autocomplete-item {
    padding: 0.65rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(139,111,71,0.08);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: var(--clay-cream); }

/* ============================================
   POINT RELAIS CARD
   ============================================ */
.relay-point-display {
    margin-bottom: 0.75rem;
}
.relay-point-empty {
    background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(156,175,136,0.1));
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}
.relay-point-empty p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--clay-dark);
}
.relay-point-selected-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(156,175,136,0.12);
    border: 1.5px solid rgba(156,175,136,0.4);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
}
.relay-point-selected-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.88rem;
    color: var(--clay-dark);
}
.relay-point-selected-info strong {
    font-size: 0.95rem;
    color: var(--clay-earth);
}
.btn-find-relay {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--clay-earth);
    color: white;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-find-relay:hover { opacity: 0.85; }
.btn-change-relay {
    flex-shrink: 0;
    padding: 0.4rem 0.9rem;
    background: transparent;
    color: var(--clay-earth);
    border: 1.5px solid var(--clay-earth);
    border-radius: 20px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-change-relay:hover {
    background: var(--clay-earth);
    color: white;
}

/* ============================================
   RELAY PICKER MODAL
   ============================================ */
.relay-picker-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.relay-picker-modal {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.relay-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0d8cf;
    flex-shrink: 0;
}
.relay-picker-header h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--clay-earth);
}
.relay-picker-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: var(--clay-dark);
    padding: 0 0.25rem;
    transition: color 0.15s;
}
.relay-picker-close:hover { color: var(--clay-rust); }
.relay-picker-search {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0d8cf;
    flex-shrink: 0;
}
.relay-picker-search input {
    flex: 1;
    border: 1.5px solid #d4c5b0;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}
.relay-picker-search input:focus { border-color: var(--clay-earth); }
.relay-picker-search button {
    background: var(--clay-earth);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.relay-picker-search button:hover { opacity: 0.85; }
.relay-picker-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 420px;
}
.relay-picker-map {
    flex: 0 0 60%;
    min-height: 420px;
    z-index: 1;
}
.relay-picker-list {
    flex: 0 0 40%;
    overflow-y: auto;
    border-left: 1px solid #e0d8cf;
    display: flex;
    flex-direction: column;
}
.relay-picker-hint {
    padding: 1.5rem;
    color: var(--clay-dark);
    font-size: 0.9rem;
    opacity: 0.65;
    text-align: center;
    margin: auto 0;
}
.relay-list-loading,
.relay-list-empty {
    padding: 1.5rem;
    color: var(--clay-dark);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.65;
}
.relay-list-item {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f0e8df;
    cursor: pointer;
    transition: background 0.15s;
}
.relay-list-item:hover,
.relay-list-item.active { background: rgba(212,165,116,0.12); }
.relay-list-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--clay-earth);
    margin-bottom: 0.2rem;
}
.relay-list-address,
.relay-list-city {
    font-size: 0.82rem;
    color: var(--clay-dark);
    margin-bottom: 0.15rem;
}
.relay-list-select-btn {
    margin-top: 0.35rem;
    background: var(--clay-earth);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.25rem 0.8rem;
    font-size: 0.78rem;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
}
.relay-list-select-btn:hover { opacity: 0.85; }
@media (max-width: 640px) {
    .relay-picker-overlay { padding: 0; align-items: flex-end; }
    .relay-picker-modal { max-height: 95vh; border-radius: 16px 16px 0 0; }
    .relay-picker-search { flex-direction: column; gap: 0.5rem; }
    .relay-picker-search button { width: 100%; }
    .relay-picker-body { flex-direction: column; }
    .relay-picker-map { flex: 0 0 220px; min-height: 220px; }
    .relay-picker-list { flex: 1; border-left: none; border-top: 1px solid #e0d8cf; }
}

/* ============================================
   CGV LINK
   ============================================ */
.cgv-link {
    background: none;
    border: none;
    color: var(--clay-cream);
    opacity: 0.5;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-align: left;
    transition: opacity 0.2s;
}

.cgv-link:hover {
    opacity: 0.85;
}

/* ============================================
   CGV MODAL
   ============================================ */
.cgv-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.cgv-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem 3rem;
    position: relative;
    color: var(--clay-dark);
}

.cgv-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--clay-earth);
    line-height: 1;
    padding: 0.25rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.cgv-close:hover {
    opacity: 1;
}

.cgv-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clay-earth);
    margin-bottom: 0.25rem;
}

.cgv-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.cgv-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clay-rust);
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cgv-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.cgv-contact {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clay-cream);
    font-size: 0.85rem !important;
}

.cgv-contact a {
    color: var(--clay-rust);
    text-decoration: none;
}

.cgv-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cgv-modal-content {
        padding: 2rem 1.5rem;
    }
}

/* ── Cancellation note (admin detail modal) ── */
.odm-cancel-note-display { margin-top: 1rem; }

/* ── Return request block in order detail modal ── */
.odm-return-request { margin-top: 1rem; }
.odm-return-request-inner {
    background: #F0F7FF;
    border-left: 4px solid #3B82F6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--clay-earth);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.odm-return-row { display: flex; align-items: flex-start; gap: 0.5rem; }
.odm-return-label { font-weight: 600; min-width: 4.5rem; flex-shrink: 0; }
.odm-return-reason { align-items: flex-start; }
.odm-return-badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.return-status-pending  { background: #FEF3C7; color: #92400E; }
.return-status-approved { background: #D1FAE5; color: #065F46; }
.return-status-refunded { background: #D1FAE5; color: #065F46; }
.return-status-rejected { background: #FEE2E2; color: #991B1B; }
.odm-cancel-note-text {
    background: #FFF8F0;
    border-left: 4px solid #D97706;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--clay-earth);
}

/* ── Cancellation note (user order card) ── */
.order-cancel-note {
    margin: 0.75rem 0;
    padding: 0.85rem 1rem;
    background: #F0FDF4;
    border-left: 4px solid #16A34A;
    border-radius: 8px;
    font-size: 0.88rem;
}
.order-cancel-note-refund { color: #15803D; margin-bottom: 0.4rem; }
.order-cancel-note-reason { color: var(--clay-earth); }
.order-cancel-note-label { font-weight: 600; }

/* ── Order detail modal footer ── */
.odm-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0ebe5;
    display: flex;
    justify-content: flex-end;
}

.odm-delete-btn {
    background: transparent;
    color: var(--clay-rust);
    border: 1.5px solid var(--clay-rust);
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.odm-delete-btn:hover {
    background: var(--clay-rust);
    color: #fff;
}

/* ── Blacklist section ── */
.blacklist-add-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.blacklist-add-row input {
    flex: 1;
    min-width: 180px;
    padding: 0.55rem 0.9rem;
    border: 1.5px solid #e0d8cf;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* ── Focal point picker ── */
.focal-wrapper {
    position: relative;
    display: inline-block;
    cursor: crosshair;
    user-select: none;
    margin-bottom: 0.5rem;
}
.focal-preview {
    max-width: 100%;
    max-height: 200px;
    display: block;
    border-radius: 8px;
}
.focal-crosshair {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--clay-rust);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: left 0.08s, top 0.08s;
}
.focal-hint {
    font-size: 0.8rem;
    color: #999;
    margin: 0.3rem 0 0;
}

/* ── Media upload zone ── */
.media-upload-zone {
    border: 2px dashed #d0c8be;
    border-radius: 12px;
    padding: 1rem;
    background: #faf8f5;
}
.media-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.media-thumb-card {
    position: relative;
    width: 110px;
    border: 2px solid #e0d8cf;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.media-thumb-card.is-primary {
    border-color: var(--clay-rust);
}
.media-thumb-card img,
.media-thumb-card video {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}
.media-thumb-controls {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0.35rem;
    background: #f5f0ea;
    font-size: 0.75rem;
}
.media-thumb-controls button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0.2rem;
    color: var(--clay-earth);
    font-size: 0.8rem;
}
.media-thumb-controls button:hover { color: var(--clay-rust); }
.media-thumb-controls .star-btn.active { color: var(--clay-rust); }
.media-focal-container { user-select: none; }
.focal-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1.5px var(--clay-rust);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: left 0.1s, top 0.1s;
}
.media-add-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1.5px dashed #a89880;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--clay-earth);
    transition: background 0.2s;
}
.media-add-btn:hover { background: #efe8de; }
.media-add-btn input { display: none; }

/* ── Product gallery (user-facing) ── */
/* ── Gallery inside product cards ── */
.product-gallery { margin-top: 1rem; }
.gallery-main {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 0.6rem;
}
.gallery-main img,
.gallery-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Gallery inside product detail modal (overrides above) ── */
.product-detail .product-gallery {
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-detail .gallery-main {
    flex: 1;
    min-height: 0;
    max-height: none;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}
@media (min-width: 769px) {
    .product-detail .gallery-main img,
    .product-detail .gallery-main video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
.product-detail .gallery-main img {
    object-fit: cover;
}
.product-detail .gallery-main video {
    object-fit: contain;
    background: #1a1a1a;
}
.product-detail .gallery-thumbs {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    background: #f9f6f1;
    border-top: 1px solid #ece8e3;
}
.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.gallery-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--clay-rust); }
.gallery-thumb img,
.gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Return request section ── */
.order-return-section {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid #ece8e3;
}

/* ── Return request button & badges ── */
.return-request-btn {
    background: transparent;
    border: 1.5px solid var(--clay-terracotta);
    color: var(--clay-terracotta);
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 0.75rem;
}
.return-request-btn:hover {
    background: var(--clay-terracotta);
    color: #fff;
}

/* ── Invoice button ── */
.order-invoice-section {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--clay-cream);
}
.invoice-btn {
    background: transparent;
    border: 1.5px solid var(--clay-earth);
    color: var(--clay-earth);
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.invoice-btn:hover {
    background: var(--clay-earth);
    color: #fff;
}
.return-status-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.75rem;
}
.return-status-pending { background: #f3f0ec; color: #8B7355; }
.return-status-approved { background: rgba(90,122,82,0.12); color: #5A7A52; }
.return-status-refunded { background: rgba(156,175,136,0.2); color: var(--clay-sage); }
.return-status-rejected { background: rgba(180,115,82,0.15); color: var(--clay-rust); }

/* ── Admin returns table ── */
.returns-table { width: 100%; }
.return-action-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* ── Studio closed banner ── */
.studio-banner {
    background: linear-gradient(135deg, var(--clay-rust), #C08050);
    color: white;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 999;
}
.studio-banner-date {
    opacity: 0.9;
    font-style: italic;
}

/* ── Admin analytics period selector ── */
.stats-period-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.stats-period-btn {
    padding: 0.4rem 1rem;
    border: 1.5px solid var(--clay-terracotta);
    border-radius: 20px;
    background: transparent;
    color: var(--clay-terracotta);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.stats-period-btn.active,
.stats-period-btn:hover {
    background: var(--clay-terracotta);
    color: white;
}

/* ── Admin analytics charts ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.stats-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(139,111,71,0.08);
}
.stats-section-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--clay-earth);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem;
}
.stats-bar-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
}
.stats-bar-label {
    width: 88px;
    text-align: right;
    color: var(--clay-dark);
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stats-bar-track {
    flex: 1;
    background: var(--clay-cream);
    border-radius: 4px;
    height: 20px;
    overflow: hidden;
}
.stats-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--clay-terracotta), var(--clay-rust));
    border-radius: 4px;
    transition: width 0.5s ease;
    min-width: 2px;
}
.stats-bar-value {
    min-width: 62px;
    color: var(--clay-dark);
    font-weight: 600;
    font-size: 0.82rem;
}
.stats-empty {
    color: var(--clay-rust);
    font-size: 0.9rem;
    font-style: italic;
    padding: 0.5rem 0;
}

/* Relay point info in admin order detail */
.odm-relay-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--clay-dark);
}
.odm-relay-label { font-weight: 600; }
.odm-relay-id { opacity: 0.55; font-size: 0.78rem; }

/* Customer detail modal */
.cdm-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    background: var(--clay-cream);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}
.cdm-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.cdm-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clay-rust);
}
.cdm-info-value {
    font-size: 0.92rem;
    color: var(--clay-dark);
    text-decoration: none;
    word-break: break-all;
}
.cdm-info-value[href]:hover { text-decoration: underline; color: var(--clay-rust); }

/* SEO intro — static content for search engine indexing */
.seo-intro {
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
    max-width: 680px;
    margin: 0 auto;
}
.seo-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    color: var(--clay-earth);
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.seo-intro p {
    font-size: 0.88rem;
    color: var(--clay-dark);
    line-height: 1.75;
    opacity: 0.7;
    margin-bottom: 0.4rem;
}
