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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

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

/* Colors */
:root {
    --pink-light: #fff0f5;
    --pink-medium: #ffb6c1;
    --pink-dark: #ff69b4;
    --pink-accent: #ff1493;
    --white: #ffffff;
    --black: #212121;
    --gray: #666;
    --gray-light: #f5f5f5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-accent));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

.btn-product {
    background: var(--pink-light);
    color: var(--pink-accent);
    padding: 10px 24px;
    font-size: 14px;
    width: 100%;
}

.btn-product:hover {
    background: var(--pink-dark);
    color: white;
}

.btn-promo {
    background: white;
    color: var(--pink-accent);
    border: 2px solid var(--pink-accent);
    padding: 12px 28px;
}

.btn-promo:hover {
    background: var(--pink-accent);
    color: white;
}

.btn-submit {
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-accent));
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-medium), var(--pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.logo-tag {
    font-size: 10px;
    color: var(--pink-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(
        135deg,
        var(--pink-light) 0%,
        #fff 50%,
        var(--pink-light) 100%
    );
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--pink-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--pink-accent);
}

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-accent));
    padding: 20px 0;
}

.promo-codes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.promo-code .code {
    background: white;
    color: var(--pink-accent);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.promo-code .discount {
    font-weight: 500;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 18px;
}

.category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--pink-light);
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pink-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    height: 40px;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-old {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 14px;
}

.price-new {
    color: var(--pink-accent);
    font-size: 20px;
    font-weight: 700;
}

/* Promos Section */
.promos-section {
    background: var(--pink-light);
    padding: 80px 0;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-card.featured {
    border: 3px solid var(--pink-accent);
    transform: scale(1.05);
}

.promo-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.promo-card-badge {
    display: inline-block;
    background: var(--pink-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.promo-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.promo-card-price {
    margin-bottom: 15px;
}

.promo-card-price .old {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.promo-card-price .new {
    color: var(--pink-accent);
    font-size: 32px;
    font-weight: 700;
}

.promo-card-code {
    background: var(--pink-light);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.promo-card-code strong {
    color: var(--pink-accent);
}

/* Signup Section */
.signup-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-accent));
}

.signup-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.signup-content {
    color: white;
}

.signup-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.signup-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.signup-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.signup-benefits {
    list-style: none;
}

.signup-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.signup-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: white;
    font-weight: 700;
}

.signup-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.signup-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--pink-medium);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--pink-accent);
}

.checkbox-group label {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 15px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
}

.success-message h3 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--gray);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 14px;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-text {
    font-size: 32px;
    background: linear-gradient(135deg, var(--pink-medium), var(--pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-since {
    color: var(--pink-medium);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Legal Pages */
.legal-section {
    padding: 60px 0 80px;
    min-height: calc(100vh - 300px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--pink-medium), var(--pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content .last-update {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--pink-light);
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-top: 35px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid var(--pink-dark);
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.legal-content ul li {
    color: var(--gray);
    line-height: 1.8;
    padding: 8px 0 8px 25px;
    position: relative;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--pink-dark);
    border-radius: 50%;
}

.legal-content a {
    color: var(--pink-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--pink-accent);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--black);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .promo-card.featured {
        transform: scale(1);
    }
}

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

    .hero h1 {
        font-size: 32px;
    }

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

    .promo-codes {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .promo-cards {
        grid-template-columns: 1fr;
    }

    .signup-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signup-content {
        text-align: center;
    }

    .signup-content h2 {
        font-size: 28px;
    }

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

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .signup-form-container {
        padding: 25px;
    }
}
