* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f8fc;
    color: #111827;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   HEADER
========================= */

.site-header {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #e8eaf0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 1250px;
    margin: auto;
    min-height: 78px;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 800;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(135deg,#ec4899,#7c3aed);
    box-shadow: 0 8px 20px rgba(124,58,237,.2);
}

.navigation {
    display: flex;
    align-items: center;
    gap: 27px;

    font-size: 15px;
    font-weight: 600;
}

.navigation a {
    color: #374151;
    transition: .2s;
}

.navigation a:hover {
    color: #c026d3;
}

.account-btn {
    background: #111827 !important;
    color: white !important;

    padding: 11px 18px;
    border-radius: 10px;
}

.mobile-menu-btn {
    display: none;

    border: 0;
    background: #111827;
    color: white;

    padding: 10px 13px;
    border-radius: 9px;

    font-size: 20px;
}

.mobile-menu {
    display: none;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 570px;

    background:
        radial-gradient(circle at 10% 20%, #fce7f3, transparent 35%),
        radial-gradient(circle at 90% 30%, #ede9fe, transparent 35%),
        #ffffff;

    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;

    margin: auto;
    padding: 70px 25px;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;

    align-items: center;
}

.small-title {
    display: inline-block;

    color: #db2777;
    font-weight: 800;

    font-size: 13px;
    letter-spacing: 1.5px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(42px,6vw,72px);
    line-height: 1.05;

    max-width: 700px;

    margin-bottom: 22px;
}

.hero h1 span {
    background: linear-gradient(90deg,#ec4899,#7c3aed);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text p {
    max-width: 650px;

    font-size: 18px;
    color: #64748b;

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    border-radius: 12px;

    font-weight: 700;

    transition: .25s;
}

.primary-btn {
    background: #111827;
    color: white;

    box-shadow: 0 12px 25px rgba(17,24,39,.18);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(17,24,39,.25);
}

.secondary-btn {
    background: white;
    border: 1px solid #e5e7eb;
}

.secondary-btn:hover {
    background: #f9fafb;
}


/* =========================
   HERO PHOTO
========================= */

.hero-image {
    display: flex;
    justify-content: center;
}

.photo-card {
    width: 360px;

    padding: 18px;

    background: white;

    border-radius: 25px;

    box-shadow:
        0 25px 60px rgba(17,24,39,.12);

    transform: rotate(2deg);
}

.photo-placeholder {
    height: 350px;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #fce7f3,
            #ede9fe
        );

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 100px;
}

.photo-card-text {
    padding: 18px 8px 5px;

    display: flex;
    flex-direction: column;
}

.photo-card-text strong {
    font-size: 18px;
}

.photo-card-text span {
    color: #64748b;
    font-size: 14px;
}


/* =========================
   GENERAL SECTIONS
========================= */

.information,
.products-section,
.order-process,
.quality-section {
    max-width: 1250px;
    margin: auto;

    padding: 85px 25px;
}

.section-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;
}

.section-heading > span {
    color: #db2777;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: clamp(32px,5vw,48px);

    margin: 8px 0 12px;
}

.section-heading p {
    color: #64748b;
    font-size: 17px;
}


/* =========================
   INFO BOXES
========================= */

.info-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}

.info-box {
    background: white;

    padding: 28px;

    border-radius: 18px;

    border: 1px solid #edf0f5;

    box-shadow: 0 10px 30px rgba(17,24,39,.05);

    transition: .25s;
}

.info-box:hover {
    transform: translateY(-6px);
}

.info-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fce7f3;

    border-radius: 14px;

    font-size: 24px;

    margin-bottom: 18px;
}

.info-box h3 {
    margin-bottom: 8px;
}

.info-box p {
    color: #64748b;
    font-size: 14px;
}


/* =========================
   PRODUCTS
========================= */

.products-section {
    max-width: 1400px;
}

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 24px;
}

.product-card {
    background: white;

    border: 1px solid #e9edf3;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(17,24,39,.06);

    transition: .25s;
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(17,24,39,.1);
}

.product-image {
    height: 230px;

    background:
        linear-gradient(
            135deg,
            #fce7f3,
            #ede9fe
        );

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product-placeholder {
    font-size: 75px;
}

.product-content {
    padding: 24px;
}

.product-size {
    display: inline-block;

    background: #f3e8ff;
    color: #7c3aed;

    padding: 5px 10px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
}

.product-content h3 {
    font-size: 21px;
    margin: 12px 0 8px;
}

.product-content p {
    color: #64748b;

    font-size: 14px;

    min-height: 66px;
}

.product-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid #edf0f5;
}

.price {
    display: flex;
    flex-direction: column;
}

.price small {
    color: #94a3b8;
    font-size: 11px;
}

.price strong {
    font-size: 19px;
}

.order-btn {
    background: #111827;
    color: white;

    padding: 11px 15px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;
}


/* =========================
   ORDER PROCESS
========================= */

.order-process {
    max-width: 1250px;
}

.steps {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}

.step {
    position: relative;

    background: white;

    padding: 28px;

    border-radius: 18px;

    border: 1px solid #edf0f5;
}

.step-number {
    font-size: 14px;

    font-weight: 800;

    color: #db2777;

    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    color: #64748b;
    font-size: 14px;
}


/* =========================
   QUALITY
========================= */

.quality-section {
    max-width: 1250px;
}

.quality-content {
    background:
        linear-gradient(
            135deg,
            #fdf2f8,
            #f5f3ff
        );

    border-radius: 25px;

    padding: 55px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}

.quality-content h2 {
    font-size: 38px;

    line-height: 1.15;

    margin-bottom: 18px;
}

.quality-content p {
    color: #64748b;
}

.quality-options {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;
}

.quality-options div {
    background: white;

    padding: 20px;

    border-radius: 13px;

    font-weight: 700;

    box-shadow: 0 8px 20px rgba(17,24,39,.05);
}


/* =========================
   CTA
========================= */

.cta {
    text-align: center;

    padding: 100px 25px;

    background: #111827;

    color: white;
}

.cta h2 {
    font-size: clamp(30px,5vw,48px);

    margin-bottom: 10px;
}

.cta p {
    color: #cbd5e1;

    margin-bottom: 25px;
}

.cta .primary-btn {
    background: white;
    color: #111827;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #0b1120;
    color: white;
}

.footer-inner {
    max-width: 1250px;

    margin: auto;

    padding: 45px 25px;

    display: flex;

    justify-content: space-between;

    gap: 30px;
}

.footer-inner p {
    color: #94a3b8;
}

.footer-links {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;

    font-size: 14px;
}

.copyright {
    text-align: center;

    border-top: 1px solid #1e293b;

    padding: 20px;

    color: #64748b;

    font-size: 13px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 1000px) {

    .navigation {
        gap: 15px;
    }

    .info-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps {
        grid-template-columns: repeat(2,1fr);
    }

}


@media (max-width: 750px) {

    .header-inner {
        min-height: 68px;
    }

    .navigation {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        background: white;

        border-bottom: 1px solid #e5e7eb;

        padding: 10px 20px;
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu a {
        padding: 13px 10px;

        border-bottom: 1px solid #f1f5f9;

        font-weight: 600;
    }

    .hero-content {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 55px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .photo-card {
        width: 290px;
    }

    .photo-placeholder {
        height: 280px;
    }

    .quality-content {
        grid-template-columns: 1fr;

        padding: 35px 25px;
    }

}


@media (max-width: 560px) {

    .logo {
        font-size: 17px;
    }

    .logo-icon {
        width: 37px;
        height: 37px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 55px 20px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .information,
    .products-section,
    .order-process,
    .quality-section {
        padding: 60px 18px;
    }

    .info-grid,
    .products-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 220px;
    }

    .product-content p {
        min-height: auto;
    }

    .product-bottom {
        align-items: flex-end;
    }

    .quality-options {
        grid-template-columns: 1fr;
    }

    .quality-content h2 {
        font-size: 30px;
    }

    .footer-inner {
        flex-direction: column;
    }

}
/* =====================================================
   PRODUCT CARD IMAGE SLIDER
===================================================== */

.product-image {
    position: relative;
}

.product-slide-image {
    transition:
        opacity .35s ease,
        transform .45s ease;
}

.product-card:hover
.product-slide-image {
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(17,24,39,.25);

    color: white;

    opacity: 0;

    transition: .25s;

    pointer-events: none;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay span {
    background: rgba(17,24,39,.85);

    padding: 10px 15px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;
}


/* =====================================================
   PRODUCT ACTIONS
===================================================== */

.product-actions {

    display: flex;

    gap: 7px;

    flex-wrap: wrap;

    justify-content: flex-end;

}

.view-btn,
.order-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 13px;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

}

.view-btn {

    background: #f3f4f6;

    color: #111827;

    border: 1px solid #e5e7eb;

}

.view-btn:hover {

    background: #e5e7eb;

}

.order-btn {

    background: #111827;

    color: white;

}


/* =====================================================
   PRODUCT DETAILS PAGE
===================================================== */

.details-page {

    min-height: calc(100vh - 80px);

    padding: 60px 20px;

    background:

        radial-gradient(
            circle at 10% 10%,
            #fce7f3,
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 20%,
            #ede9fe,
            transparent 30%
        ),

        #f7f8fc;

}

.details-container {

    max-width: 1150px;

    margin: auto;

}

.back-btn {

    display: inline-flex;

    padding: 11px 17px;

    background: white;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    font-weight: 700;

    margin-bottom: 30px;

}

.details-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    background: white;

    padding: 30px;

    border-radius: 25px;

    box-shadow:
        0 20px 60px rgba(17,24,39,.08);

}


/* GALLERY */

.main-detail-image {

    height: 480px;

    background:
        linear-gradient(
            135deg,
            #fce7f3,
            #ede9fe
        );

    border-radius: 20px;

    overflow: hidden;

}

.main-detail-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;

}


.thumbnail-list {

    display: flex;

    gap: 12px;

    margin-top: 15px;

    overflow-x: auto;

}

.thumbnail {

    width: 80px;
    height: 70px;

    border: 2px solid transparent;

    background: #f8fafc;

    border-radius: 10px;

    padding: 3px;

    cursor: pointer;

}

.thumbnail.active {

    border-color: #c026d3;

}

.thumbnail img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 7px;

}


/* DETAILS */

.details-content {

    padding: 20px 5px;

}

.details-content h1 {

    font-size: 42px;

    line-height: 1.15;

    margin: 15px 0;

}

.detail-price {

    font-size: 32px;

    font-weight: 800;

    color: #7c3aed;

    margin-bottom: 20px;

}

.detail-price small {

    font-size: 13px;

    color: #64748b;

    font-weight: 500;

}

.detail-description {

    color: #64748b;

    font-size: 16px;

    margin-bottom: 30px;

}

.features-list {

    list-style: none;

    padding: 0;

    margin: 15px 0 30px;

}

.features-list li {

    padding: 8px 0;

    color: #334155;

}

.big-whatsapp-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 16px;

    border-radius: 12px;

    background: #16a34a;

    color: white;

    font-size: 16px;

    font-weight: 800;

    transition: .25s;

}

.big-whatsapp-btn:hover {

    transform: translateY(-2px);

    background: #15803d;

}

.whatsapp-note {

    text-align: center;

    color: #94a3b8;

    font-size: 12px;

    margin-top: 10px;

}


/* =====================================================
   DETAILS MOBILE
===================================================== */

@media(max-width: 800px) {

    .details-grid {

        grid-template-columns: 1fr;

        gap: 25px;

        padding: 18px;

    }

    .main-detail-image {

        height: 360px;

    }

    .details-content h1 {

        font-size: 32px;

    }

}


@media(max-width: 560px) {

    .product-actions {

        width: 100%;

        justify-content: stretch;

    }

    .view-btn,
    .order-btn {

        flex: 1;

    }

    .main-detail-image {

        height: 300px;

    }

}