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

body {
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    background: #fff;
    color: #222;
}

a {
    color: #222;
    font-weight: 800;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    background: #fff;
    border: none;
}

.logo-section {
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #dcdcdc;
}

.logo-section img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
}

.label,
.product-name,
.product-number,
.contact h2 {
    font-family: 'Space Grotesk', 'Manrope', Arial, Helvetica, sans-serif;
}

/* HERO SECTION */
.hero {
    padding: 60px 8%;
    min-height: 350px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dcdcdc;
}

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

.label {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-name {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px;
}

.product-number {
    font-size: 48px;
    font-weight: 600;
}

/* PRODUCT GRID */
.gallery-section {
    padding: 60px 8%;
    border-bottom: 1px solid #dcdcdc;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.image-card {
    border: 1px solid #dcdcdc;
    background: #fff;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* CONTACT */
.contact {
    font-family: 'Space Grotesk', 'Manrope', Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 60px 20px;
}

.contact h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact p {
    font-size: 36px;
    font-weight: 500;
}

.footer-watermark {
    text-align: center;
    padding: 20px 8%;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #dcdcdc;
    letter-spacing: 0.04em;
}

.whatsapp-chat-button {
    position: fixed;
    right: 25px;
    bottom: 45px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.whatsapp-chat-button svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* RESPONSIVE */
/* MAIN PAGE STYLES */
.main-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-header {
    padding: 60px 8% 40px;
    border-bottom: 1px solid #dcdcdc;
}

.brand-label {
    font-family: 'Space Grotesk', 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #555;
    margin-bottom: 12px;
}

.page-header h1 {
    font-family: 'Space Grotesk', 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 42px;
    margin-bottom: 12px;
    color: #222;
}

.page-header p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 680px;
    color: #555;
}

.product-overview {
    padding: 48px 8% 60px;
    flex: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    border: 1px solid #dcdcdc;
    border-radius: 18px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card-top h2 {
    font-family: 'Space Grotesk', 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 24px;
    margin-top: 8px;
    color: #222;
}

.product-badge {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: #404040;
    background: #f2f2f2;
    padding: 6px 10px;
    border-radius: 999px;
}

.product-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.card-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.view-link,
.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #222;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
}

.view-link:hover,
.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    background: #f7f7f7;
}

.copy-btn {
    border-color: #404040;
}

@media(max-width:768px) {

    .logo-section {
        justify-content: center;
    }

    .logo-section img,
    .logo-section svg {
        width: 180px;
    }

    .hero {
        padding: 40px 20px;
        min-height: auto;
    }

    .label {
        font-size: 16px;
    }

    .product-name {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .product-number {
        font-size: 30px;
    }

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

    .contact h2 {
        font-size: 32px;
    }

    .contact p {
        font-size: 24px;
    }
}

@media(max-width:480px) {

    .product-name {
        font-size: 28px;
    }

    .product-number {
        font-size: 24px;
    }

    .page-header {
        padding: 40px 20px 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .product-overview {
        padding: 32px 20px 40px;
    }

    .contact h2 {
        font-size: 26px;
    }

    .contact p {
        font-size: 20px;
    }
}