/* Root Variables */
:root {
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-light: #F8F8F8;
    --color-gray-medium: #CCCCCC;
    --color-gray-dark: #666666;
    --color-beige: #F5F3F0;
    --color-accent: #8B7355;
    
    --font-family: 'Inter', sans-serif;
    --letter-spacing-tight: -0.02em;
    --letter-spacing-wide: 0.1em;
    
    --border-radius: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right {
    justify-content: flex-end;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-black);
    text-align: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-black);
    grid-column: 3;
    justify-self: end;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-black);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-link {
    text-decoration: none;
    color: var(--color-black);
    font-size: 2rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

/* Hero Split Screen Section */
.hero-split {
    width: 100%;
    height: 100vh;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-half {
    flex: 1;
    height: 100vh;
    cursor: pointer;
    transition: transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

.hero-half:hover {
    transform: scale(1.02);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

/* Main Content */
.main-content {
    position: relative;
    background: var(--color-white);
    min-height: 100vh;
    z-index: 10;
    margin-top: 100vh;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

/* Hero spacer removed - no longer needed */

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
    background: var(--color-white);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.1;
    color: var(--color-black);
}

/* About Section */
.about-section {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, 
        rgba(139, 115, 85, 0.1) 0%, 
        rgba(255, 182, 193, 0.2) 25%, 
        rgba(221, 160, 221, 0.2) 50%, 
        rgba(255, 218, 185, 0.2) 75%, 
        rgba(139, 115, 85, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 75%, 
        transparent 100%);
    pointer-events: none;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.product-feature {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.product-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 115, 85, 0.6) 20%, 
        rgba(255, 215, 0, 0.6) 50%, 
        rgba(139, 115, 85, 0.6) 80%, 
        transparent 100%);
}

.product-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-content.reverse {
    direction: rtl;
}

.product-content.reverse * {
    direction: ltr;
}

.product-info {
    padding: 2rem;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(139, 115, 85, 0.9) 0%, 
        rgba(255, 215, 0, 0.8) 100%);
    color: var(--color-white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1rem;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.product-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-pricing {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.price-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.price-size {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray-dark);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-black);
}

.product-button {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(139, 115, 85, 0.9) 100%);
    color: var(--color-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.product-button:hover::before {
    left: 100%;
}

.product-button:hover {
    background: linear-gradient(135deg, 
        rgba(139, 115, 85, 0.9) 0%, 
        rgba(255, 215, 0, 0.8) 100%);
    transform: translateX(5px) translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.product-visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.product-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.product-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(139, 115, 85, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 20px;
}

.product-feature:hover .product-visual::after {
    opacity: 1;
}

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

/* Story Section */
.story-section {
    background: var(--color-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-gray-light);
    border-radius: var(--border-radius);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--color-gray-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-rating {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    margin-top: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 1.2rem;
}

.avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-image {
    transform: scale(1.1);
    border: 2px solid rgba(139, 115, 85, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    flex: 1;
}

.testimonial-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.3) 0%, 
        rgba(221, 160, 221, 0.3) 25%, 
        rgba(255, 218, 185, 0.3) 50%, 
        rgba(255, 215, 0, 0.2) 75%, 
        rgba(255, 182, 193, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        transparent 100%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        transparent 100%);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-black);
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section {
    background: var(--color-beige);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    margin: 2rem 0 3rem;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-accent);
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--color-gray-medium);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gray-medium);
}

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

.footer-social a {
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-gray-medium);
    font-size: 0.9rem;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-product { animation-delay: 0.6s; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-product-image {
        width: 300px;
        height: 400px;
    }
    
    .product-details {
        right: -80px;
        min-width: 200px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-container {
        grid-template-columns: 1fr auto;
    }
    
    .hero-split {
        flex-direction: column;
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-half {
        flex: 1;
        height: 30vh;
        min-height: 200px;
        width: 100%;
    }
    
    .hero-half:hover {
        transform: scale(1.01);
    }
    
    .main-content {
        margin-top: 60vh;
    }
    
    .about-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-content.reverse {
        direction: ltr;
    }
    
    .product-feature {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .product-info {
        padding: 1rem 0;
        order: 2;
    }
    
    .product-visual {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .product-visual img {
        height: 400px;
        border-radius: 15px;
    }
    
    .product-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .product-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .product-actions {
        gap: 1.5rem;
    }
    
    .product-pricing {
        justify-content: center;
        gap: 1rem;
    }
    
    .price-option {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }
    
    .product-button {
        justify-content: center;
        padding: 1rem 1.5rem;
        width: 100%;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-feature {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .product-visual img {
        height: 300px;
    }
    
    .product-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .product-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .product-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .products-showcase {
        gap: 3rem;
    }
    
}