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

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f0e8;
    color: #2d2d2d;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 45, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 100, 100, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(200, 200, 200, 0.04) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-section {
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(180deg, 
        rgba(245, 240, 232, 0.98) 0%, 
        rgba(240, 235, 225, 0.95) 50%,
        rgba(245, 240, 232, 0.9) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(45, 45, 45, 0.08);
    border-radius: 50%;
}

.hero-section::before {
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    bottom: -100px;
    right: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(0, -50px) rotate(0deg); }
    75% { transform: translate(-30px, -30px) rotate(-5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 4.5em;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(45, 45, 45, 0.1);
}

.brand-credentials {
    font-size: 0.9em;
    color: #5a5a5a;
    margin-bottom: 25px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.brand-credentials div {
    opacity: 0.9;
}

.tagline {
    color: #3a3a3a;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 4px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.contact-btn {
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-btn:hover::before {
    width: 400px;
    height: 400px;
}

.contact-btn span {
    position: relative;
    z-index: 1;
}

.instagram-btn {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4);
}

.call-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.call-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.category-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 20px 60px;
    font-size: 1.05em;
    font-weight: 600;
    background: white;
    border: 2px solid #d5d0c5;
    color: #2d2d2d;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 45, 45, 0.05), transparent);
    transition: left 0.6s;
}

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

.category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 45, 45, 0.15);
    border-color: #6a6a6a;
}

.category-btn.active {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    color: #f5f0e8;
    border-color: #2d2d2d;
    box-shadow: 0 10px 35px rgba(45, 45, 45, 0.25);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 45px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(45, 45, 45, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(45, 45, 45, 0.02) 0%, 
        transparent 50%, 
        rgba(100, 100, 100, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
    border-radius: 15px;
}

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

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(45, 45, 45, 0.2);
    border-color: #6a6a6a;
}

.media-container {
    width: 100%;
    height: 420px;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

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

.play-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    transform: none;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.play-button:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 28px solid #2d2d2d;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    margin-left: 6px;
}

.play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.media-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.1) 60%, 
        rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.product-info {
    padding: 35px;
    background: linear-gradient(to bottom, #fff 0%, #faf8f5 100%);
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #2d2d2d;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.product-price {
    font-size: 1.8em;
    color: #3a3a3a;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.product-description {
    color: #5a5a5a;
    font-size: 0.95em;
    margin-bottom: 28px;
    line-height: 1.8;
    font-weight: 400;
}

.inquiry-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 50%, #2d2d2d 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(45, 45, 45, 0.3);
}

.inquiry-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.inquiry-btn:hover::before {
    width: 400px;
    height: 400px;
}

.inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 45, 45, 0.5);
    background-position: 100% 50%;
}

.inquiry-btn span {
    position: relative;
    z-index: 1;
}

.category-section {
    display: none;
    animation: fadeIn 0.8s ease;
}

.category-section.active {
    display: block;
}

.why-choose-section {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(245, 240, 232, 0.8) 100%);
    border-radius: 30px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    text-align: center;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: #5a5a5a;
    font-size: 1.15em;
    margin-bottom: 60px;
    font-weight: 400;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(45, 45, 45, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2d2d2d, #5a5a5a, #2d2d2d);
    background-size: 200% 200%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    animation: shimmer 3s ease-in-out infinite;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(45, 45, 45, 0.15);
    border-color: #6a6a6a;
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 25px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

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

.feature-card:hover .feature-icon {
    animation: none;
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    color: #2d2d2d;
    margin-bottom: 18px;
    font-weight: 600;
}

.feature-description {
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 0.98em;
}

.footer {
    background: linear-gradient(135deg, #2d2d2d, #4a4a4a, #2d2d2d);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer p {
    margin: 10px 0;
    font-size: 0.98em;
    opacity: 0.95;
}

.footer-divider {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin: 25px auto;
    border-radius: 2px;
}

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

@media (max-width: 768px) {
    .logo {
        font-size: 2.8em;
    }
    
    .tagline {
        font-size: 1em;
    }

    .section-title {
        font-size: 2.3em;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .category-btn {
        padding: 16px 40px;
        font-size: 0.95em;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .product-card {
        border-radius: 12px;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }

    .media-container {
        height: 165px !important;
        flex-shrink: 0;
    }

    .product-info {
        padding: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
    }

    .product-name {
        font-size: 0.95em !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }

    .product-price {
        font-size: 1.1em !important;
        margin-bottom: 8px !important;
    }

    .product-description {
        font-size: 0.7em !important;
        margin-bottom: auto !important;
        line-height: 1.3 !important;
        flex-grow: 1 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .inquiry-btn {
        padding: 8px !important;
        font-size: 0.65em !important;
        margin-top: 8px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .play-button {
        width: 45px;
        height: 45px;
        bottom: 8px;
        right: 8px;
    }

    .play-button::after {
        border-left: 15px solid #2d2d2d;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }

    .hero-section {
        padding: 60px 20px 50px;
    }

    .products-section {
        padding: 50px 20px;
    }
}