@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #333333;
    --light-bg: #fafafa;
    --dark-bg: #000000;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    line-height: 1.7;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand img {
    max-height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.hero-section {
    background: #fafaf8;
    position: relative;
    color: #000000;
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #000000;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.8;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-outline-light {
    color: #000000;
    border: 2px solid #000000;
    background: transparent;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-outline-light:hover {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    border-color: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero-section .btn-primary {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-section .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
}

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

.product-card {
    border: 1px solid #e5e5e5;
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid #000000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image-wrapper::after {
    opacity: 1;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.product-card .card-body {
    padding: 1.75rem;
}

.product-card .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.product-card .card-text {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.btn {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
}

.btn-outline-primary {
    color: #000000;
    border: 2px solid #000000;
    background: transparent;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    border-color: #000000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 50px;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 50px;
}

.page-header {
    background: #fafaf8;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: #000000;
    font-family: 'Playfair Display', serif;
    text-shadow: none;
}

.page-header .lead {
    color: #4a4a4a;
}

.product-gallery img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
}

.product-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #666666;
}

.list-group-item {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    border-radius: 12px !important;
    margin-bottom: 0.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.list-group-item.active {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    border-color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.list-group-item:hover:not(.active) {
    background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge {
    font-weight: 600;
    padding: 0.35em 0.75em;
    border-radius: 50px;
}

.bg-secondary {
    background-color: #666666 !important;
}

.bg-primary {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%) !important;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    font-weight: 600;
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%) !important;
}

.form-select, .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.625rem 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-select:focus, .form-control:focus {
    border-color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    outline: none;
    background: #ffffff;
}

footer {
    margin-top: auto;
    background: #000000 !important;
    color: #ffffff;
}

footer h5 {
    color: white;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

footer p, footer a {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.8;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

.bg-light {
    background-color: #fafaf8 !important;
}

body {
    background-color: #fafaf8;
}

section {
    animation: fadeIn 0.6s ease-out;
}

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

.min-vh-75 {
    min-height: 75vh;
}

.curated-section {
    background: #fafaf8;
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
}

.view-all-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #000000;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-link:hover {
    color: #666666;
    border-bottom-color: #666666;
}

.product-item {
    text-align: left;
    transition: transform 0.3s ease;
}

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

.product-image-container {
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
    aspect-ratio: 1/1;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #999999;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
}

.features-section {
    padding: 80px 0;
}

.feature-icon {
    color: #000000;
    display: inline-block;
}

.feature-title {
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.filter-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.filter-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 12px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.filter-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
    color: #000000;
}

.filter-item.active {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: #000000;
}

.filter-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #666666;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-item.active .filter-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.product-item-wrapper {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateY(0);
}

.philosophy-hero {
    background: linear-gradient(135deg, #fafaf8 0%, #f5f5f3 100%);
    padding: 80px 0;
}

.philosophy-image-wrapper img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.philosophy-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.philosophy-card h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #000000;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
}

.philosophy-list {
    font-size: 1.05rem;
    line-height: 2;
    color: #444444;
    list-style: none;
    padding-left: 0;
}

.philosophy-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.philosophy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
}

.value-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-text {
    color: #666666;
    line-height: 1.7;
    font-size: 1rem;
}

.commitment-section {
    background: linear-gradient(145deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem;
}

.commitment-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #000000;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .curated-section {
        padding: 60px 0;
    }
    
    .features-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-lg {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
