
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Manrope', sans-serif;
    color: #1A1A1A;
    line-height: 1.7;
    background: #FAFAFA;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #2D2D2D;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(107, 39, 55, 0.5);
    border-radius: 3px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 39, 55, 0.7);
}
/* Modern animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Modern buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.btn-primary {
    background-color: #5A1E2D;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #6B2737;
    box-shadow: 0 8px 20px rgba(107, 39, 55, 0.2);
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #1A1A1A;
    border: 1px solid rgba(26, 26, 26, 0.15);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgba(26, 26, 26, 0.02);
    border-color: rgba(26, 26, 26, 0.3);
    color: #6B2737;
}
/* Spacing system */
section {
    padding: 8rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Product cards */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeIn 0.6s ease-out forwards;
    border: 1px solid rgba(0,0,0,0.03);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.product-card img {
    transition: transform 0.5s ease;
}

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

/* Hero section */
.hero {
    padding: 10rem 0 12rem;
    background: linear-gradient(135deg, #5A1E2D 0%, #3D1520 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('http://static.photos/black/1200x630/42') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}
.hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Section titles */
.section-title {
    font-size: 2.75rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.04em;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #6B2737, transparent);
    border-radius: 3px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: serif;
    color: rgba(107, 39, 55, 0.1);
    line-height: 1;
}

/* Animations on scroll */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate].animate {
    opacity: 1;
    transform: none;
}

/* New animations */
@keyframes textReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.float-animate {
    animation: float 6s ease-in-out infinite;
}
/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}