/* BuyVistas - Premium Home Decor Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,800;1,400&display=swap');

/* CSS Variables */
:root {
    --color-primary: #1C1917;
    --color-secondary: #C5A059;
    --color-background: #FAFAF9;
    --color-surface: #FFFFFF;
    --color-border: #E7E5E4;
    --color-muted: #F5F5F4;
    --color-text: #1C1917;
    --color-text-muted: #78716C;
    --color-error: #EF4444;
    --color-success: #10B981;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-muted);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

/* Selection */
::selection {
    background-color: var(--color-secondary);
    color: white;
}

/* Container */
.luxe-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .luxe-container {
        padding: 0 3rem;
    }
}

/* Section spacing */
.section-spacing {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-spacing {
        padding: 8rem 0;
    }
}

/* Typography */
.heading-hero {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
}

@media (min-width: 768px) {
    .heading-hero {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .heading-hero {
        font-size: 5rem;
    }
}

.heading-section {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 500;
}

@media (min-width: 768px) {
    .heading-section {
        font-size: 2.5rem;
    }
}

.heading-product {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
}

.caption-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.text-gold {
    color: var(--color-secondary);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    color: white;
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.btn-primary:hover {
    background-color: #292524;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease-out;
}

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-secondary);
    color: white;
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.btn-gold:hover {
    background-color: #b08f4a;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-primary);
    padding: 0.5rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease-out;
}

.btn-ghost:hover {
    color: var(--color-secondary);
}

/* Header */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.header-sticky.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .header-inner {
        height: 5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #57534E;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--color-primary);
}

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

.icon-btn {
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--color-secondary);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    margin-left: -0.5rem;
    background: none;
    border: none;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    border-top: 1px solid var(--color-border);
    padding: 1rem 0;
}

.mobile-menu.open {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #57534E;
}

.mobile-menu a:hover {
    color: var(--color-primary);
}

/* Search Container */
.search-container {
    display: none;
    align-items: center;
}

.search-container.open {
    display: flex;
}

.search-container input {
    width: 8rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--color-border);
    outline: none;
}

@media (min-width: 768px) {
    .search-container input {
        width: 12rem;
    }
}

.search-container input:focus {
    border-color: var(--color-text-muted);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(250, 250, 249, 0.95), rgba(250, 250, 249, 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.hero-content .caption-text {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hero-content p {
    color: #57534E;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Offer Banner */
.offer-banner {
    background: var(--color-primary);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.offer-banner p {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.offer-banner .highlight {
    color: var(--color-secondary);
    font-weight: 500;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

@media (min-width: 768px) {
    .category-card {
        height: 350px;
    }
}

.category-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.7), transparent);
}

.category-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: white;
    margin: 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
    }
}

@media (min-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.product-card {
    position: relative;
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.product-card-image-container {
    position: relative;
    overflow: hidden;
    background: var(--color-muted);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.7s ease-in-out;
}

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

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-primary);
    color: white;
}

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

.badge-success {
    background: var(--color-success);
}

.quick-add-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .quick-add-btn {
    opacity: 1;
    transform: translateY(0);
}

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

.product-card-info {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.product-card-info .caption-text {
    margin-bottom: 0.25rem;
}

.product-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-info .stars {
    display: inline-flex;
}

.product-card-info .reviews-count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-left: 0.5rem;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Stars */
.stars {
    display: flex;
    gap: 0.125rem;
}

.star-filled {
    color: var(--color-secondary);
}

.star-empty {
    color: var(--color-border);
}

/* Price */
.price-current {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
}

.price-original {
    font-size: 0.875rem;
    color: #A8A29E;
    text-decoration: line-through;
}

/* USP Section */
.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .usp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--color-muted);
    text-align: center;
    transition: border-color 0.5s ease;
}

.feature-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.feature-card-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-secondary);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #57534E;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--color-muted);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #44403C;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info p:first-child {
    font-weight: 500;
    color: var(--color-primary);
}

.testimonial-author-info p:last-child {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 8rem 0;
    }
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 23, 0.7);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

.cta-content p {
    color: #D6D3D1;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
}

.footer-newsletter {
    border-bottom: 1px solid #44403C;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-newsletter {
        padding: 5rem 0;
    }
}

.footer-newsletter-inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-newsletter h3 {
        font-size: 1.875rem;
    }
}

.footer-newsletter p {
    color: #A8A29E;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid #44403C;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #78716C;
}

.newsletter-form input:focus {
    border-color: #78716C;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
    background: var(--color-secondary);
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #b08f4a;
}

.footer-main {
    padding: 4rem 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: #A8A29E;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #A8A29E;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-secondary);
}

.footer-links h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #A8A29E;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #A8A29E;
    margin-bottom: 1rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--color-secondary);
}

.footer-contact a {
    color: #A8A29E;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #44403C;
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #78716C;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-payments img {
    height: 1.5rem;
    opacity: 0.6;
}

.footer-payments .cod-badge {
    font-size: 0.75rem;
    color: #78716C;
    padding: 0.25rem 0.5rem;
    border: 1px solid #44403C;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 40;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

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

.breadcrumb-separator {
    color: #D6D3D1;
}

/* Page Header */
.page-header {
    background: var(--color-muted);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .page-header {
        padding: 4rem 0;
    }
}

/* Shop Page */
.shop-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .shop-layout {
        flex-direction: row;
    }
}

.shop-sidebar {
    display: none;
    width: 16rem;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .shop-sidebar {
        display: block;
    }
}

.shop-sidebar-sticky {
    position: sticky;
    top: 6rem;
}

.shop-sidebar h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.shop-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shop-sidebar button {
    background: none;
    border: none;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.shop-sidebar button:hover,
.shop-sidebar button.active {
    color: var(--color-primary);
    font-weight: 500;
}

.shop-main {
    flex: 1;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    background: none;
    font-size: 0.875rem;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-filter-btn {
        display: none;
    }
}

.product-count {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    display: none;
}

@media (min-width: 640px) {
    .product-count {
        display: block;
    }
}

.sort-select {
    position: relative;
}

.sort-select select {
    appearance: none;
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    outline: none;
}

.sort-select select:focus {
    border-color: var(--color-text-muted);
}

.sort-select svg {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-text-muted);
}

/* Mobile Filters */
.mobile-filters {
    display: none;
    padding: 1rem;
    background: var(--color-muted);
    border: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.mobile-filters.open {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-filters {
        display: none !important;
    }
}

.mobile-filters h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.mobile-filters-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mobile-filters button {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--color-border);
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-filters button:hover {
    border-color: var(--color-text-muted);
}

.mobile-filters button.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* No Products */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: var(--color-text-muted);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quantity-btn:hover {
    background: var(--color-muted);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-value {
    width: 50px;
    text-align: center;
    font-size: 0.875rem;
}

/* Cart Page */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .cart-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.cart-header {
    display: none;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .cart-header {
        display: grid;
    }
}

.cart-items {
    border-top: 1px solid var(--color-border);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

@media (min-width: 768px) {
    .cart-item {
        grid-template-columns: repeat(12, 1fr);
    }
}

.cart-item-product {
    display: flex;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cart-item-product {
        grid-column: span 6;
    }
}

.cart-item-image {
    width: 6rem;
    height: 7rem;
    object-fit: cover;
    flex-shrink: 0;
}

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

.cart-item-info .caption-text {
    margin-bottom: 0.25rem;
}

.cart-item-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cart-item-remove {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
}

.cart-item-remove:hover {
    color: var(--color-error);
}

.cart-item-quantity {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .cart-item-quantity {
        grid-column: span 2;
    }
}

.cart-item-price {
    text-align: center;
}

@media (min-width: 768px) {
    .cart-item-price {
        grid-column: span 2;
    }
}

.cart-item-total {
    text-align: right;
    font-weight: 500;
}

@media (min-width: 768px) {
    .cart-item-total {
        grid-column: span 2;
    }
}

.order-summary {
    background: var(--color-muted);
    padding: 1.5rem;
    height: fit-content;
}

@media (min-width: 1024px) {
    .order-summary {
        position: sticky;
        top: 6rem;
    }
}

.order-summary h2 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.order-summary-row .label {
    color: var(--color-text-muted);
}

.order-summary-row.total {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.order-summary .free-shipping-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.order-summary .trust-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    max-width: 28rem;
    margin: 0 auto;
}

.empty-cart-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
}

.empty-cart h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.empty-cart p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Product Detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image {
    position: relative;
    overflow: hidden;
    background: var(--color-muted);
}

.product-main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.image-nav-btn:hover {
    background: white;
}

.image-nav-btn.prev {
    left: 1rem;
}

.image-nav-btn.next {
    right: 1rem;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
}

.product-thumbnail {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background: none;
    padding: 0;
}

.product-thumbnail:hover {
    border-color: var(--color-border);
}

.product-thumbnail.active {
    border-color: var(--color-primary);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: relative;
}

@media (min-width: 1024px) {
    .product-info {
        position: sticky;
        top: 6rem;
        align-self: start;
    }
}

.product-info .caption-text {
    margin-bottom: 0.5rem;
}

.product-info h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .product-info h1 {
        font-size: 1.875rem;
    }
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-rating .stars {
    display: flex;
}

.product-rating span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-price .current {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-price .original {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-price .savings {
    font-size: 0.875rem;
    color: var(--color-success);
    font-weight: 500;
}

.stock-urgency {
    font-size: 0.875rem;
    color: #D97706;
    margin-bottom: 1rem;
}

.product-description {
    color: #57534E;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features h3 {
    font-size: 0.875rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.product-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #57534E;
}

.product-features li svg {
    color: var(--color-secondary);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .product-actions {
        flex-direction: row;
    }
}

.product-actions .btn-primary {
    flex: 1;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-muted);
    border: 1px solid var(--color-border);
}

@media (min-width: 640px) {
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.trust-badge svg {
    color: var(--color-secondary);
}

/* Checkout Form */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.checkout-form h2 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.checkout-section {
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.input-underline {
    background: transparent;
    border: none;
    border-bottom: 1px solid #D6D3D1;
    padding: 0.75rem 0;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
    font-size: 1rem;
}

.input-underline:focus {
    border-color: var(--color-primary);
}

.input-underline::placeholder {
    color: #A8A29E;
}

.input-underline.error {
    border-color: var(--color-error);
}

.form-error {
    font-size: 0.75rem;
    color: var(--color-error);
    margin-top: 0.25rem;
}

textarea.input-underline {
    resize: none;
}

.payment-method {
    border: 1px solid var(--color-secondary);
    background: rgba(197, 160, 89, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-radio {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-radio-inner {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--color-secondary);
}

.payment-info h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.payment-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Checkout Summary */
.checkout-summary {
    background: var(--color-muted);
    padding: 1.5rem;
    height: fit-content;
}

@media (min-width: 1024px) {
    .checkout-summary {
        position: sticky;
        top: 6rem;
    }
}

.checkout-summary h2 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    gap: 0.75rem;
}

.checkout-item img {
    width: 4rem;
    height: 5rem;
    object-fit: cover;
}

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

.checkout-item-info p:first-child {
    font-size: 0.875rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-item-info p:nth-child(2) {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.checkout-item-info p:last-child {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.checkout-summary .terms {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 1rem;
}

.checkout-summary .terms a {
    text-decoration: underline;
}

/* Order Confirmation */
.order-confirmation {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.order-success-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D1FAE5;
    border-radius: 50%;
    color: var(--color-success);
}

.order-confirmation h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .order-confirmation h1 {
        font-size: 1.875rem;
    }
}

.order-confirmation > p {
    color: #57534E;
    margin-bottom: 0.5rem;
}

.order-id {
    font-size: 1.125rem;
    font-family: monospace;
    font-weight: 500;
    margin-bottom: 2rem;
}

.order-next-steps {
    background: var(--color-muted);
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.order-next-steps h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.order-next-steps ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #57534E;
}

.order-next-steps li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Policy Pages */
.policy-content {
    max-width: 48rem;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #57534E;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-content li {
    color: #57534E;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.policy-contact {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--color-muted);
}

.policy-contact p {
    margin-bottom: 0.5rem;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

.about-image {
    height: 400px;
}

@media (min-width: 1024px) {
    .about-image {
        height: 500px;
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .caption-text {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 1.875rem;
    }
}

.about-content p {
    color: #57534E;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-vision {
    background: var(--color-primary);
    color: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

.mission-vision-item .caption-text {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.mission-vision-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-vision-item p {
    color: #A8A29E;
    line-height: 1.7;
}

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

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.value-card-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-secondary);
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.875rem;
    color: #57534E;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item p:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.stat-item p:last-child {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

.contact-form h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-success {
    background: #D1FAE5;
    border: 1px solid #A7F3D0;
    padding: 1.5rem;
    text-align: center;
}

.contact-success-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A7F3D0;
    border-radius: 50%;
    color: var(--color-success);
}

.contact-success h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    color: #065F46;
    margin-bottom: 0.5rem;
}

.contact-success p {
    font-size: 0.875rem;
    color: #047857;
}

.contact-info h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-muted);
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-secondary);
}

.contact-info-content h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    font-size: 0.875rem;
    color: #57534E;
}

.contact-faq {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-primary);
    color: white;
}

.contact-faq h3 {
    margin-bottom: 0.5rem;
}

.contact-faq p {
    font-size: 0.875rem;
    color: #A8A29E;
    margin-bottom: 1rem;
}

.contact-faq-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact-faq-links a {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid #44403C;
    transition: border-color 0.3s ease;
}

.contact-faq-links a:hover {
    border-color: var(--color-secondary);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-success {
    background: var(--color-success);
}

.toast-error {
    background: var(--color-error);
}

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

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

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

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #F5F5F4 25%, #FAFAF9 50%, #F5F5F4 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

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