/* ===== GLOBAL STYLES & VARIABLES ===== */
:root {
    --soft-bg: #faf8f5;
    --warm-stone: #e7dfd7;
    --dusty-rose: #c9b2a6;
    --deep-clay: #b28b7a;
    --ink: #2f2f2f;
    --border-light: #e2dbd3;
    --paper: #ffffff;
    --gold-accent: #d4af37;
    --suede: #b7a38e;
    --sale-highlight: #d68b7a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-bg);
    color: var(--ink);
    line-height: 1.5;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 3px 0;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    background-color: transparent !important;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(6px);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--deep-clay) !important;
    letter-spacing: -0.02em;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink) !important;
    margin: 0 0.3rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 1;
}

.btn-sale {
    background: var(--deep-clay);
    color: white !important;
    border-radius: 30px;
    padding: 0.4rem 1.5rem !important;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 1rem;
    border: none;
}

.btn-sale:hover {
    background: #9b6f5c;
}

/* Cart icon and count */
.cart-icon {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--deep-clay);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ===== BUTTONS & LINKS ===== */
.btn-alova-outline {
    background: transparent;
    border: 1.5px solid var(--ink);
    border-radius: 40px;
    padding: 0.9rem 2.8rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-alova-outline:hover {
    background: var(--ink);
    color: white;
}

.btn-category-white {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    display: inline-block;
}

.btn-category-white:hover {
    color: var(--dusty-rose);
    border-bottom-color: var(--dusty-rose);
}

.btn-outline-soft {
    border: 1.5px solid var(--ink);
    border-radius: 40px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--ink);
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.btn-outline-soft:hover {
    background: var(--ink);
    color: white;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-soft,
.breadcrumb-shop,
.breadcrumb-cart,
.breadcrumb-shipping,
.breadcrumb-checkout,
.breadcrumb-jewel,
.breadcrumb-cos,
.breadcrumb-sale,
.breadcrumb-accessories {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin: 20px 0;
}

.breadcrumb-soft a,
.breadcrumb-shop a,
.breadcrumb-cart a,
.breadcrumb-shipping a,
.breadcrumb-checkout a,
.breadcrumb-jewel a,
.breadcrumb-cos a,
.breadcrumb-sale a,
.breadcrumb-accessories a {
    color: var(--deep-clay);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.breadcrumb-soft a:hover,
.breadcrumb-shop a:hover,
.breadcrumb-cart a:hover,
.breadcrumb-shipping a:hover,
.breadcrumb-checkout a:hover,
.breadcrumb-jewel a:hover,
.breadcrumb-cos a:hover,
.breadcrumb-sale a:hover,
.breadcrumb-accessories a:hover {
    border-bottom-color: var(--deep-clay);
}

.breadcrumb-soft .separator,
.breadcrumb-shop .separator {
    color: #aaa;
    margin: 0 0.5rem;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.2rem;
    margin: 4rem 0 2rem;
    position: relative;
}
.arrivals{
    margin-left: 60px;
    margin-top:50px;
    font-size: 2.2rem;

}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--dusty-rose);
    margin-top: 8px;
}

.section-title.text-center:after {
    margin-left: auto;
    margin-right: auto;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: var(--warm-stone);
    min-height: 600px;
    display: flex;
    align-items: center;
    border-radius: 0 0 50px 50px;
    margin: 0 1rem;
    overflow: hidden;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
}

.hero-title i {
    font-style: italic;
    color: var(--deep-clay);
}

.hero-img {
    border-radius: 30px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.01);
}

/* ===== PROMISE CARDS ===== */
.promise-card {
    text-align: center;
    padding: 1.5rem;
}

.promise-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    position: relative;
    border: none;
    overflow: hidden;
    border-radius: 30px;
    transition: transform 0.2s;
    background: transparent;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card img {
    height: 340px;
    object-fit: cover;
    width: 100%;
    border-radius: 30px;
    transition: transform 0.6s ease;
    background: #efe5dd;
}

.category-card:hover img {
    transform: scale(1.05);
}

.breadcrumb a {
    color: #999; /* or any color you want */
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--deep-clay); /* optional hover effect */
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 0 0 30px 30px;
}

.category-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 1.3rem;
}

/* ===== PRODUCT GRID (HOME PAGE STYLE) ===== */
.product-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Tablet */
@media (max-width: 992px) {
    .product-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .product-grid-home {
        grid-template-columns: 1fr;
    }
}

/* ===== PRODUCT GRID (CATEGORY PAGES) ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Tablet */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RELATED PRODUCTS GRID ===== */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Tablet */
@media (max-width: 992px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRODUCT CARD (UNIFIED STYLING) ===== */
.product-grid-item {
    width: 100%;
    height: 100%;
}

.product-card-wrapper,
.related-card-wrapper {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card-wrapper:hover,
.related-card-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card-link,
.related-product-name-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.product-image,
.related-product-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-wrapper:hover .product-image,
.related-card-wrapper:hover .related-product-image {
    transform: scale(1.07);
}

.product-badge,
.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--deep-clay);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.sale-badge {
    background: var(--sale-highlight);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-body,
.related-card-body {
    padding: 1.2rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name-link {
    text-decoration: none;
    color: inherit;
    margin-bottom: 0.5rem;
    display: block;
}

.product-name,
.related-product-name {
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.8em;
    word-break: break-word;
}

.product-name-link:hover .product-name,
.related-product-name-link:hover .related-product-name {
    color: var(--deep-clay);
}

.product-footer,
.related-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
}

.price-tag,
.related-price-tag {
    font-weight: 600;
    color: var(--deep-clay);
    font-size: 1.1rem;
    white-space: nowrap;
}

.price-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.add-to-cart-btn,
.related-add-btn {
    background: var(--deep-clay);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    min-width: 70px;
    justify-content: center;
}

.add-to-cart-btn:hover,
.related-add-btn:hover {
    background: #9b6f5c;
    transform: scale(1.05);
}

.add-to-cart-btn i,
.related-add-btn i {
    font-size: 0.8rem;
}

.add-to-cart-btn:disabled,
.related-add-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Tablet adjustments */
@media (max-width: 992px) {
    .card-body,
    .related-card-body {
        padding: 1rem 0.8rem;
    }
    
    .product-name,
    .related-product-name {
        font-size: 0.9rem;
        min-height: 2.6em;
    }
    
    .price-tag,
    .related-price-tag {
        font-size: 1rem;
    }
    
    .add-to-cart-btn,
    .related-add-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.7rem;
        min-width: 65px;
    }
}

/* Mobile Landscape */
@media (min-width: 376px) and (max-width: 576px) {
    .product-image,
    .related-product-image {
        height: 220px;
        aspect-ratio: auto;
    }
    
    .product-name,
    .related-product-name {
        font-size: 0.95rem;
        min-height: 2.6em;
    }
    
    .price-tag,
    .related-price-tag {
        font-size: 1.1rem;
    }
    
    .add-to-cart-btn,
    .related-add-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-width: 70px;
    }
    
    .card-body,
    .related-card-body {
        padding: 1rem 0.8rem;
    }
}

/* Mobile Portrait */
@media (max-width: 375px) {
    .product-image,
    .related-product-image {
        height: 200px;
        aspect-ratio: auto;
    }
    
    .product-name,
    .related-product-name {
        font-size: 0.9rem;
        min-height: 2.4em;
    }
    
    .price-tag,
    .related-price-tag {
        font-size: 1rem;
    }
    
    .add-to-cart-btn,
    .related-add-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        min-width: 60px;
    }
    
    .card-body,
    .related-card-body {
        padding: 0.8rem 0.6rem;
    }
    
    .add-to-cart-btn i,
    .related-add-btn i {
        font-size: 0.7rem;
    }
}

/* ===== FEATURED COLLECTION ===== */
.featured-collection {
    background: linear-gradient(145deg, var(--warm-stone), var(--soft-bg));
    border-radius: 60px;
    padding: 4rem;
    margin: 5rem 0;
}

.collection-tag {
    background: var(--deep-clay);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.collection-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.collection-desc {
    color: #666;
    max-width: 80%;
    margin-bottom: 2rem;
}

.btn-collection {
    background: transparent;
    border: 1.5px solid var(--ink);
    border-radius: 40px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--ink);
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.btn-collection:hover {
    background: var(--ink);
    color: white;
}

/* ===== VALUE CARDS ===== */
.value-card {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    margin: 5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.featured-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #999;
    letter-spacing: 2px;
}

/* ===== SUBCATEGORY PILLS ===== */
.subcat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0 2.5rem;
}

.pill {
    background: white;
    border-radius: 40px;
    padding: 0.6rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-light);
    color: var(--ink);
    text-decoration: none;
    transition: 0.2s;
}

.pill:hover,
.pill.active {
    background: var(--deep-clay);
    color: white;
    border-color: var(--deep-clay);
}

/* ===== CATEGORY HEADERS ===== */
.accessories-header,
.jewelry-header,
.cosmetics-header,
.category-header,
.sale-header,
.shop-header {
    background: var(--warm-stone);
    border-radius: 40px;
    padding: 3rem 2.5rem;
    margin: 2rem 0;
}

.accessories-header h1,
.jewelry-header h1,
.cosmetics-header h1,
.category-header h1,
.sale-header h1,
.shop-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .accessories-header h1,
    .jewelry-header h1,
    .cosmetics-header h1,
    .category-header h1,
    .sale-header h1,
    .shop-header h1 {
        font-size: 2rem;
    }
}

.category-description {
    max-width: 550px;
    font-size: 1.1rem;
    color: #555;
}

/* Sale header specific */
.sale-header {
    background: linear-gradient(145deg, var(--warm-stone), #f5e8e0);
    border: 1px dashed var(--sale-highlight);
}

/* ===== CATEGORY BANNERS ===== */
.accessories-banner,
.jewelry-banner,
.cos-banner,
.sale-banner {
    background: white;
    border-radius: 50px;
    padding: 3rem;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.02);
}

.accessories-banner {
    border-right: 4px solid var(--suede);
}

.jewelry-banner {
    border-left: 4px solid var(--gold-accent);
}

.sale-banner {
    border-left: 4px solid var(--sale-highlight);
    background: linear-gradient(145deg, #f3e3db, #f7eae3);
}

.banner-content h3,
.accessories-banner h3,
.jewelry-banner h3,
.cos-banner h3,
.sale-banner h3 {
    font-size: 2rem;
    color: var(--deep-clay);
    margin-bottom: 0.5rem;
}

.banner-content p,
.accessories-banner p,
.jewelry-banner p,
.cos-banner p,
.sale-banner p {
    color: #666;
}

@media (max-width: 768px) {
    .accessories-banner,
    .jewelry-banner,
    .cos-banner,
    .sale-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .banner-content h3,
    .accessories-banner h3,
    .jewelry-banner h3,
    .cos-banner h3,
    .sale-banner h3 {
        font-size: 1.5rem;
    }
}

/* ===== SORT HEADER ===== */
.sort-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sort-select {
    border: 1px solid var(--border-light);
    background: white;
    border-radius: 40px;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.sort-select:hover {
    border-color: var(--deep-clay);
}

.sort-select:focus {
    outline: none;
    border-color: var(--deep-clay);
    box-shadow: 0 0 0 2px rgba(178, 139, 122, 0.1);
}

@media (max-width: 576px) {
    .sort-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-select {
        width: 100%;
    }
}

/* ===== FILTER SIDEBAR ===== */
.filter-card {
    background: white;
    border-radius: 40px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    position: sticky;
    top: 100px;
}

.filter-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 1.5rem 0 1rem;
}

.filter-title:first-of-type {
    margin-top: 0;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--deep-clay);
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}

.filter-option label {
    color: #555;
    cursor: pointer;
    flex: 1;
}

.filter-option:hover label {
    color: var(--deep-clay);
}

/* ===== PAGINATION ===== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s ease;
    background: white;
    font-size: 0.9rem;
}

.page-link i {
    font-size: 0.8rem;
}

.page-item.active .page-link {
    background: var(--deep-clay);
    border-color: var(--deep-clay);
    color: white;
}

.page-item:not(.active):not(.disabled) .page-link:hover {
    background: var(--soft-bg);
    border-color: var(--deep-clay);
    color: var(--deep-clay);
    transform: translateY(-2px);
}

.page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #eee;
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 576px) {
    .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* ===== CART TOAST ===== */
.cart-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--deep-clay);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-toast i {
    margin-right: 0.5rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .cart-toast {
        left: 20px;
        right: 20px;
        text-align: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== EMPTY STATE ===== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: var(--dusty-rose);
    margin-bottom: 1rem;
}

.empty-icon {
    font-size: 4rem;
    color: var(--dusty-rose);
    margin-bottom: 1rem;
}

.browse-btn {
    display: inline-block;
    border: 1px solid var(--deep-clay);
    color: var(--deep-clay);
    padding: 0.6rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 1rem;
    transition: 0.2s;
}

.browse-btn:hover {
    background: var(--deep-clay);
    color: white;
}

/* ===== FOOTER ===== */
footer {
    background: white;
    padding: 3rem 0 2rem;
    border-radius: 40px 40px 0 0;
    font-size: 0.8rem;
    color: #5b5b5b;
    margin-top: 4rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

footer strong {
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.footer-input {
    border: 1px solid #d9d2cc;
    border-radius: 40px;
    padding: 10px 18px;
    background: transparent;
    font-size: 0.85rem;
    width: 100%;
}

.footer-input:focus {
    border-color: var(--deep-clay);
    outline: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #5b5b5b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--deep-clay);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    color: var(--ink);
    opacity: 0.7;
    transition: opacity 0.2s;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--deep-clay);
}

/* ===== UTILITY CLASSES ===== */
.text-small {
    font-size: 0.8rem;
}

.inactive-notice {
    background: #fff3cd;
    color: #856404;
    border-radius: 40px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===== PRODUCT PAGE SPECIFIC ===== */
.main-image,
.main-image-container img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 40px;
    background: #f3ede8;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.main-image:hover,
.main-image-container img:hover {
    transform: scale(1.02);
}

.product-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--ink);
}

.product-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-clay);
    margin-bottom: 1.5rem;
}

.product-description-section {
    background: var(--soft-bg);
    padding: 1.5rem;
    border-radius: 30px;
    margin: 1.5rem 0;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--deep-clay);
}

.product-description {
    color: #4a4a4a;
    margin: 1.5rem 0 2rem;
    max-width: 90%;
    line-height: 1.8;
}

.bullet-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.bullet-list li {
    margin-bottom: 0.5rem;
}

.bullet-list li:last-child {
    margin-bottom: 0;
}

.bullet-list li strong {
    color: var(--ink);
    font-weight: 600;
}

/* Stock badges */
.stock-badge {
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    display: inline-block;
}

.in-stock {
    background: #e2f0e2;
    color: #2e7d32;
}

.low-stock {
    background: #fff0d9;
    color: #b85c00;
}

.out-of-stock {
    background: #ffe6e6;
    color: #b33f3f;
}

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    user-select: none;
}

.qty-btn:hover {
    background: var(--deep-clay);
    color: white;
    border-color: var(--deep-clay);
    transform: scale(1.05);
}

.qty-number {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Add to bag button */
.btn-add-large {
    background: var(--deep-clay);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0.9rem 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-add-large:hover {
    background: #9b6f5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Details accordion */
.details-accordion {
    margin: 2.5rem 0;
}

.detail-item {
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.detail-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--ink);
    transition: color 0.2s ease;
}

.detail-summary:hover {
    color: var(--deep-clay);
}

.detail-summary span {
    font-size: 1.2rem;
    color: var(--deep-clay);
    transition: transform 0.3s ease;
}

.detail-summary:hover span {
    transform: scale(1.1);
}

.detail-content {
    padding: 1.5rem 0 0.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Thumbnail row */
.thumbnail-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #f3ede8;
    padding: 10px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--deep-clay);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thumbnail {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 400px) {
    .thumbnail {
        width: 55px;
        height: 55px;
    }
}

/* Product page mobile responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 1.5rem;
        margin-top: 1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .quantity-selector {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .quantity-selector .d-flex {
        justify-content: center;
    }
    
    .btn-add-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .bullet-list {
        padding-left: 1rem;
    }
    
    .bullet-list li {
        font-size: 0.8rem;
    }
    
    .qty-btn {
        width: 35px;
        height: 35px;
    }
}

/* ===== CART PAGE ===== */
.cart-header {
    padding: 2rem 0 1rem;
}

.cart-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}

.cart-table {
    background: white;
    border-radius: 40px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: #f3ede8;
    border-radius: 25px;
    padding: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 2;
    min-width: 150px;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: #6b6b6b;
}

.cart-item-price {
    font-weight: 600;
    color: var(--deep-clay);
    min-width: 80px;
    text-align: right;
    font-size: 1rem;
    flex-shrink: 0;
}

.cart-item-remove {
    color: #aaa;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: var(--deep-clay);
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-clay);
    text-decoration: none;
    margin: 1rem 0;
    font-weight: 500;
    transition: color 0.2s;
}

.continue-shopping:hover {
    color: #9b6f5c;
}

/* Cart summary */
.summary-card {
    background: white;
    border-radius: 40px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-total {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.promo-input {
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: 0.8rem 1.2rem;
    background: white;
    width: 100%;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.promo-input:focus {
    border-color: var(--deep-clay);
    outline: none;
}

.btn-apply,
.btn-checkout,
.btn-place-order,
.btn-login,
.btn-register,
.btn-submit,
.btn-save,
.btn-continue {
    background: var(--deep-clay);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    transition: background 0.2s;
    cursor: pointer;
}

.btn-apply:hover,
.btn-checkout:hover,
.btn-place-order:hover,
.btn-login:hover,
.btn-register:hover,
.btn-submit:hover,
.btn-save:hover,
.btn-continue:hover {
    background: #9b6f5c;
}

/* Cart responsive */
@media (max-width: 992px) {
    .cart-item {
        flex-wrap: wrap;
        position: relative;
        padding: 1.2rem 0;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-details {
        min-width: 200px;
    }
    
    .summary-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .cart-item {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    .cart-item-details {
        min-width: calc(100% - 90px);
    }
}

@media (max-width: 576px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding: 1rem 0;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
    }
    
    .cart-item-details {
        width: 100%;
        padding-right: 30px;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 0;
    }
}

/* ===== CHECKOUT & FORMS ===== */
.checkout-steps {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

.step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--deep-clay);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.step:not(.active) .step-number {
    background: #ddd;
}

.step .step-label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Form sections */
.form-section {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    color: #555;
}

.form-control,
.form-select {
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 0.7rem 1.2rem;
    background: white;
    font-size: 0.9rem;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--deep-clay);
    outline: none;
    box-shadow: none;
}

.form-check-input {
    border-radius: 4px;
    border-color: var(--border-light);
}

.form-check-input:checked {
    background-color: var(--deep-clay);
    border-color: var(--deep-clay);
}

.form-check-label {
    font-size: 0.85rem;
    color: #555;
}

/* Login/Register cards */
.login-card,
.register-card {
    background: white;
    border-radius: 50px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    max-width: 500px;
    margin: 2rem auto 4rem;
}

.login-card h2,
.register-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-card .lead,
.register-card .lead {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #aaa;
    font-size: 0.8rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-light);
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

.forgot-link {
    text-align: right;
    margin-top: 0.3rem;
}

.forgot-link a,
.register-link a,
.login-link a {
    color: var(--deep-clay);
    text-decoration: none;
    font-size: 0.8rem;
}

.forgot-link a:hover,
.register-link a:hover,
.login-link a:hover {
    text-decoration: underline;
}

.register-link,
.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.social-btn {
    width: 100%;
    border: 1px solid var(--border-light);
    background: white;
    border-radius: 40px;
    padding: 0.8rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.8rem;
    transition: 0.2s;
}

.social-btn:hover {
    background: #f9f5f1;
    border-color: var(--deep-clay);
}

/* ===== ACCOUNT/ORDERS PAGE ===== */
.account-nav {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.account-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.account-nav a:hover {
    color: var(--deep-clay);
}

.account-nav a.active {
    border-bottom-color: var(--deep-clay);
    color: var(--deep-clay);
}

.order-card {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    margin-bottom: 2rem;
    transition: transform 0.2s;
}

.order-card:hover {
    transform: translateY(-2px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.order-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--deep-clay);
}

.order-status {
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-delivered {
    background: #e2f0e2;
    color: #2e7d32;
}

.status-shipped {
    background: #fff0d9;
    color: #b85c00;
}

.status-processing {
    background: #f0e6d9;
    color: #8b6b4d;
}

.status-cancelled {
    background: #ffe6e6;
    color: #b33f3f;
}

.order-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-light);
}

.order-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.item-img {
    width: 60px;
    height: 60px;
    background: #f3ede8;
    border-radius: 15px;
    padding: 8px;
    object-fit: cover;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.tracking-link {
    color: var(--deep-clay);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Profile sidebar */
.profile-sidebar {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    position: sticky;
    top: 100px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--warm-stone);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--deep-clay);
    border: 3px solid var(--deep-clay);
}

.profile-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.profile-email {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin: 1.5rem 0;
}

.stat-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--deep-clay);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #777;
}

.profile-card {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    margin-bottom: 2rem;
}

.profile-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-card h3 a {
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--deep-clay);
    font-weight: 600;
}

.address-card {
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.address-card.default {
    background: #fcf8f4;
    border-color: var(--deep-clay);
}

.address-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--deep-clay);
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.address-actions {
    margin-top: 0.8rem;
    display: flex;
    gap: 1rem;
}

.address-actions a {
    color: var(--deep-clay);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.readonly-field {
    background: #f8f4f0;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    color: #666;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: var(--warm-stone);
    border-radius: 60px;
    padding: 4rem 3rem;
    margin: 2rem 0 4rem;
    background-image: radial-gradient(circle at 80% 30%, rgba(201,178,166,0.2) 0%, transparent 50%);
}

.about-hero h2 {
    font-size: 2.5rem;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.0rem;
    max-width: 600px;
    color: #4a4a4a;
}

.story-section {
    margin: 5rem 0;
}

.story-image {
    border-radius: 50px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.values-section {
    margin: 5rem 0;
}

.values-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--warm-stone);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--deep-clay);
    border: 3px solid var(--deep-clay);
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.member-role {
    color: var(--deep-clay);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    max-width: 300px;
    margin: 0 auto;
}

.stats-section {
    background: white;
    border-radius: 60px;
    padding: 4rem 2rem;
    margin: 5rem 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-clay);
    margin-bottom: 0.5rem;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: var(--warm-stone);
    border-radius: 60px;
    padding: 4rem 3rem;
    margin: 2rem 0 4rem;
    text-align: center;
}

.contact-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #4a4a4a;
}

.info-card {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.2s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    border: 1px solid var(--border-light);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: #666;
    margin-bottom: 0.3rem;
}

.info-card a {
    color: var(--deep-clay);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

textarea.form-control {
    border-radius: 30px;
    resize: vertical;
}

.map-section {
    background: white;
    border-radius: 50px;
    padding: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.map-placeholder {
    background: var(--warm-stone);
    border-radius: 40px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-clay);
    font-size: 1.2rem;
    border: 1px solid var(--border-light);
}

.faq-preview {
    background: var(--soft-bg);
    border-radius: 50px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    border: 1px solid var(--border-light);
}

.faq-preview h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-faq {
    border: 1.5px solid var(--deep-clay);
    background: transparent;
    border-radius: 40px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--deep-clay);
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.btn-faq:hover {
    background: var(--deep-clay);
    color: white;
}

/* ===== JOURNAL/NEWSLETTER ===== */
.journal-section {
    margin: 5rem 0;
}

.journal-category {
    background: var(--soft-bg);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--deep-clay);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.journal-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.read-more {
    color: var(--deep-clay);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

.newsletter-section {
    background: var(--deep-clay);
    border-radius: 50px;
    padding: 3rem;
    margin: 5rem 0;
    color: white;
}

.newsletter-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-section .text-secondary {
    color: rgba(255,255,255,0.8) !important;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 40px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.3);
    border-color: white;
    outline: none;
}

.btn-subscribe {
    background: white;
    color: var(--deep-clay);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    white-space: nowrap;
    cursor: pointer;
}

.btn-subscribe:hover {
    background: var(--soft-bg);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#cartSuccessMessage {
    animation: slideDown 0.3s ease;
    border-left: 4px solid var(--deep-clay);
}

/* ===== CART PAGE ===== */
.cart-header {
    background: transparent;
    padding: 2rem 0 1rem;
    margin-bottom: 1.5rem;
}

.cart-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    color: var(--ink);
}

.breadcrumb-cart {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.breadcrumb-cart a {
    color: var(--deep-clay);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.breadcrumb-cart a:hover {
    border-bottom-color: var(--deep-clay);
}

/* ––– cart table – soft & clean ––– */
.cart-table {
    background: white;
    border-radius: 40px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    margin-bottom: 2rem;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: #f3ede8;
    border-radius: 25px;
    padding: 12px;
    object-fit: cover;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 2;
    min-width: 150px;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 1rem;
    color: var(--ink);
}

.cart-item-meta {
    font-size: 0.8rem;
    color: #6b6b6b;
}

.cart-item-price {
    font-weight: 600;
    color: var(--deep-clay);
    min-width: 80px;
    text-align: right;
    font-size: 1rem;
    flex-shrink: 0;
}

.cart-item-remove {
    color: #aaa;
    text-decoration: none;
    font-size: 1rem;
    margin-left: 1.5rem;
    transition: color 0.2s;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: var(--deep-clay);
}

/* Cart Quantity */
.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
    user-select: none;
}

.qty-btn:hover {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

.qty-number {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}

/* Continue Shopping */
.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-clay);
    text-decoration: none;
    margin: 2rem 0;
    font-weight: 500;
    transition: color 0.2s;
}

.continue-shopping:hover {
    color: #9b6f5c;
}

/* ––– cart summary – soft card ––– */
.summary-card {
    background: white;
    border-radius: 40px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.summary-total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.promo-input {
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: 0.8rem 1.2rem;
    background: white;
    width: 100%;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.promo-input:focus {
    border-color: var(--deep-clay);
    outline: none;
}

.btn-apply {
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 40px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--ink);
    width: 100%;
    transition: 0.2s;
    cursor: pointer;
    margin-bottom: 1rem;
}

.btn-apply:hover {
    background: var(--ink);
    color: white;
}

.btn-checkout {
    background: var(--deep-clay);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin: 1.5rem 0 1rem;
    transition: background 0.2s;
    cursor: pointer;
}

.btn-checkout:hover {
    background: #9b6f5c;
}

/* ––– empty cart state ––– */
.empty-cart {
    background: white;
    border-radius: 50px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    margin: 2rem 0;
}

.empty-cart h3 {
    font-size: 2rem;
    color: var(--dusty-rose);
    margin-bottom: 1rem;
}

.empty-cart .btn-outline-soft {
    border: 1.5px solid var(--ink);
    border-radius: 40px;
    padding: 0.9rem 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--ink);
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
    transition: 0.2s;
}

.empty-cart .btn-outline-soft:hover {
    background: var(--ink);
    color: white;
}

/* ===== CART PAGE RESPONSIVE ===== */

/* Tablet Styles (768px - 992px) */
@media (max-width: 992px) {
    .cart-header h1 {
        font-size: 2.2rem;
    }
    
    .cart-item {
        flex-wrap: wrap;
        position: relative;
        padding: 1.2rem 0;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .cart-item-details {
        min-width: 200px;
    }
    
    .cart-quantity {
        margin-left: auto;
    }
    
    .cart-item-price {
        min-width: auto;
        margin-left: 1rem;
    }
    
    .summary-card {
        position: static;
        margin-top: 2rem;
    }
}

/* Mobile Styles (576px - 768px) */
@media (max-width: 768px) {
    .cart-header h1 {
        font-size: 2rem;
    }
    
    .cart-table {
        padding: 1.5rem 1rem;
    }
    
    .cart-item {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 1.2rem 0;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
        padding: 8px;
        margin-right: 1rem;
    }
    
    .cart-item-details {
        min-width: calc(100% - 100px);
    }
    
    .cart-item-title {
        font-size: 0.95rem;
    }
    
    .cart-item-meta {
        font-size: 0.75rem;
    }
    
    .cart-quantity {
        margin-left: 0;
        order: 2;
        width: auto;
    }
    
    .cart-item-price {
        margin-left: auto;
        order: 1;
        font-size: 0.95rem;
    }
    
    .cart-item-remove {
        margin-left: 0.5rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-title {
        font-size: 1.3rem;
    }
}

/* Small Mobile Styles (< 576px) */
@media (max-width: 576px) {
    .cart-header h1 {
        font-size: 1.8rem;
    }
    
    .cart-table {
        padding: 1rem 0.8rem;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding: 1.5rem 0;
        gap: 0.8rem;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .cart-item-details {
        width: 100%;
        min-width: auto;
        margin-bottom: 0.5rem;
        padding-right: 30px;
    }
    
    .cart-item-title {
        font-size: 1rem;
        padding-right: 0;
    }
    
    .cart-quantity {
        width: auto;
        margin: 0;
        order: 0;
    }
    
    .cart-item-price {
        margin-left: auto;
        font-size: 1rem;
        position: absolute;
        bottom: 1.5rem;
        right: 0;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 1.5rem;
        right: 0;
        font-size: 1.2rem;
        margin: 0;
    }
    
    .cart-item-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .summary-card {
        padding: 1.2rem;
    }
    
    .summary-row {
        font-size: 0.9rem;
    }
    
    .summary-total {
        font-size: 1.1rem;
    }
    
    .promo-input {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-apply, .btn-checkout {
        padding: 0.8rem;
        font-size: 0.7rem;
    }
    
    .continue-shopping {
        width: 100%;
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .empty-cart {
        padding: 3rem 1rem;
    }
    
    .empty-cart h3 {
        font-size: 1.6rem;
    }
    
    .empty-cart .btn-outline-soft {
        padding: 0.8rem 2rem;
        font-size: 0.7rem;
    }
}

/* Extra Small Mobile (< 376px) */
@media (max-width: 375px) {
    .cart-header h1 {
        font-size: 1.6rem;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-title {
        font-size: 0.9rem;
    }
    
    .cart-quantity {
        gap: 0.3rem;
    }
    
    .qty-btn {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
        bottom: 1.2rem;
    }
    
    .cart-item-remove {
        top: 1.2rem;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .summary-title {
        font-size: 1.2rem;
    }
    
    .summary-row {
        font-size: 0.85rem;
    }
}

/* ===== COMPLETE CHECKOUT PAGE STYLES ===== */
/* ===== ORDER SUMMARY STYLES ===== */
.summary-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
    letter-spacing: -0.01em;
    color: #222;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e5e5e5;
}

.summary-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.summary-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #f0f0f0;
    border: 1px solid #eee;
}

.summary-item-details {
    flex: 1;
}

.summary-item-title {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.summary-item-meta {
    font-size: 0.8rem;
    color: #777;
}

.summary-item-price {
    font-weight: 600;
    color: #222;
    font-size: 0.95rem;
    white-space: nowrap;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    padding: 4px 0;
}

.summary-total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    border-top: 2px solid #e0e0e0;
    margin-top: 15px;
    padding-top: 15px;
    margin-bottom: 20px;
}

.summary-total span:last-child {
    color: #222;
    font-weight: 700;
}

.btn-place-order {
    width: 100%;
    padding: 14px 20px;
    background-color: #b28b7a;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-place-order:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-place-order:active {
    transform: translateY(0);
}

/* ===== RETURN TO CART BUTTON STYLES ===== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b28b7a !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 0;
}

.back-link:hover {
    color: #8b5a4a !important;
    gap: 8px;
}

.back-link span {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.back-link:hover span {
    transform: translateX(-3px);
}

/* Mobile back link */
.back-link.d-lg-none {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #eee;
    margin: 20px 0;
}

.back-link.d-lg-none:hover {
    background-color: #f0f0f0;
    border-color: #b28b7a;
}

/* Desktop back link */
.back-link.d-none.d-lg-inline-flex {
    margin-top: 10px;
}

/* Payment method styling (if needed) */
.payment-method {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #fff;
}

.payment-method:hover {
    border-color: #aaa;
}

.payment-method.selected {
    border-color: #000;
    background-color: #fafafa;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

/* Empty state for new arrivals */
.empty-state-new-arrivals {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--soft-bg);
    border-radius: 60px;
    margin: 2rem 0;
}

.empty-state-new-arrivals .empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.empty-state-new-arrivals h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--ink);
}

.empty-state-new-arrivals p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 2rem;
}

.empty-state-new-arrivals .browse-btn {
    display: inline-block;
    background: var(--deep-clay);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.empty-state-new-arrivals .browse-btn:hover {
    background: #9b6f5c;
}

/* Responsive */
@media (max-width: 768px) {
    .empty-state-new-arrivals {
        padding: 3rem 1rem;
    }
    
    .empty-state-new-arrivals .empty-icon {
        font-size: 4rem;
    }
    
    .empty-state-new-arrivals h3 {
        font-size: 1.5rem;
    }
}