:root {
    --pink: #E0115F;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --silver: #e0e0e0;
    --white: #ffffff;
    --gray-light: #f4f4f4;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

.pink-text { color: var(--pink); }

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

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

.cart-icon { font-size: 18px; cursor: pointer; }

/* Hero */
.hero {
    height: 80vh;
    background-color: var(--black);
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1558981403-c5f91cbba527?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(35px, 6vw, 70px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--silver);
}

.btn-pink {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
    transition: transform 0.3s;
}

.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(224, 17, 95, 0.3); }

/* Innovation Section */
.innovation-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.innovation-img {
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.innovation-img img {
    width: 100%;
    display: block;
}

.pink-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--pink);
    color: white;
    padding: 12px 25px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.innovation-text h2 { font-size: 32px; font-weight: 900; margin-bottom: 25px; line-height: 1.2; }
.features { list-style: none; margin-top: 30px; }
.features li { font-size: 16px; margin-bottom: 12px; font-weight: 700; border-left: 4px solid var(--pink); padding-left: 15px; }

/* Products */
.products-section { padding: 100px 0; }
.section-title { text-align: center; font-size: 32px; font-weight: 900; margin-bottom: 60px; letter-spacing: 0.05em; }

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

.product-card {
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover { transform: translateY(-10px); }

.product-img {
    aspect-ratio: 3/4;
    background: var(--gray-light);
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-info h3 { font-size: 16px; font-weight: 900; margin-bottom: 5px; }
.product-desc { font-size: 13px; color: #666; margin-bottom: 15px; }
.price { font-size: 20px; font-weight: 900; margin-bottom: 20px; }

.btn-buy {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 15px;
    border: none;
    font-weight: 900;
    font-size: 12px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: background 0.3s;
}

.btn-buy:hover { background: var(--pink); }

/* About */
.about-section {
    padding: 120px 0;
    background-color: var(--black);
    color: var(--white);
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://www.transparenttextures.com/patterns/black-linen.png');
}

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

.about-card h2 { font-size: 14px; letter-spacing: 0.3em; margin-bottom: 30px; }
.about-card p { font-size: 28px; font-style: italic; line-height: 1.4; margin-bottom: 40px; font-weight: 300; }
.signature { font-weight: 700; color: var(--pink); font-size: 16px; font-style: normal; }

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--black);
    color: #555;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer p { font-size: 13px; margin-top: 10px; }
.footer-nav a {
    color: #888;
    text-decoration: none;
    margin-left: 25px;
    font-size: 12px;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-nav a:hover { color: var(--white); }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #333;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.size-table th {
    background-color: var(--pink);
    color: white;
    padding: 12px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.size-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.size-table tr:nth-child(even) { background-color: #f9f9f9; }

.btn-size {
    display: block;
    width: 100%;
    background: #f4f4f4;
    color: #333;
    padding: 10px;
    border: 1px dashed var(--pink);
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.btn-size:hover { background: #fff; border-style: solid; color: var(--pink); }

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .products-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 50px; }
    .nav-menu { display: none; }
}
