/* FILE: assets/css/style.css */
:root {
    --color-cocoa: #5B3528;
    --color-copper: #E39A52;
    --color-cream: #FFF7ED;
    --color-beige: #F3E4D8;
    --color-dark-brown: #3B2218;
    --color-copper-hover: #D68842;
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-cocoa);
    background-color: var(--color-cream);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    color: var(--color-cocoa);
    line-height: 1.2;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Buttons - Redesigned for Premium Look */
.btn-primary {
    background: linear-gradient(135deg, var(--color-copper) 0%, #D68842 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 154, 82, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D68842 0%, var(--color-copper) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 154, 82, 0.45);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-cocoa);
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid rgba(91, 53, 40, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--color-copper);
    color: var(--color-copper);
    background-color: rgba(227, 154, 82, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 154, 82, 0.15);
}

/* Links */
a {
    color: var(--color-cocoa);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-copper);
}

/* Header Styles */
header {
    background-color: var(--color-cream);
    border-bottom: 1px solid rgba(91, 53, 40, 0.1);
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-copper);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Cart Badge */
.cart-badge {
    background-color: var(--color-copper);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    min-height: 600px;
}

.hero-tagline {
    color: var(--color-copper);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-headline {
    font-size: 3.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtext {
    font-size: 1.125rem;
    color: rgba(91, 53, 40, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Hero Media Card - New Premium Style */
.hero-media-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(91, 53, 40, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    background: linear-gradient(135deg, var(--color-beige) 0%, #E8D4C3 100%);
}

.hero-media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(91, 53, 40, 0.25);
}

.hero-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-media-card:hover img {
    transform: scale(1.05);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(91, 53, 40, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(91, 53, 40, 0.15);
}

.product-image-placeholder {
    background: linear-gradient(135deg, var(--color-beige) 0%, #E8D4C3 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cocoa);
    font-size: 0.875rem;
    opacity: 0.6;
}

.product-price {
    color: var(--color-copper);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--color-dark-brown);
    color: var(--color-beige);
}

footer a {
    color: var(--color-beige);
}

footer a:hover {
    color: var(--color-copper);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 2rem;
    }
}

/* ============================= */
/* APPENDED UTILITIES & EXTRAS  */
/* ============================= */

/* Line clamp utility for product descriptions */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product card hover enhancements */
.product-card {
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

/* Smooth hover effects for benefit icons */
.group:hover .group-hover\:bg-copper {
    background-color: var(--color-copper);
}

.group:hover .group-hover\:text-white {
    color: white;
}

/* Ensure proper spacing on mobile for hero section */
@media (max-width: 768px) {
    .hero-media-card {
        margin-top: 2rem;
    }
}

/* Enhanced shadow for testimonials on hover */
.bg-white.rounded-xl.shadow-lg:hover {
    box-shadow: 0 20px 40px -12px rgba(91, 53, 40, 0.15);
}

/* Responsive padding adjustments */
@media (min-width: 1024px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Smooth transitions for all interactive elements */
a,
button,
.btn-primary,
.btn-secondary {
    transition: all 0.3s ease;
}

/* Ensure proper aspect ratios on all devices */
.aspect-square {
    aspect-ratio: 1 / 1;
}

/* Additional responsive font scaling */
@media (max-width: 640px) {
    .font-serif {
        letter-spacing: -0.02em;
    }
}:root {
    --color-cocoa: #5B3528;
    --color-copper: #E39A52;
    --color-cream: #FFF7ED;
    --color-beige: #F3E4D8;
    --color-dark-brown: #3B2218;
    --color-copper-hover: #D68842;
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-cocoa);
    background-color: var(--color-cream);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    color: var(--color-cocoa);
    line-height: 1.2;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Utility classes matching Tailwind-like names */
.bg-cream {
    background-color: var(--color-cream);
}

.bg-beige {
    background-color: var(--color-beige);
}

.text-copper {
    color: var(--color-copper);
}

.text-cocoa {
    color: var(--color-cocoa);
}

.border-beige {
    border-color: var(--color-beige);
}

.container-custom {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Buttons - Redesigned for Premium Look */
.btn-primary {
    background: linear-gradient(135deg, var(--color-copper) 0%, #D68842 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 154, 82, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D68842 0%, var(--color-copper) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 154, 82, 0.45);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-cocoa);
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid rgba(91, 53, 40, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--color-copper);
    color: var(--color-copper);
    background-color: rgba(227, 154, 82, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 154, 82, 0.15);
}

/* Links */
a {
    color: var(--color-cocoa);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-copper);
}

/* Header Styles */
header {
    background-color: var(--color-cream);
    border-bottom: 1px solid rgba(91, 53, 40, 0.1);
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-copper);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Cart Badge */
.cart-badge {
    background-color: var(--color-copper);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    min-height: 600px;
}

.hero-tagline {
    color: var(--color-copper);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-headline {
    font-size: 3.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtext {
    font-size: 1.125rem;
    color: rgba(91, 53, 40, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Hero Media Card - Premium Style */
.hero-media-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(91, 53, 40, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    background: linear-gradient(135deg, var(--color-beige) 0%, #E8D4C3 100%);
}

.hero-media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(91, 53, 40, 0.25);
}

.hero-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-media-card:hover img {
    transform: scale(1.05);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(91, 53, 40, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(91, 53, 40, 0.15);
}

.product-image-placeholder {
    background: linear-gradient(135deg, var(--color-beige) 0%, #E8D4C3 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cocoa);
    font-size: 0.875rem;
    opacity: 0.6;
}

.product-price {
    color: var(--color-copper);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--color-dark-brown);
    color: var(--color-beige);
}

footer a {
    color: var(--color-beige);
}

footer a:hover {
    color: var(--color-copper);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 2rem;
    }
}

/* ========================================
   Additional utilities for redesigned home page
   ======================================== */

/* Line clamp utility for product descriptions */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product card hover enhancements */
.product-card {
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

/* Smooth hover effects for benefit icons */
.group:hover .group-hover\:bg-copper {
    background-color: var(--color-copper);
}

.group:hover .group-hover\:text-white {
    color: white;
}

/* Ensure proper spacing on mobile for hero section */
@media (max-width: 768px) {
    .hero-media-card {
        margin-top: 2rem;
    }
}

/* Enhanced shadow for testimonials on hover */
.bg-white.rounded-xl.shadow-lg:hover {
    box-shadow: 0 20px 40px -12px rgba(91, 53, 40, 0.15);
}

/* Responsive padding adjustments */
@media (min-width: 1024px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Smooth transitions for all interactive elements */
a,
button,
.btn-primary,
.btn-secondary {
    transition: all 0.3s ease;
}

/* Ensure proper aspect ratios on all devices */
.aspect-square {
    aspect-ratio: 1 / 1;
}

/* Additional responsive font scaling */
@media (max-width: 640px) {
    .font-serif {
        letter-spacing: -0.02em;
    }
}

/* ========================================
   Login Page Styles
   ======================================== */

.login-section {
    position: relative;
    overflow: hidden;
}

.login-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(227, 154, 82, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.login-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(91, 53, 40, 0.12);
    position: relative;
    transition: all 0.3s ease;
}

.login-card:hover {
    box-shadow: 0 12px 48px rgba(91, 53, 40, 0.16);
}

.login-brand-content {
    padding-right: 2rem;
}

.login-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-cocoa);
    font-size: 0.875rem;
    letter-spacing: 0.3px;
}

.login-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(91, 53, 40, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--color-cream);
    color: var(--color-cocoa);
}

.login-input:focus {
    outline: none;
    border-color: var(--color-copper);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(227, 154, 82, 0.1);
}

.login-input::placeholder {
    color: rgba(91, 53, 40, 0.4);
}

.login-error {
    background-color: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #991b1b;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.login-success {
    background-color: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .login-card {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .login-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .login-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Accessibility: Enhanced focus states */
.login-input:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-copper);
    outline-offset: 2px;
}
