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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #fff9fb;
    color: #30232b;
}

/* Header */

header {
    height: 75px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #b34d75;
}

nav {
    display: flex;
    gap: 35px;
}

nav a,
.footer-links a {
    text-decoration: none;
    color: #493842;
    font-size: 14px;
}

nav a:hover,
.footer-links a:hover {
    color: #b34d75;
}

.cart {
    background: #fff0f5;
    padding: 11px 18px;
    border-radius: 25px;
    font-size: 14px;
}

/* Hero */

.hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    background: linear-gradient(120deg, #fff4f7, #f9e9f1);
}

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

.small-title {
    color: #b34d75;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #b34d75;
}

.hero p {
    color: #765f6a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn,
.offer-btn {
    display: inline-block;
    text-decoration: none;
    background: #b34d75;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 13px;
}

.btn:hover,
.offer-btn:hover {
    background: #8e3659;
}

/* Hero Graphic */

.hero-box {
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: #efd2df;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 110px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.floating {
    position: absolute;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.f1 {
    top: 25px;
    left: 60px;
}

.f2 {
    bottom: 50px;
    right: 20px;
}

.f3 {
    top: 80px;
    right: 15px;
}

/* Categories */

.categories {
    text-align: center;
    padding: 80px 8%;
    background: white;
}

.categories h2,
.products h2,
.about h2 {
    font-size: 34px;
    margin-bottom: 45px;
}

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

.category {
    padding: 30px 20px;
    border: 1px solid #f0dce4;
    border-radius: 15px;
    transition: 0.3s;
}

.category:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(150, 70, 100, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #fff0f5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.category h3 {
    margin-bottom: 10px;
}

.category p {
    color: #88727d;
    font-size: 14px;
}

/* Products */

.products {
    padding: 80px 8%;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-heading p,
.about > p {
    color: #b34d75;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0;
}

.search {
    background: white;
    padding: 15px 25px;
    border: 1px solid #eadce2;
    border-radius: 30px;
    color: #9a858f;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    border: 1px solid #eee4e8;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(100, 50, 70, 0.1);
}

.product-image {
    height: 230px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    margin-bottom: 20px;
}

.pink {
    background: #ffe5ee;
}

.purple {
    background: #eee4ff;
}

.peach {
    background: #ffe9d9;
}

.rose {
    background: #f9dce4;
}

.tag {
    background: #fff0f5;
    color: #b34d75;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
}

.product-card h3 {
    margin: 15px 0 8px;
}

.product-card p {
    color: #8a747e;
    font-size: 13px;
    margin-bottom: 15px;
}

.price {
    color: #b34d75;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-card button {
    width: 100%;
    border: none;
    background: #30232b;
    color: white;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.product-card button:hover {
    background: #b34d75;
}

/* Offer */

.offer {
    margin: 40px 8% 80px;
    padding: 60px 8%;
    border-radius: 25px;
    background: #f3dce6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-small {
    color: #b34d75;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 15px;
}

.offer h2 {
    font-size: 45px;
    margin-bottom: 15px;
}

.offer p {
    margin-bottom: 25px;
}

.offer-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    color: #b34d75;
}

.offer-circle small {
    font-size: 20px;
}

/* About */

.about {
    text-align: center;
    background: white;
    padding: 80px 8%;
}

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

.features div {
    padding: 25px;
}

.features span {
    font-size: 35px;
}

.features h3 {
    margin: 15px 0 10px;
}

.features p {
    color: #87727d;
    font-size: 14px;
}

/* Footer */

footer {
    background: #30232b;
    color: white;
    text-align: center;
    padding: 55px 8%;
}

.footer-logo {
    color: #f3a6c3;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

footer p {
    color: #cdbec5;
    font-size: 14px;
}

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

.footer-links a {
    color: #e5d9df;
}

footer hr {
    border: 0;
    border-top: 1px solid #51424a;
    margin: 25px 0;
}

.copyright {
    font-size: 12px;
}

/* Responsive */

@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

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

    .hero-box {
        width: 300px;
        height: 300px;
    }

    .circle {
        width: 190px;
        height: 190px;
        font-size: 80px;
    }

    .category-container,
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

    nav {
        display: none;
    }
}

@media (max-width: 600px) {

    header {
        padding: 0 5%;
    }

    .hero {
        padding: 50px 5%;
    }

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

    .category-container,
    .product-container {
        grid-template-columns: 1fr;
    }

    .section-heading {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .offer {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .offer h2 {
        font-size: 35px;
    }

    .offer-circle {
        width: 150px;
        height: 150px;
    }
}
