@font-face {
    font-family: 'Readex Pro';
    src: url('/fonts/ReadexPro-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Readex Pro';
    src: url('/fonts/ReadexPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Readex Pro';
    src: url('/fonts/ReadexPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Readex Pro';
    src: url('/fonts/ReadexPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Readex Pro';
    src: url('/fonts/ReadexPro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Readex Pro';
    src: url('/fonts/ReadexPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}



body {
    font-family: 'Readex Pro', sans-serif;
}

:root {
    --wg-brown: #6e5746;
    --wg-brown-dark: #4f3b2d;
    --wg-gold: #c9a36a;
    --wg-cream: #f7f1ea;
    --wg-text: #3a2e26;
    --wg-radius: 18px;
    --wg-text-main: #6d5543

}



* {
    box-sizing: border-box;
    font-family: 'Readex Pro', sans-serif;
}


.main-text {
    color:var(--wg-brown)
}

.price-text {
    color: var(--wg-brown-dark)
}


a {
    text-decoration: none;
}
.header > h2 {
    color: var(--wg-text-main);
    font-size:24px ; 
    font-weight:600;
}
/* ===== Navbar ===== */
.wg-navbar {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: .3s;
    padding: .6rem 0;
}

.wg-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--wg-brown-dark);
}

    .wg-logo span {
        color: var(--wg-gold);
    }

.wg-navbar .nav-link {
    color: var(--wg-text);
    font-weight: 600;
    position: relative;
    padding: .5rem 0;
}

    .wg-navbar .nav-link.active,
    .wg-navbar .nav-link:hover {
        color: var(--wg-gold);
    }

/* ===== Buttons ===== */
.wg-btn-primary {
    background: var(--wg-brown);
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: .7rem 1.8rem;
    transition: .3s;
    font-size:14px;
    font-weight:500;
    padding-inline:40px;
}

    .wg-btn-primary:hover {
        background: var(--wg-brown-dark);
        color: #fff;
    }

.wg-btn-outline {
    background: transparent;
    border: 1px solid var(--wg-brown);
    color: var(--wg-brown);
    border-radius: 15px;
    padding: .65rem 1.8rem;
    transition: .3s;
    font-size: 14px;
    font-weight: 500;
    padding-inline: 40px;
}

    .wg-btn-outline:hover {
        background: var(--wg-brown);
        color: #fff;
    }

.wg-btn-light {
    background: #fff;
    color: var(--wg-brown-dark);
    border-radius: 50px;
    padding: .7rem 1.8rem;
    font-weight: 700;
    border: none;
}

.wg-btn-outline-light {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: .65rem 1.8rem;
    font-weight: 700;
}

    .wg-btn-outline-light:hover {
        background: #fff;
        color: var(--wg-brown-dark);
    }

/* ===== Hero ===== */
.wg-hero {
    background: linear-gradient(135deg, var(--wg-cream) 0%, #fff 60%);
    padding: 160px 0 90px;
    position: relative;
}

.wg-hero-title {
    font-weight:700;
    font-size: 28px;
    color: var(--wg-text-main);
    margin-bottom: 1rem;
    text-align: start
}

    .wg-hero-title span {
        color: var(--wg-gold);
    }

.wg-hero-sub {
    font-size: 14px;
    color: var(--wg-text-main);
    text-align: start;
    margin-bottom: 0px;
    padding-bottom: 0px;
}


.wg-hero-img {
    width:100%;
    border-radius: var(--wg-radius);
    max-height: 597px;
    box-shadow: 0 20px 50px rgba(110,87,70,.25);
    object-fit:cover;

}

/* ===== Sections ===== */
.wg-section {
    padding: 40px 0;
}

.wg-bg-soft {
    background: var(--wg-cream);
}

.wg-eyebrow {
    color: var(--wg-gold);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: .4rem;
}

.wg-title {
    font-weight: 800;
    color: var(--wg-brown-dark);
    font-size: 2.2rem;
}

    .wg-title span {
        color: var(--wg-gold);
    }

.wg-desc {
    color: #6b5c50;
}

/* ===== Feature cards ===== */
.wg-feature-card {
    background: #fff;
    border: 1px solid #eee2d6;
    border-radius: var(--wg-radius);
    padding: 2rem 1.4rem;
    height: 100%;
    transition: .3s;
}

    .wg-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(110,87,70,.15);
    }

.wg-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--wg-cream);
    color: var(--wg-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.wg-feature-card h5 {
    font-weight: 700;
    color: var(--wg-brown-dark);
}

.wg-feature-card p {
    font-size: .92rem;
    color: #7a6a5d;
    margin-bottom: 0;
}

/* ===== Service cards ===== */
.wg-service-card {
    background: #fff;
    border-radius: var(--wg-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: .3s;
    height: 100%;
}

    .wg-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(110,87,70,.2);
    }

    .wg-service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.wg-service-body {
    padding: 1.2rem;
}

    .wg-service-body h5 {
        font-weight: 700;
        color: var(--wg-brown-dark);
    }

    .wg-service-body p {
        font-size: .9rem;
        color: #7a6a5d;
        margin-bottom: 0;
    }

/* ===== Gallery ===== */
.wg-gallery-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: .3s;
}

    .wg-gallery-img:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
    }

/* ===== CTA ===== */
.wg-cta {
    background: linear-gradient(135deg, var(--wg-brown) 0%, var(--wg-brown-dark) 100%);
    color: #fff;
    padding: 80px 0;
}

    .wg-cta h2 {
        font-weight: 800;
    }

/* ===== Footer ===== */
.wg-footer {
    background: var(--wg-brown);
    color: #cbb9a9;
    padding: 60px 0 30px;
    font-size: .95rem;
}

    .wg-footer .wg-logo {
        color: #fff;
    }

.wg-footer-links li {
    margin-bottom: .5rem;
}

.wg-footer-links a {
    color: #cbb9a9;
}

    .wg-footer-links a:hover {
        color: var(--wg-gold);
    }

.wg-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #4a3c30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbb9a9;
    transition: .3s;
}

    .wg-social a:hover {
        background: var(--wg-gold);
        color: #241b15;
        border-color: var(--wg-gold);
    }

.wg-footer hr {
    border-color: #3a2e26;
}

/* ===== Scroll Top ===== */
.wg-scrolltop {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 46px;
    height: 46px;
    background: var(--wg-brown);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}

    .wg-scrolltop.show {
        opacity: 1;
        visibility: visible;
    }

    .wg-scrolltop:hover {
        background: var(--wg-brown-dark);
        color: #fff;
    }

@media(max-width:991px) {
    .wg-hero {
        padding: 140px 0 60px;
    }

   
}













.shop-hero {
    height: 320px;
    border-radius: 25px;
    margin: 20px;
    background: linear-gradient(135deg,#101828,#394150);
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    padding-left: 60px;
}

    .hero-content h1 {
        font-size: 55px;
        font-weight: 700;
    }

    .hero-content p {
        opacity: .8;
    }

.filter-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
}

    .filter-card h5 {
        margin-bottom: 20px;
    }

    .filter-card label {
        display: block;
        margin-bottom: 12px;
    }


.search-box {
    width: 420px;
    height: 50px;
    border: none;
    border-radius: 50px;
    padding: 0 25px;
    background: white;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
}

.sort-box {
    width: 220px;
    border: none;
    border-radius: 50px;
    padding: 0 20px;
    background: white;
}

.product-card {
    border-radius: 22px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

.image-box {
    position: relative;
    overflow: hidden;
}

    .image-box img {
        width: 100%;
        height: 100%;
        min-height: 204px;
        object-fit: cover;
        transition: .4s;
    }

.product-card:hover img {
    transform: scale(1.08);
}

.discount {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #ef4444;
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
}

.wishlist {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
}

.quick-buttons {

    transition: .35s;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
}

.product-card:hover .quick-buttons {
    bottom: 0;
}
.product-card .discount {
    position: absolute;
    z-index: 100;
}
.quick-buttons button {
    border: none;
    border-radius: 15px;
    background:var(--wg-brown);
    color: white;
    padding-block:10px;
}
    .quick-buttons button:hover {
        background: var(--wg-brown) ;
        color: #fff;
    }

.price {
    display: flex;
    gap: 15px;
    align-items: center;
}

.new {
    font-size: 22px;
    font-weight: 700;
}

.old {
    color: #999;
    text-decoration: line-through;
}

.category-item {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: .3s;
}

    .category-item:hover {
        background: #f5f5f5;
    }

    .category-item.active {
        background: var(--wg-brown-dark);
        color: white;
    }



.skeleton-card {
    animation: pulse 1.2s infinite;
}

.skeleton-image {
    height: 280px;
    background: #ececec;
}

.skeleton-line {
    height: 16px;
    margin: 12px;
    background: #ececec;
    border-radius: 8px;
}

    .skeleton-line.short {
        width: 60%;
    }

@keyframes pulse {
    0% {
        opacity: .6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 25px;
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .35s;
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-8px);
    }

.product-image {
    position: relative;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: .4s;
    }

.product-card:hover img {
    transform: scale(1.08);
}

.discount-badge {
    position: absolute;
    left: 15px;
    top: 15px;
    background: var(--danger);
    color: white;
    padding: 6px 15px;
    border-radius: 30px;
    z-index: 5;
}

.wishlist-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    z-index: 5;
}

.overlay {
    position: absolute;
    left: 0;
    bottom: -140px;
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: .35s;
}

.product-card:hover .overlay {
    bottom: 0;
}

.overlay button {
    height: 45px;
    border: none;
    border-radius: 50px;
    background: black;
    color: white;
}

.product-body {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #bababa;
    border-top: none;
    padding: 10px;
    border-end-end-radius: 10%;
    border-end-start-radius: 10%;
}

.category {
    color: var(--gray);
    font-size: 13px;
}

.rating {
    color: #ffb800;
}

.price {
    margin-top: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.new-price {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
}

body {
    font-family: 'Cairo', sans-serif;
    min-height: 100vh;
    background: #f2f2f7;
    color: var(--dark);
}

.store-container {
    min-height: 100vh;
}

.store-hero {
    height: 340px;
    border-radius: 30px;
    margin: 25px;
    overflow: hidden;
    background: linear-gradient( rgba(0,0,0,.45), rgba(0,0,0,.45) ), url('/images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    text-align: center;
    color: white;
}

    .hero-overlay h1 {
        font-size: 55px;
        font-weight: 800;
    }

    .hero-overlay p {
        font-size: 18px;
        opacity: .85;
    }

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.page-item {
    cursor: pointer;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
    transition: .3s;
}

.page-item.active .page-link {
    background: #111827;
    color: white;
}

.page-link:hover {
    transform: translateY(-3px);
}














/*=========================
    DAYS
==========================*/

.days-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 2px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .days-wrapper::-webkit-scrollbar {
        display: none;
    }

#DaysContainer {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: max-content;
}

.day-card {
    min-width: 95px;
    height: 95px;
    border-radius: 20px;
    background: #fff;
    border: 2px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    flex-shrink: 0;
    flex: 0 0 auto;
}

    .day-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .day-card.active {
        background: #8B5E3C;
        color: #fff;
        border-color: #8B5E3C;
    }

.day-number {
    font-size: 30px;
    font-weight: 700;
}

.day-name {
    font-size: 15px;
    margin-top: 4px;
}


/*=========================
    TIMES
==========================*/

.time-card {
    height: 100%;
    min-height: 95px;
    border-radius: 18px;
    border: 2px solid #eee;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    padding: 12px;
}

    .time-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .time-card.active {
        background: #8B5E3C;
        color: #fff;
        border-color: #8B5E3C;
    }

    .time-card.disabled {
        opacity: .45;
        cursor: not-allowed;
    }

.time-icon {
    font-size: 22px;
}

.time-text {
    font-size: 15px;
}

.time-status {
    font-size: 12px;
}


/*=========================
    TABLET
==========================*/

@media(max-width:992px) {

    .day-card {
        min-width: 85px;
        height: 85px;
    }

    .day-number {
        font-size: 26px;
    }

    .day-name {
        font-size: 14px;
    }

    .time-card {
        min-height: 85px;
    }

    .time-icon {
        font-size: 20px;
    }
}


/*=========================
    MOBILE
==========================*/

@media(max-width:768px) {

    .card-body {
        padding: 18px !important;
    }

    #MonthTitle {
        font-size: 18px;
    }

    #btnPrevDays,
    #btnNextDays {
        width: 40px !important;
        height: 40px !important;
    }

    .day-card {
        min-width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    .day-number {
        font-size: 22px;
    }

    .day-name {
        font-size: 12px;
    }

    .time-card {
        min-height: 78px;
        border-radius: 14px;
        padding: 10px;
    }

    .time-icon {
        font-size: 18px;
    }

    .time-text {
        font-size: 13px;
    }

    .time-status {
        font-size: 11px;
    }
}


/*=========================
    SMALL MOBILE
==========================*/

@media(max-width:480px) {

    .day-card {
        min-width: 65px;
        height: 65px;
    }

    .day-number {
        font-size: 18px;
    }

    .day-name {
        font-size: 11px;
    }

    .time-card {
        min-height: 72px;
    }

    .time-icon {
        font-size: 16px;
    }

    .time-text {
        font-size: 12px;
    }

    .time-status {
        font-size: 10px;
    }
}


.price {
    color: #8B5E3C;
    font-weight: 700;
    white-space: nowrap;
}

.card-summary {
    background: #fff;
    border-radius: 20px;
}

@media (max-width: 768px) {

    #lblTotal {
        font-size: 28px !important;
    }

    .btn-lg {
        font-size: 16px;
    }
}





.service_name {
    color: var(--wg-text-main);
    font-size: 14px;
    font-family: "Readex Pro";
    font-weight: bold;

}



.sub-description {
    color: var(--wg-text-main);
    font-size: 14px;
    font-family: "Readex Pro";
    opacity: 0.6;
}




/*//SHow All//*/
.show-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
}

    .show-all::before,
    .show-all::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e5e5e5;
    }

    .show-all a {
        min-width: 125px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 24px;
        border: 1px solid #8B6B54;
        border-radius: 14px;
        background: #fff;
        color: #8B6B54;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: .3s;
    }

        .show-all a:hover {
            background: #8B6B54;
            color: #fff;
        }
/*//SHow All//*/



.btn-border {
    border-radius:.75rem!important
}
.btn-outline-brown {
    border:1px solid var(--wg-brown)
}