/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffe6f2, #ffcce6);
    color: #333;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ff4da6;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover {
    opacity: 0.8;
}

/* ===== BUTTONS ===== */
.btn {
    background: #ff3399;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #cc0066;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* ===== GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.slide-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    opacity: 0.6;
}

.slider-dot.active {
    opacity: 1;
}

/* WHY US SECTION */
.why-us {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    padding: 30px;
    border-radius: 20px;
    background: #ffe6f2;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff3399;
}

@media(max-width:992px){
    .why-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:600px){
    .why-grid { grid-template-columns: 1fr; }
}

.brand-stats{
    display:flex;
    gap:60px;
    margin-top:40px;
}

.brand-stats h3{
    font-size:28px;
    color:#ff3399;
    margin-bottom:5px;
}
 
.brand-stats span{
    font-size:14px;
    color:#777;
}

.brand-right{
    display:grid;
    gap:25px;
}

.feature-card{
    display:flex;
    gap:20px;
    padding:30px;
    background:white;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.06);
    transition:0.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 80px rgba(0,0,0,0.1);
}

.feature-card i{
    font-size:28px;
    color:#ff3399;
    min-width:40px;
    margin-top:5px;
}

.feature-card h4{
    margin-bottom:8px;
    font-size:18px;
}

.feature-card p{
    color:#777;
    font-size:14px;
    line-height:1.6;
}

@media(max-width:992px){
    .brand-wrapper{
        grid-template-columns:1fr;
        gap:60px;
    }
    .brand-stats{
        justify-content:space-between;
    }
}

/* TOP BAR */
.top-bar{
    background:#111;
    color:#fff;
    font-size:13px;
    padding:8px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-bar span{
    margin-right:20px;
}

.top-bar i{
    margin-right:6px;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    transition:0.3s;
}

.top-right a:hover{
    color:#ff3399;
}

/* MAIN HEADER */
.main-header{
    position:sticky;
    top:0;
    background:#fff;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.navbar{
    margin:auto;
    padding:20px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo a{
    font-size:24px;
    font-weight:600;
    text-decoration:none;
    color:#111;
    letter-spacing:1px;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

.nav-links a::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    bottom:-6px;
    left:0;
    background:#ff3399;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-icons{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav-icons a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-icons i{
    font-size:18px;
}

.nav-icons a:hover{
    color:#ff3399;
}

.register-btn{
    background:#ff3399;
    color:white;
    padding:8px 18px;
    border-radius:20px;
}

.register-btn:hover{
    background:#cc0066;
}

.logout-link{
    font-size:14px;
    color:#888;
}

/* RESPONSIVE */
@media(max-width:992px){
    .nav-links{
        display:none;
    }
}

/* FOOTER */
.footer{
    background:#111;
    color:#ddd;
    padding-top:100px;
    margin-top:100px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px;
    padding:0 40px 60px;
}

.footer-col h3{
    font-size:22px;
    margin-bottom:20px;
    color:white;
}

.footer-col h4{
    margin-bottom:20px;
    color:white;
}

.footer-col p{
    font-size:14px;
    line-height:1.7;
    color:#aaa;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
    font-size:14px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#aaa;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#ff3399;
}

.footer-socials{
    margin-top:20px;
}

.footer-socials a{
    color:#aaa;
    margin-right:15px;
    font-size:16px;
    transition:0.3s;
}

.footer-socials a:hover{
    color:#ff3399;
}

/* NEWSLETTER */
.newsletter-form{
    display:flex;
    margin-top:15px;
}

.newsletter-form input{
    flex:1;
    padding:10px;
    border:none;
    border-radius:4px 0 0 4px;
    outline:none;
}

.newsletter-form button{
    background:#ff3399;
    border:none;
    padding:0 15px;
    color:white;
    cursor:pointer;
    border-radius:0 4px 4px 0;
    transition:0.3s;
}

.newsletter-form button:hover{
    background:#cc0066;
}

.newsletter-message{
    margin-top:10px;
    font-size:14px;
    opacity:0;
    transition:0.3s;
}

/* FOOTER BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:25px;
    font-size:13px;
    color:#777;
}

/* RESPONSIVE */
@media(max-width:992px){
    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
    }
}

/* COOKIE BANNER */
.cookie-banner{
    position:fixed;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:900px;
    background:#111;
    color:white;
    padding:25px 30px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.3);
    display:none;
    z-index:9999;
    animation:fadeUp 0.5s ease;
}

.cookie-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cookie-text h4{
    margin-bottom:8px;
}

.cookie-text p{
    font-size:14px;
    color:#ccc;
}

.cookie-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.cookie-btn{
    padding:8px 18px;
    border-radius:25px;
    border:none;
    cursor:pointer;
    font-size:13px;
    transition:0.3s;
}

.cookie-btn.primary{
    background:#ff3399;
    color:white;
}

.cookie-btn.primary:hover{
    background:#cc0066;
}

.cookie-btn.secondary{
    background:#333;
    color:white;
}

.cookie-btn.secondary:hover{
    background:#444;
}

.cookie-btn.link{
    background:none;
    color:#aaa;
}

.cookie-btn.link:hover{
    color:white;
}

/* COOKIE MODAL */
.cookie-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:10000;
}

.cookie-modal-content{
    background:white;
    width:90%;
    max-width:600px;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 80px rgba(0,0,0,0.3);
    animation:fadeUp 0.4s ease;
}

.cookie-modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.cookie-modal-header span{
    cursor:pointer;
    font-size:22px;
}

.cookie-option{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    padding-bottom:15px;
    border-bottom:1px solid #eee;
}

.cookie-option h4{
    margin-bottom:5px;
}

.cookie-option p{
    font-size:13px;
    color:#666;
}

.cookie-btn.full{
    width:100%;
    margin-top:20px;
}

/* ANIMATION */
@keyframes fadeUp{
    from{opacity:0; transform:translateY(20px);}
    to{opacity:1; transform:translateY(0);}
}

@media(max-width:768px){
    .cookie-content{
        flex-direction:column;
        align-items:flex-start;
    }
}