*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#fff8f6;
    color:#342323;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.site-header{
    width:100%;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 8px 25px rgba(201,132,142,.12);
}

.site-header-inner{
    max-width:1250px;
    margin:0 auto;
    padding:16px 6%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.site-logo{
    font-size:26px;
    font-weight:900;
    color:#c46a7a!important;
    white-space:nowrap;
}

.site-logo span{
    color:#3a2a2a;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.site-nav a{
    color:#5c4444!important;
    font-weight:700;
}

.nav-btn{
    background:linear-gradient(135deg,#d9798d,#f3b7a9);
    color:white!important;
    padding:11px 18px;
    border-radius:999px;
    box-shadow:0 10px 22px rgba(217,121,141,.25);
}

.menu-toggle{
    display:none!important;
    width:auto!important;
    max-width:none!important;
    padding:10px 14px!important;
    margin:0!important;
    border:0!important;
    border-radius:14px!important;
    background:linear-gradient(135deg,#d9798d,#f3b7a9)!important;
    color:white!important;
    font-size:20px!important;
    line-height:1!important;
    cursor:pointer;
}

.shop-hero{
    max-width:1250px;
    margin:0 auto;
    padding:70px 6%;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:35px;
    align-items:center;
}

.shop-hero-text span{
    display:inline-block;
    background:#ffe2e9;
    color:#c46a7a;
    padding:9px 16px;
    border-radius:999px;
    font-weight:800;
    margin-bottom:15px;
}

.shop-hero-text h1{
    font-size:54px;
    line-height:1.05;
    color:#342323;
    margin:0 0 18px;
}

.shop-hero-text p{
    font-size:18px;
    color:#735b5b;
    line-height:1.7;
    max-width:560px;
}

.main-btn,
.btn{
    display:inline-block;
    background:linear-gradient(135deg,#d9798d,#f3b7a9);
    color:white!important;
    padding:14px 24px;
    border-radius:999px;
    font-weight:800;
    border:0;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(217,121,141,.28);
}

.btn-light{
    display:inline-block;
    background:white;
    color:#c46a7a!important;
    padding:13px 20px;
    border-radius:999px;
    font-weight:800;
    border:1px solid #ffd3dc;
}

.shop-hero-card{
    min-height:360px;
    border-radius:36px;
    background:
        linear-gradient(rgba(255,255,255,.12),rgba(255,255,255,.12)),
        url('/assets/img/cosmetic-hero.jpg');
    background-size:cover;
    background-position:center;
    box-shadow:0 25px 60px rgba(201,132,142,.20);
    border:1px solid #ffe0e7;
    display:flex;
    align-items:flex-end;
    padding:25px;
}

.shop-hero-card div{
    background:rgba(255,255,255,.9);
    padding:18px;
    border-radius:22px;
    width:100%;
}

.shop-hero-card b{
    color:#c46a7a;
    font-size:22px;
}

.shop-hero-card p{
    margin-bottom:0;
    color:#735b5b;
}

.category-area{
    max-width:1250px;
    margin:0 auto;
    padding:18px 6%;
    display:flex;
    gap:12px;
    overflow-x:auto;
}

.category-area a{
    white-space:nowrap;
    background:white;
    color:#c46a7a;
    padding:12px 18px;
    border-radius:999px;
    font-weight:800;
    border:1px solid #ffe3e9;
    box-shadow:0 8px 22px rgba(201,132,142,.08);
}

.shop-section,
.section{
    max-width:1250px;
    margin:0 auto;
    padding:45px 6%;
}

.shop-title,
.section-title{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:15px;
    margin-bottom:25px;
}

.shop-title h2,
.section-title h2{
    font-size:36px;
    margin:0;
    color:#342323;
}

.shop-title p,
.section-title span{
    margin:0;
    color:#927575;
}

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

.shop-product-card,
.product{
    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 16px 42px rgba(201,132,142,.13);
    border:1px solid #ffe5ea;
    transition:.25s;
}

.shop-product-card:hover,
.product:hover{
    transform:translateY(-5px);
}

.shop-product-img,
.product-img{
    height:250px;
    background:#fff1f4;
}

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

.shop-product-info,
.product-body{
    padding:18px;
}

.shop-product-info small,
.product small{
    color:#c46a7a;
    font-weight:800;
}

.shop-product-info h3,
.product h3{
    color:#342323;
    margin:10px 0;
    font-size:18px;
}

.shop-price,
.price{
    color:#c46a7a;
    font-size:21px;
    font-weight:900;
}

.view-btn{
    margin-top:14px;
    display:block;
    text-align:center;
    background:#fff2f5;
    color:#c46a7a;
    padding:11px;
    border-radius:14px;
    font-weight:800;
}

.form-page{
    max-width:1250px;
    margin:0 auto;
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:45px 6%;
}

.form-box{
    width:430px;
    max-width:100%;
    background:white;
    padding:35px;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(201,132,142,.18);
    border:1px solid #ffe2e8;
}

.form-box h2{
    color:#c46a7a;
    font-size:30px;
    margin-top:0;
}

input,
select,
textarea{
    width:100%;
    padding:14px;
    margin:9px 0;
    border-radius:16px;
    border:1px solid #f3d5dc;
    font-size:15px;
    background:#fff8f6;
    color:#3a2a2a;
}

button{
    width:100%;
    padding:14px;
    margin:9px 0;
    border-radius:16px;
    border:0;
    font-size:15px;
    background:linear-gradient(135deg,#d9798d,#f3b7a9);
    color:white;
    font-weight:bold;
    cursor:pointer;
}

.product-detail{
    max-width:1250px;
    margin:0 auto;
    padding:45px 6%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.product-photo img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 55px rgba(201,132,142,.16);
}

.product-info{
    background:white;
    border-radius:30px;
    padding:30px;
    border:1px solid #ffe0e7;
    box-shadow:0 20px 55px rgba(201,132,142,.12);
}

.product-info small{
    color:#c46a7a;
    font-weight:800;
}

.product-info h1{
    font-size:38px;
    color:#342323;
}

.detail-price{
    color:#c46a7a;
    font-size:30px;
    font-weight:bold;
    margin:10px 0;
}

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

.review{
    background:white;
    padding:24px;
    border-radius:24px;
    box-shadow:0 16px 40px rgba(201,132,142,.12);
    border:1px solid #ffe5ea;
}

.review b{
    color:#c46a7a;
}

.stars{
    color:#f2a0a8;
    font-size:20px;
}

.review-box{
    width:100%;
    max-width:700px;
}

.xeta{
    color:#c0392b;
}

.ugur{
    color:#2e8b57;
}

.site-footer{
    background:white;
    border-top:1px solid #ffe0e7;
    margin-top:60px;
    padding:40px 6% 20px;
    color:#6d5555;
}

.footer-grid{
    max-width:1250px;
    margin:0 auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
}

.site-footer h3,
.site-footer h4{
    color:#c46a7a;
    margin-top:0;
}

.site-footer a{
    display:block;
    color:#6d5555;
    margin:9px 0;
    font-weight:600;
}

.footer-small{
    font-size:14px;
    color:#9a7777;
}

.footer-bottom{
    max-width:1250px;
    margin:25px auto 0;
    border-top:1px solid #ffe0e7;
    padding-top:18px;
    text-align:center;
    color:#9b7b7b;
    font-size:14px;
}

@media(max-width:950px){
    .shop-hero{
        grid-template-columns:1fr;
        padding:45px 5%;
    }

    .shop-hero-text h1{
        font-size:38px;
    }

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

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

    .product-detail{
        grid-template-columns:1fr;
    }

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

@media(max-width:768px){
    .site-header-inner{
        padding:14px 5%;
    }

    .menu-toggle{
        display:block!important;
    }

    .site-nav{
        position:absolute;
        top:68px;
        left:5%;
        right:5%;
        background:white;
        border:1px solid #ffe0e7;
        border-radius:22px;
        box-shadow:0 20px 50px rgba(201,132,142,.22);
        padding:16px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
    }

    .site-nav.active{
        display:flex;
    }

    .site-nav a{
        background:#fff8f6;
        padding:13px;
        border-radius:14px;
        text-align:center;
    }

    .nav-btn{
        border-radius:14px;
    }

    .shop-title,
    .section-title{
        display:block;
    }

    .shop-hero-card{
        min-height:260px;
    }
}

@media(max-width:600px){
    .site-logo{
        font-size:22px;
    }

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

    .shop-products,
    .products{
        grid-template-columns:1fr;
    }

    .shop-title h2,
    .section-title h2{
        font-size:29px;
    }

    .form-box{
        padding:25px;
    }
}
.copy-card-row{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.copy-card-row p{
    flex:1;
}

.copy-btn{
    width:auto!important;
    padding:10px 16px!important;
    margin:0!important;
    border-radius:999px!important;
    background:linear-gradient(135deg,#d9798d,#f3b7a9)!important;
    color:white!important;
    font-weight:800!important;
}
.new-collection-card{
    background:#fff8f6!important;
}

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

.new-product-mini{
    background:white;
    border:1px solid #ffe0e7;
    border-radius:18px;
    padding:10px;
    box-shadow:0 10px 25px rgba(201,132,142,.10);
}

.new-product-mini img{
    width:100%;
    height:95px;
    object-fit:cover;
    border-radius:14px;
    background:#fff1f4;
}

.new-product-mini span{
    display:block;
    margin-top:8px;
    color:#c46a7a;
    font-size:13px;
    font-weight:800;
}

.new-product-mini small{
    display:block;
    margin-top:5px;
    color:#342323;
    font-weight:900;
}

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

    .new-product-mini img{
        height:80px;
    }
}