/* ===========================
   GUZELLIK OM V3 - STYLE.CSS
   Modern Beauty Store Design
=========================== */

/* ===== ROOT ===== */
:root{
    --pink:#d88ca0;
    --dark:#5d4037;
    --bg:#fffaf8;
    --white:#ffffff;
    --gray:#777;
}

/* ===== GENERAL ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background:var(--bg);
    direction:rtl;
    color:var(--dark);
}

a{
    text-decoration:none;
    color:inherit;
}

/* ================= HEADER ================= */
.header{
    background:var(--white);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.container{
    width:90%;
    margin:auto;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    width:120px;
}

/* NAV LINKS */
.nav-links{
    list-style:none;
    display:flex;
    gap:20px;
}

.nav-links li a{
    font-weight:600;
    color:var(--dark);
    transition:.3s;
}

.nav-links li a:hover{
    color:var(--pink);
}

/* ICONS */
.icons{
    display:flex;
    align-items:center;
    gap:18px;
}

.icons a{
    font-size:22px;
    color:#6d4c41;
    transition:0.3s;
    position:relative;
}

.icons a:hover{
    color:#d88ca0;
    transform:scale(1.15);
}

/* شكل رقم السلة */
#cart-count{
    position:absolute;
    top:-8px;
    right:-10px;
    background:#ff4d6d;
    color:#fff;
    width:20px;
    height:20px;
    border-radius:50%;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ================= HERO ================= */
.hero{
    height:90vh;
    background:url("skin1.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    color:white;
	
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.4);
}

.hero-content{
    max-width:650px;
    text-align:center;

    background:rgba(255,248,242,.35);
    backdrop-filter:blur(10px);

    padding:45px;
    border-radius:30px;

    border:1px solid rgba(255,255,255,.4);

    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.hero-content h1{
    font-size:68px;
    color:#ffffff;
    font-weight:800;
    line-height:1.2;

    text-shadow:
    0 3px 8px rgba(0,0,0,.45),
    0 8px 20px rgba(0,0,0,.25);

    margin-bottom:20px;
}
.hero-content h4{
    color:#fff;
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:15px;
    text-shadow:0 2px 8px rgba(0,0,0,.35);
}

.hero-content p{
    font-size:24px;
    color:#ffffff;
    line-height:1.8;

    text-shadow:0 2px 10px rgba(0,0,0,.45);

    margin-bottom:35px;
}

/* BUTTONS */
.btn{
    display:inline-block;
    background:var(--pink);
    color:white;
    padding:12px 25px;
    border-radius:30px;
    margin-top:15px;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.btn:hover{
    transform:scale(1.05);
    background:#c76f89;
}

.btn-outline{
    display:inline-block;
    border:2px solid var(--pink);
    color:var(--pink);
    padding:12px 25px;
    border-radius:30px;
    margin-top:15px;
    margin-right:10px;
}

.btn-outline:hover{
    background:var(--pink);
    color:white;
}

/* ================= FEATURES ================= */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    padding:60px 10%;
}

.feature-box{
    background:white;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    font-size:28px;
    color:var(--pink);
    margin-bottom:10px;
}

/* ================= CATEGORIES ================= */
.categories{
    padding:60px 10%;
    text-align:center;
}

.section-title{
    font-size:28px;
    margin-bottom:30px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.category-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.category-card h3{
    padding:10px;
}

/* ================= PRODUCTS ================= */
.products-section{
    padding:60px 10%;
    text-align:center;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.product-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    padding-bottom:15px;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-card h3{
    margin:10px 0;
}

.price{
    color:var(--pink);
    font-size:20px;
    font-weight:bold;
}

/*==============================
        FOOTER PREMIUM
==============================*/

footer{

    background:#1f1f1f;

    color:#fff;

    margin-top:80px;

}

.footer-content{

    max-width:900px;

    margin:auto;

    padding:60px 20px 40px;

    text-align:center;

}

.footer-content h2{

    font-size:38px;

    margin-bottom:15px;

    color:#fff;

    letter-spacing:1px;

}

.footer-content p{

    color:#d7d7d7;

    font-size:18px;

    line-height:2;

}

.contact-info{

    margin-top:30px;

}

.contact-info p{

    margin:12px 0;

    font-size:18px;

}

.contact-info i{

    color:#d88ca0;

    margin-left:10px;

    font-size:22px;

}

.social-icons{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:35px;

}

.social-icons a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2b2b2b;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    transition:.3s;

}

.social-icons a:hover{

    background:#d88ca0;

    transform:translateY(-6px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    padding:20px;

    color:#bdbdbd;

    font-size:15px;

}

@media(max-width:768px){

.footer-content h2{

font-size:30px;

}

.footer-content p{

font-size:16px;

}

}
/* ================= RESPONSIVE ================= */
@media(max-width:768px){

.nav-links{
    display:none;
}

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:16px;
}

.btn, .btn-outline{
    display:block;
    width:100%;
    text-align:center;
    margin:10px 0;
}

}
/* ===========================
      CART V2 PREMIUM
=========================== */

.cart{
    width:90%;
    max-width:1200px;
    margin:60px auto;
}

.cart-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    background:#fff;
    border-radius:25px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.cart-item:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.cart-item img{
    width:180px;
    height:180px;
    object-fit:contain;
    background:#faf7f4;
    border-radius:20px;
    padding:15px;
}

.cart-info{
    flex:1;
}

.cart-info h3{
    font-size:30px;
    color:#5b3d2f;
    margin-bottom:12px;
}

.cart-info p{
    color:#d88ca0;
    font-size:24px;
    font-weight:bold;
}

.remove-btn{
    background:#ff5a6e;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:30px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.remove-btn:hover{
    background:#e04258;
    transform:scale(1.05);
}

/* ===========================
      TOTAL BOX
=========================== */

.cart-summary{
    margin-top:40px;
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.cart-summary h2{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:34px;
    color:#5b3d2f;
    margin-bottom:30px;
}

#total{
    color:#d88ca0;
    font-size:38px;
    font-weight:bold;
}

/* ===========================
      BUTTONS
=========================== */

.cart-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.continue,
.checkout{

    width:280px;

    text-align:center;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.continue{

    background:#f5ede3;

    color:#6d4c41;

}

.continue:hover{

    background:#eadcca;

    transform:translateY(-3px);

}

.checkout{

    background:#25D366;

    color:#fff;

}

.checkout:hover{

    background:#1faa4d;

    transform:translateY(-3px);

}

/* ===========================
      MOBILE
=========================== */

@media(max-width:768px){

.cart-item{

flex-direction:column;

text-align:center;

}

.cart-item img{

width:160px;

height:160px;

}

.cart-summary h2{

flex-direction:column;

gap:15px;

font-size:28px;

}

.continue,
.checkout{

width:100%;

}

}
/*==============================
        CONTACT PAGE V3
==============================*/

.contact-hero{
    text-align:center;
    padding:80px 20px;
    background:#faf6f2;
}

.contact-hero h1{
    font-size:52px;
    color:#5c4033;
    margin-bottom:10px;
}

.contact-hero p{
    font-size:20px;
    color:#777;
}

.contact-container{
    width:90%;
    max-width:1200px;
    margin:70px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    background:#fff;
    border-radius:18px;
    padding:25px;
    display:flex;
    gap:20px;
    align-items:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-6px);
}

.info-box i{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#f8d9df;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d88ca0;
    font-size:28px;
}

.info-box h3{
    color:#5c4033;
    margin-bottom:8px;
}

.info-box p{
    color:#777;
}

.info-box a{
    color:#d88ca0;
    font-weight:bold;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.contact-form h2{
    text-align:center;
    color:#5c4033;
    margin-bottom:30px;
    font-size:34px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    margin-bottom:18px;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.contact-form textarea{
    height:170px;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#d88ca0;
}

.contact-form button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:30px;
    background:#d88ca0;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#c87991;
}

.whatsapp-order{
    width:90%;
    max-width:1100px;
    margin:70px auto;
    background:#faf6f2;
    padding:45px;
    border-radius:20px;
    text-align:center;
}

.whatsapp-order h2{
    color:#5c4033;
    margin-bottom:15px;
    font-size:38px;
}

.whatsapp-order p{
    color:#777;
    margin-bottom:25px;
}

.whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:18px 45px;
    border-radius:40px;
    font-size:20px;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1da851;
    transform:translateY(-3px);
}

@media(max-width:900px){

.contact-container{
    grid-template-columns:1fr;
}

.contact-form{
    order:1;
}

.contact-info{
    order:2;
}

.contact-hero h1{
    font-size:38px;
}

}
/*==============================
      WhatsApp Section V3
==============================*/

.whatsapp-section{

    padding:90px 20px;
    background:#fffaf8;
}

.whatsapp-box{

    max-width:800px;
    margin:auto;
    background:#ffffff;
    padding:60px 40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.whatsapp-box i{

    font-size:65px;
    color:#25D366;
    margin-bottom:20px;
}

.whatsapp-box h2{

    font-size:38px;
    color:#5d4037;
    margin-bottom:18px;
}

.whatsapp-box p{

    color:#777;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.whatsapp-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#25D366;
    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    font-size:20px;
    font-weight:bold;

    transition:.35s;
}

.whatsapp-btn:hover{

    background:#1ea952;

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(37,211,102,.35);
}

.whatsapp-btn i{

    font-size:24px;
    color:white;
    margin:0;
}

@media(max-width:768px){

.whatsapp-box{

padding:40px 25px;

}

.whatsapp-box h2{

font-size:30px;

}

.whatsapp-box p{

font-size:16px;

}

.whatsapp-btn{

width:100%;
justify-content:center;

}

}
/* ===========================
      MOBILE MENU
=========================== */

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#5d4037;
}


/* Mobile */
@media(max-width:768px){

.nav{
    position:relative;
}


/* ظهور زر القائمة */
.menu-btn{
    display:block;
}


/* القائمة المخفية */
.nav-links{

    position:absolute;
    top:75px;
    right:0;

    width:230px;

    background:white;

    flex-direction:column;

    gap:0;

    border-radius:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

    overflow:hidden;

    display:none;

}


/* عندما تفتح القائمة */
.nav-links.active{

    display:flex;

}


.nav-links li{

    width:100%;

}


.nav-links li a{

    display:block;

    padding:18px;

    border-bottom:1px solid #eee;

}


}

/* ===============================
        SOLD OUT
================================ */

.product-image{
    position:relative;
}

.product-card.sold-out .product-image img{
    opacity:0.55;
    filter:grayscale(25%);
}

.sold-out-badge{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    background:rgba(93,64,55,0.92);
    color:white;

    padding:12px 24px;
    border-radius:10px;

    font-size:18px;
    font-weight:800;
    letter-spacing:2px;

    text-align:center;
    white-space:nowrap;

    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

.sold-out-badge small{
    display:block;
    margin-top:5px;

    font-size:11px;
    font-weight:500;
    letter-spacing:0;
}

.sold-out-btn,
.sold-out-btn:hover{
    background:#bdb5b1;
    color:white;

    cursor:not-allowed;
    transform:none;
    opacity:.8;
}
