/* ================= GLOBAL RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background:#fdf2f8;
    color:#333;
}

/* ================= LUXURY HEADER ================= */

.luxury-header{
    width:100%;
    background: linear-gradient(90deg,#ff2e7a,#ff6fa5);
    padding:15px 50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 8px 30px rgba(0,0,0,0.12);
}

/* LOGO */
.logo a{
    color:#fff;
    font-size:24px;
    font-weight:700;
    text-decoration:none;
    letter-spacing:1px;
}

/* SEARCH BAR */
.search-box{
    flex:1;
    max-width:500px;
    margin:0 50px;
    position:relative;
}

.search-box input{
    width:100%;
    padding:12px 55px 12px 20px;
    border-radius:50px;
    border:none;
    outline:none;
    font-size:14px;
}

.search-box button{
    position:absolute;
    right:5px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:#000;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    cursor:pointer;
}

/* RIGHT SIDE BUTTONS */
.header-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.header-right a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:6px;
}

/* CART BADGE */
.cart-btn{
    position:relative;
}

.cart-count{
    position:absolute;
    top:-6px;
    right:-10px;
    background:#000;
    color:#fff;
    font-size:11px;
    padding:3px 6px;
    border-radius:50%;
}

/* ================= CONTAINER ================= */

.container{
    max-width:1200px;
    margin:50px auto;
    padding:40px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* ================= SECTION TITLE ================= */

.section-title{
    font-size:28px;
    font-weight:600;
    margin-bottom:30px;
    text-align:center;
}

/* ================= PRODUCTS GRID ================= */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    text-align:center;
    padding:20px;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
}

.product-link{
    text-decoration:none;
    color:inherit;
}

.price{
    font-weight:600;
    margin:10px 0;
    font-size:16px;
}

/* ================= BUTTON ================= */

.btn-pink{
    background:#ff2e7a;
    color:#fff;
    border:none;
    padding:12px;
    border-radius:30px;
    cursor:pointer;
    width:100%;
    font-weight:600;
    transition:0.3s;
}

.btn-pink:hover{
    background:#e6005c;
}

/* ================= CART PAGE ================= */

.cart-row{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    margin-bottom:20px;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:768px){

    .luxury-header{
        flex-direction:column;
        gap:15px;
        padding:20px;
    }

    .search-box{
        width:100%;
        margin:0;
    }

    .header-right{
        gap:15px;
    }

    .container{
        margin:20px;
        padding:20px;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .product-card img{
        height:180px;
    }
}

/* Luxury Pink Buttons */
.btn-pink{
    background:#ff2e75;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}
.btn-pink:hover{
    background:#e6005c;
}

/* Table Card */
.table-card{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    margin-top:20px;
}

/* Luxury Table */
.luxury-table{
    width:100%;
    border-collapse:collapse;
}
.luxury-table th{
    background:#ffe6f0;
    padding:12px;
    text-align:left;
}
.luxury-table td{
    padding:12px;
    border-bottom:1px solid #f1f1f1;
}

/* Icon Style */
.cat-icon{
    width:50px;
    height:50px;
    object-fit:contain;
    border-radius:50%;
    background:#fff0f5;
    padding:5px;
}

/* Delete Button */
.btn-delete{
    background:#ff4d4d;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    text-decoration:none;
    font-size:13px;
}

/* Responsive */
@media(max-width:768px){
    .luxury-table thead{
        display:none;
    }
    .luxury-table tr{
        display:block;
        margin-bottom:15px;
        background:#fff;
        padding:10px;
        border-radius:10px;
        box-shadow:0 5px 15px rgba(0,0,0,0.05);
    }
    .luxury-table td{
        display:block;
        border:none;
        padding:8px 0;
    }
}
/* Form Card */
.form-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
    margin-top:20px;
    max-width:500px;
}

/* Form */
.luxury-form .form-group{
    margin-bottom:20px;
}

.luxury-form label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:#444;
}

.luxury-form input{
    width:100%;
    padding:12px;
    border-radius:12px;
    border:1px solid #ddd;
    outline:none;
    transition:0.3s;
}

.luxury-form input:focus{
    border-color:#ff2e75;
    box-shadow:0 0 10px rgba(255,46,117,0.2);
}

/* Buttons */
.btn-pink{
    background:#ff2e75;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    border:none;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    text-decoration:none;
    display:inline-block;
}

.btn-pink:hover{
    background:#e6005c;
}

.btn-light{
    margin-left:10px;
    padding:10px 20px;
    border-radius:30px;
    background:#f1f1f1;
    text-decoration:none;
    color:#333;
}

/* Mobile */
@media(max-width:768px){
    .form-card{
        max-width:100%;
        padding:20px;
    }
}
/* ================= HOME CATEGORY SECTION ================= */

.home-categories{
    width:100%;
    padding:60px 0;
    background:#fff;
}

.category-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* Single Category */
.category-item{
    width:140px;
    text-align:center;
    text-decoration:none;
    transition:0.3s ease;
}

/* Icon Circle */
.category-icon{
    width:120px;
    height:120px;
    border-radius:50%;
    overflow:hidden;
    margin:0 auto;
    background:linear-gradient(135deg,#fff,#ffe6f0);
    box-shadow:0 15px 35px rgba(255,46,122,0.15);
    transition:0.3s ease;
}

/* Image Force Fit */
.category-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Category Name */
.category-name{
    display:block;
    margin-top:15px;
    font-weight:600;
    font-size:16px;
    color:#ff2e7a;
    letter-spacing:0.5px;
    transition:0.3s;
}

/* Hover Effect */
.category-item:hover .category-icon{
    transform:translateY(-8px) scale(1.05);
    box-shadow:0 25px 45px rgba(255,46,122,0.25);
}

.category-item:hover .category-name{
    color:#e6005c;
}

/* ========== MOBILE ========== */

@media(max-width:768px){

    .category-wrapper{
        gap:30px;
    }

    .category-item{
        width:100px;
    }

    .category-icon{
        width:90px;
        height:90px;
    }

    .category-name{
        font-size:14px;
    }
}