:root {
    --pink: #ff6fa5;
    --blue: #8ecae6;
    --yellow: #ffd166;
    --dark: #333;
    --light: #fdfdfd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--light);
}


/* TOP BAR */
.top-bar {
    background: var(--pink);
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-weight: 600;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.top-track {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 60px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--pink);
    order: 3;
    white-space: nowrap;
}

.logo .four {
    color: var(--yellow);
}

.logo .kids {
    color: var(--blue);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    order: 2;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--pink);
}

.cart {
    order: 1;
    position: relative;
    font-size: 20px;
    cursor: pointer;
}

.cart span {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--pink);
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* BANNER */
.banner {
    margin-top: 140px;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(142, 202, 230, 0.4);
}

.banner-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 400px;
    z-index: 2;
}

.banner-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.banner-btn {
    background: white;
    color: var(--pink);
    border: none;
    margin-right: -30px;
    margin-top: 200px;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* SECTION */
.section {
    padding: 80px 60px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: var(--pink);
}

/* CARDS */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: .4s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.btn {
    display: inline-block;
    /* مهم عشان a تاخد نفس شكل الزر */
    background: var(--pink);
    color: white;
    margin-top: 15px;
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    /* يشيل الخط تحت اللينك */
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: var(--blue);
}




.social-icons {
    margin: 20px 0;
}

.social-icons a {
    color: white;
    font-size: 22px;
    margin: 0 12px;
    transition: .3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--yellow);
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 80px;
    left: 25px;
    background: #25d366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: .3s;
    animation: bounceWhatsapp 2s infinite;
}

@keyframes bounceWhatsapp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links a:not(.cart) {
        display: none;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .banner {
        height: 260px;
    }

    .banner img {
        height: 260px;
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card img {
        height: 180px;
    }

    .section {
        padding: 60px 20px;
    }

    .top-bar {
        font-size: 14px;
    }
}




.hero-welcome {
    margin-top: 105px;
    padding: 50px 20px 40px;
    text-align: center;
    background: #fff;
    margin-bottom: -80px;
}

.hero-welcome h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* ألوان أهدى شوية */
.pretty {
    color: #e88ab4;
    /* بينك هادي */
}

.four {
    color: #e6c36a;
    /* أصفر دافئ */
}

.kids {
    color: #9fc5da;
    /* لبني ناعم */
}

.divider {
    width: 60px;
    height: 2px;
    background: #ddd;
    margin: 15px auto 20px;
}

.hero-sub {
    font-size: 17px;
    color: #777;
    font-weight: 400;
}

/* Responsive */
@media(max-width:768px) {
    .hero-welcome h1 {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 14px;
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
    padding: 80px 40px;
    background: #fafafa;
}

.feature-box i {
    font-size: 28px;
    color: #e88ab4;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-box p {
    color: #777;
    font-size: 14px;
}


.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e88ab4;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

.card {
    position: relative;
}

.reviews {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.review-box {
    max-width: 500px;
    margin: 20px auto;
    color: #777;
    font-style: italic;
}

.brand-quote {
    padding: 100px 20px;
    text-align: center;
    background: #fdf7fb;
}

.brand-quote h2 {
    font-weight: 600;
    color: #555;
}



.footer {
    background: linear-gradient(45deg, var(--pink), var(--blue));
    color: white;
    padding: 50px;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: black;
}

.footer-text {
    color: black;
    margin-top: 15px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #e88ab4;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #e88ab4;
}

.footer-links a:hover::after {
    width: 100%;
}


.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    color: black;
}

/* ================= BOYS SECTION STYLE ================= */

.boys-section {
    background: #f0f8ff;
    /* لبني فاتح جداً */
}

.boys-title {
    color: #8ecae6;
    /* لبني بودر */
}

.boys-card {
    border: 2px solid #8ecae6;
    transition: 0.4s;
}

.boys-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(142, 202, 230, 0.3);
}

.boys-btn {
    background: #8ecae6;
    /* لبني بودر */
    color: white;
}

.boys-btn:hover {
    background: #ff6fa5;
    /* بينك عند الهوفر */
}



/* ================= GIRLS SECTION STYLE ================= */

.girls-section {
    background: #fff0f6;
    /* بينك فاتح جداً */
}

.girls-title {
    color: #ff6fa5;
    /* بينك أساسي */
}

.girls-card {
    border: 2px solid #ffd6e7;
    transition: 0.4s;
}

.girls-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 111, 165, 0.3);
}

.girls-btn {
    background: #ff6fa5;
    /* بينك */
    color: white;
}

.girls-btn:hover {
    background: #8ecae6;
    /* لبني عند الهوفر */
}


.products-page {
    padding: 80px 60px;
}

.products-page h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    border-radius: 15px;
}

.buy-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #e88ab4;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #d96b9c;
}


.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 60px;
}

.product-gallery .main-image {
    width: 100%;
    border-radius: 20px;
}

.thumbnails {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.thumbnails img {
    width: 80px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.thumbnails img:hover {
    opacity: 1;
}

.product-info select,
.product-info input {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background: #e88ab4;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart:hover {
    background: #d96b9c;
}


/* Responsive */
@media(max-width: 992px) {
    .product-details {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

    .thumbnails img {
        width: 60px;
    }

    .product-info h2 {
        font-size: 24px;
    }

    .product-info .price {
        font-size: 20px;
    }

    .add-to-cart {
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .thumbnails {
        justify-content: center;
    }

    .thumbnails img {
        width: 50px;
    }

    .product-info h2 {
        font-size: 20px;
    }

    .product-info .price {
        font-size: 18px;
    }

    .add-to-cart {
        padding: 12px;
        font-size: 14px;
    }
}




/* ================= FORM DESIGN ================= */

.form-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: var(--light);
}

.form-card {
    width: 100%;
    max-width: 900px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: 'Cairo', sans-serif;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--blue);
    outline: none;
}

/* Titles */
.section-title {
    margin: 30px 0 15px;
    color: var(--pink);
}

/* Sizes Grid */
.sizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.size-box {
    background: #fafafa;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.size-box input {
    width: 100%;
    margin-top: 8px;
}

/* Colors */
.colors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.color-item {
    background: #fafafa;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.color-item:hover {
    background: var(--blue);
    color: #fff;
}

/* Button */
.submit-btn {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(45deg, var(--pink), var(--yellow));
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .form-card {
        padding: 25px;
    }

    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .sizes-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 20px;
    }
}


/* الألوان مكتوبة */
.form-group input[name="colors_text"] {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sizes-grid {
        grid-template-columns: 1fr;
    }
}


.alert-success {
    background: #e6f9ed;
    color: #1b8a4b;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.alert-error {
    background: #ffeaea;
    color: #c0392b;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}


.options-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 20px;
}

.option-pill {
    position: relative;
    cursor: pointer;
}

.option-pill input {
    display: none;
}

.option-pill span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #ddd;
    background: #fff;
    font-weight: 600;
    transition: 0.3s;
}

/* لما تختار */
.option-pill input:checked+span {
    background: #f8c8dc;
    /* بينك فاتح */
    border-color: #ff69b4;
    color: #d63384;
}







/* خلفية شفافة */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 998;
}

/* السلة */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.close-cart {
    cursor: pointer;
    font-size: 22px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-info {
    flex: 1;
}

.cart-info h4 {
    font-size: 14px;
    margin: 0 0 5px;
}

.cart-info p {
    font-size: 13px;
    color: #777;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.quantity-control button {
    background: #f8c8dc;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 5px;
}

.remove-item {
    cursor: pointer;
    color: red;
    font-size: 14px;
}

.cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #ff69b4;
    border: none;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* موبايل */
@media(max-width: 768px) {
    .cart-sidebar {
        width: 100%;
    }
}









.cart-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.cart-title {
    text-align: center;
    margin-bottom: 30px;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-card {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.cart-img {
    width: 120px;
    border-radius: 12px;
}

.cart-details h4 {
    margin: 0 0 8px;
}

.cart-variant {
    font-size: 14px;
    margin-bottom: 8px;
}

.pill {
    background: #eee;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 5px;
}

.pill.pink {
    background: #f8c8dc;
    color: #d63384;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.qty-control button {
    background: #f8c8dc;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.remove-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
}

.cart-summary {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #ff69b4;
    color: white;
    border: none;
    border-radius: 10px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: bold;
}

.empty-cart {
    text-align: center;
    font-size: 20px;
    margin: 60px 0;
}

/* Responsive */
@media(max-width: 768px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-card {
        flex-direction: column;
        text-align: center;
    }

    .cart-img {
        width: 100%;
        max-width: 250px;
        margin: auto;
    }
}



.cart {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    color: #333;
}

.cart span {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff69b4;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}




@keyframes strongShake {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-8px) rotate(-8deg);
    }

    20% {
        transform: translateX(8px) rotate(8deg);
    }

    30% {
        transform: translateX(-8px) rotate(-8deg);
    }

    40% {
        transform: translateX(8px) rotate(8deg);
    }

    50% {
        transform: translateX(-6px) rotate(-6deg);
    }

    60% {
        transform: translateX(6px) rotate(6deg);
    }

    70% {
        transform: translateX(-4px) rotate(-4deg);
    }

    80% {
        transform: translateX(4px) rotate(4deg);
    }

    90% {
        transform: translateX(-2px) rotate(-2deg);
    }

    100% {
        transform: translateX(0);
    }
}

.cart.shake {
    animation: strongShake 0.8s ease-in-out;
}









.payment-methods {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.payment-card {
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 18px 20px;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
}

.payment-card input {
    display: none;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

/* النقطة المدورة */
.radio-dot {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: 0.3s ease;
}

/* لما يتختار */
.payment-card input:checked+.payment-content .radio-dot {
    border-color: var(--pink);
}

.payment-card input:checked+.payment-content .radio-dot::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, var(--pink), var(--blue));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* بوردر جراديانت عند الاختيار */
.payment-card:has(input:checked) {
    border: 2px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(45deg, var(--pink), var(--blue));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}


.checkout-container {
    max-width: 1100px;
    margin: 160px auto 80px;
    padding: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.checkout-container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}


.checkout-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.checkout-table th {
    background: var(--pink);
    color: #fff;
    padding: 15px;
    font-weight: 600;
}

.checkout-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.checkout-table tr:hover {
    background: #fafafa;
}

.checkout-container form {
    display: grid;
    gap: 18px;
}

.checkout-container input,
.checkout-container textarea {
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #eee;
    font-family: 'Cairo', sans-serif;
    transition: 0.3s ease;
}

.checkout-container input:focus,
.checkout-container textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(232, 138, 180, 0.1);
}

#transferBox {
    background: #fafafa;
    padding: 20px;
    border-radius: 20px;
    margin-top: 10px;
    border: 1px dashed var(--pink);
    transition: 0.3s ease;
}

.checkout-container button {
    padding: 18px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--pink), var(--blue));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.checkout-container button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.mini-img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
    margin-left: 10px;
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}



.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Cairo', sans-serif;
}




@media (max-width: 768px) {

    .checkout-table thead {
        display: none;
    }

    .checkout-table,
    .checkout-table tbody,
    .checkout-table tr,
    .checkout-table td {
        display: block;
        width: 100%;
    }

    .checkout-table tr {
        background: #fff;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .checkout-table td {
        text-align: right;
        padding: 5px 0;
        position: relative;
    }

    .checkout-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #ff4da6;
        display: inline-block;
        width: 90px;
    }

    .total-row {
        background: #fff;
        font-weight: bold;
    }

    .total-row td {
        font-size: 18px;
        color: #333;
        padding-top: 15px;
    }

    .total-row td:last-child {
        color: var(--pink);
        font-size: 20px;
    }
}







.product-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.delete-product-btn {
    background: #ff4d4d;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.delete-product-btn:hover {
    background: #e60000;
    transform: scale(1.05);
}


/* لون البينك الأساسي */
:root {
    --brand-pink: #f7b6c8;
    /* غيريها لو عندك درجة معينة */
}

/* أيقونات العناوين */
.footer-icon {
    margin-left: 8px;
    color: var(--brand-pink);
    font-size: 14px;
}

/* أيقونات اللينكات */
.link-icon {
    margin-left: 6px;
    font-size: 13px;
    color: var(--brand-pink);
    transition: 0.3s ease;
}

/* تنسيق اللينك */
.footer-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

/* Hover شيك */
.footer-links a:hover {
    color: var(--brand-pink);
    transform: translateX(-4px);
}

.footer-links a:hover .link-icon {
    transform: scale(1.2);
}



/* تنسيق اللينكات */
.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

/* أيقونات */
.nav-icon {
    font-size: 14px;
    color: var(--brand-pink);
    transition: 0.3s ease;
}

/* Hover ناعم */
.nav-links a:hover {
    color: var(--brand-pink);
    transform: translateY(-2px);
}

/* تحريك الأيقونة */
.nav-links a:hover .nav-icon {
    transform: scale(1.2);
}

/* خط subtle تحت اللينك */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--brand-pink);
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}




.takweda {
    font-size: 15px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}


.takweda:hover {
    letter-spacing: 1px;
    opacity: 0.8;
}

.pagination-btn {
    display: inline-block;
    padding: 5px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid var(--pink);
    color: var(--pink);
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.pagination-btn:hover {
    background: var(--blue);
    color: #fff;
}

.pagination-btn.active {
    background: var(--pink);
    color: #fff;
    pointer-events: none;
}

.pagination-btn.disabled {
    color: #ccc;
    border-color: #ccc;
    pointer-events: none;
}



.option-pill.disabled {
    opacity: 0.4;
    position: relative;
}

.option-pill.disabled span {
    text-decoration: line-through;
}

.option-pill.disabled input {
    pointer-events: none;
}

.edit-product-btn {
    background: #4CAF50;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.edit-product-btn:hover {
    background: #3e8e41;
    transform: scale(1.05);
}

.delete-product-btn {
    background: #e53935;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.delete-product-btn:hover {
    background: #c62828;
    transform: scale(1.05);
}