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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVIGATION & SIMPLE BOLD LOGO ========== */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

/* SIMPLE BOLD BLACK LOGO - AS YOU WANTED */
.logo-link {
    text-decoration: none;
    font-size: 28px; /* You can adjust this size */
    font-weight: 800;
    color: #000000; /* Pure Black Color */
    font-family: 'Poppins', sans-serif; /* Simple font like your site */
    letter-spacing: 0.5px;
}

.logo-link:hover {
    color: #000000; /* Stays black on hover */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 16px;
    padding: 6px 0;
    position: relative;
}

.nav-links a:hover {
    color: #ff4d8d;
}

.nav-links a.active {
    color: #ff4d8d;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff4d8d;
    border-radius: 2px;
}

.tiktok-btn-nav {
    background-color: #000000;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.tiktok-btn-nav:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #fff5f9 0%, #fff0f5 30%, #fef4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.15;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, #ff4d8d, #ff2d7a);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 77, 141, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 77, 141, 0.4);
    background: linear-gradient(90deg, #ff2d7a, #ff4d8d);
}

.btn-secondary {
    background-color: transparent;
    color: #ff4d8d;
    border: 2px solid #ff4d8d;
}

.btn-secondary:hover {
    background-color: rgba(255, 77, 141, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 77, 141, 0.15);
}

.social-proof {
    margin-top: 30px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-proof p {
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-proof i {
    color: #ff4d8d;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-section-hero {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    border: 1px solid #f0f0f0;
}

.qr-section-hero h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-box {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.qr-item {
    flex: 1;
    text-align: center;
}

.qr-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

/* QR CODE IMAGE STYLES */
.qr-code-image {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    margin: 0 auto 10px;
    display: block;
    border: 1px solid #eee;
    object-fit: contain;
    background-color: white;
    padding: 5px;
}

.qr-link {
    font-size: 12px;
    color: #888;
    word-break: break-word;
    font-family: monospace;
}

.qr-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    ...
}

.section-subtitle {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle strong {
    color: #ff4d8d;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid #f5f5f5;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-img {
    height: 240px;
    background: linear-gradient(45deg, #f9f9f9, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

/* REAL PRODUCT IMAGE STYLES */
.real-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.img-placeholder {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb8d4;
    font-size: 40px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
    min-height: 50px;
}

.product-desc {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 42px;
}

.price-badge {
    font-size: 26px;
    font-weight: 800;
    color: #ff4d8d;
    display: inline-block;
    margin-bottom: 15px;
    background: #fff5f7;
    padding: 5px 15px;
    border-radius: 20px;
}

.tiktok-badge {
    background-color: #000;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.tiktok-badge:hover {
    background-color: #333;
}

.view-all {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.shipping-note {
    margin-top: 20px;
    color: #666;
    font-size: 15px;
}

.shipping-note i {
    color: #ff4d8d;
    margin-right: 8px;
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 100px 0;
    background-color: #fcf8fb;
    position: relative;
}

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

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.about-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.highlight {
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.highlight i {
    font-size: 36px;
    color: #ff4d8d;
    margin-bottom: 15px;
    background: white;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(255, 77, 141, 0.15);
}

.highlight h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.highlight p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h3, .legal-links h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info p, .legal-links p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

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

.contact-item i {
    font-size: 22px;
    color: #ff4d8d;
    width: 50px;
    height: 50px;
    background-color: #fff5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.contact-item a, .contact-item p {
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ff4d8d;
}

.legal-item {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eee;
}

.legal-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.legal-link:hover {
    color: #ff4d8d;
}

.legal-item p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.social-section {
    text-align: center;
    padding: 50px 0 30px;
    border-top: 1px solid #eee;
    margin-top: 50px;
}

.social-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-btn {
    width: 180px;
    padding: 14px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 16px;
}

.tiktok {
    background-color: #000;
    color: white;
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.facebook {
    background-color: #1877F2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-tag {
    color: #666;
    font-size: 15px;
}

/* ========== FOOTER (NO LOGO, SIMPLE TEXT) ========== */
footer {
    background-color: #222;
    color: #ddd;
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

/* Footer Section - No Logo */
.footer-logo {
    text-align: left;
}

.footer-logo p {
    color: #aaa;
    max-width: 300px;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-email {
    color: #ccc !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-links a:hover {
    color: #ff4d8d;
}

.footer-cta {
    text-align: right;
}

.footer-cta p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 17px;
}

.btn-small {
    padding: 12px 25px;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom a {
    color: #ff4d8d;
    text-decoration: none;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ========== MODAL STYLES ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-content h3 {
    margin: 25px 0 10px;
    color: #444;
}

.modal-content p, .modal-content ul {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.modal-content ul {
    padding-left: 20px;
}

.modal-close {
    margin-top: 25px;
    display: inline-block;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
    .hero h2 {
        font-size: 44px;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .hero-content, .hero-image {
        max-width: 100%;
    }
    .social-proof p {
        justify-content: center;
    }
    .qr-box {
        justify-content: center;
    }
    .about-highlights {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .menu-btn {
        display: block;
    }
    .hero h2 {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .section-title {
        font-size: 34px;
    }
    .qr-box {
        flex-direction: column;
        align-items: center;
    }
    .qr-item {
        width: 100%;
    }
    .social-btn {
        width: 160px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-cta {
        text-align: center;
    }
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .modal-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo-link {
        font-size: 24px; /* Smaller on mobile */
    }
    .hero {
        padding: 80px 0 60px;
    }
    .hero h2 {
        font-size: 32px;
    }
    .section-title {
        font-size: 30px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .social-btn {
        width: 140px;
        font-size: 15px;
    }
}
