@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary: #222222;
    --secondary: #e5b9b6;
    /* Soft pink accent */
    --accent-red: #cc2128;
    /* Suwen-like red for discounts */
    --bg-white: #ffffff;
    --bg-gray: #f9f9f9;
    --text-muted: #777777;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: var(--bg-white);
    padding: 15px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-logo img {
    height: 40px;
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.nav-icons a, .mobile-menu-btn {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
}

/* Full Screen Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header i {
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #111;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

/* Staggered animation for links */
.mobile-menu.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-menu-links a:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu-links a:hover {
    color: #e5b9b6;
    letter-spacing: 2px;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu-footer .social-links {
    display: flex;
    gap: 30px;
    font-size: 1.5rem;
}

.mobile-menu-footer .social-links a {
    color: #555;
    transition: 0.3s;
}

.mobile-menu-footer .social-links a:hover {
    color: #111;
}

/* Responsive fixes */
@media (max-width: 992px) {
    .nav-links, .desktop-only {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar {
        padding: 15px 25px;
    }

    .nav-logo img {
        height: 35px;
    }
}

.nav-icons i {
    cursor: pointer;
    transition: var(--transition);
}

.nav-icons i:hover {
    color: var(--accent-red);
}

/* Hero & Full-Width Sections */
.full-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.section-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.full-section:hover .section-bg {
    transform: scale(1.05);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    text-align: left;
    padding: 20px 100px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-outline {
    padding: 12px 35px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* Grid Sections */
.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
}

.grid-item {
    position: relative;
    height: 600px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-item:hover img {
    transform: scale(1.08);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.grid-item:hover .grid-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.grid-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.grid-btn {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid white;
    padding: 8px 25px;
    border-radius: 50px;
    transition: var(--transition);
}

.grid-item:hover .grid-btn {
    background: white;
    color: black;
}

/* Discount Banner */
.discount-banner {
    background-color: #fce4e4;
    /* Light pink */
    padding: 80px 20px;
    text-align: center;
}

.discount-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.5rem;
    border: 1px dashed var(--accent-red);
}

.discount-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-red);
    font-style: italic;
    margin-bottom: 20px;
}

/* App Section */
.app-section {
    background-color: #f9e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    gap: 40px;
}

.app-content {
    max-width: 500px;
}

.app-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #444;
}

.app-stores {
    display: flex;
    gap: 15px;
}

.app-stores img {
    height: 40px;
}

/* Product Showcase (Suwen/Penti Style) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f9f9f9;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-info {
    text-align: center;
}

.product-cat {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-red);
}

/* WhatsApp Floating */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Footer */
footer {
    padding: 80px 60px;
    background: white;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
}

/* Video Section (re-styled) */
.video-section {
    height: 70vh;
}

.video-section .section-overlay {
    align-items: flex-end;
    text-align: right;
    padding: 20px 100px;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.video-wrapper {
    width: 100%;
    height: 100%;
}

/* Contact Page Styles */
.contact-container {
    margin: 120px auto 80px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 30px;
}

.contact-info-section p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-top: 5px;
}

.contact-detail-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-detail-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-section {
    background: #fdf8f8;
    padding: 50px;
    border-radius: 4px;
}

.contact-form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--accent-red);
}

.map-section {
    width: 100%;
    height: 450px;
    background: #eee;
    margin-top: 80px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-section {
        padding: 30px;
    }
}