﻿/* ====================================
   Almog Catalog - Pastel Color Theme
   Colors: #FAE7FB, #F3DCDC, #F5BCBA, #E3AADD, #C8A8E9, #C3C7F3
   ==================================== */

:root {
    --color-1: #FAE7FB; /* Light lavender */
    --color-2: #a4845f; /* Blush pink */
    --color-3: #F5BCBA; /* Coral/salmon */
    --color-4: #f7f5f0; /* Pink magenta */
    --color-5: #172430; /* Purple lavender */
    --color-6: #dbcbbd; /* Periwinkle blue */

    --primary-color: #C8A8E9;
    --primary-dark: #b090d9;
    --secondary-color: #E3AADD;
    --accent-color: #F5BCBA;
    --success-color: #C3C7F3;
    --dark-color: #172430;
    --light-color: #FAE7FB;
    --text-color: #3d3557;
    --border-color: #dbcbbd;
    --font-family: 'Assistant', sans-serif;
    --shadow-sm: 0 2px 8px rgba(200, 168, 233, 0.15);
    --shadow-md: 0 4px 16px rgba(200, 168, 233, 0.2);
    --shadow-lg: 0 8px 30px rgba(200, 168, 233, 0.25);
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-family);
    background: #fff;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-4);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    border-radius: 20px;
    margin: 0 2px;
}

    .navbar .nav-link:hover {
        /*  background: var(--color-1);*/
        color: var(--dark-color) !important;
        border-bottom: 2px solid var(--color-5);
        border-radius: 0px;
    }

.navbar .form-control {
    border-radius: 25px;
    border: 2px solid #bb976d;
    background: #f8f5f0;
}

.navbar .form-control:focus {
    border-color: var(--color-5);
    box-shadow: 0 0 0 3px rgba(200, 168, 233, 0.2);
    background: #fff;
}

.navbar .btn-primary {
    border-radius: 0 25px 25px 0;
    background:  #bb976d;
    border: none;
}

/* Top Bar */
.bg-dark {
    background: linear-gradient(135deg, var(--dark-color), #5d4a7a) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-5) 0%, var(--color-4) 50%, var(--color-3) 100%);
    padding: 4rem 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section h1 { text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }

.min-vh-50 { min-height: 45vh; }

.btn-light {
    background: #fff;
    color: var(--dark-color);
    border: none;
    font-weight: 600;
}

.btn-light:hover {
    background: var(--color-1);
    color: var(--dark-color);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
}

/* Cards */
.card {
    border: none;
    border-radius: 0px !important;
    overflow: hidden;
    background: #fff;
   /* box-shadow: var(--shadow-sm);*/
    transition: var(--transition);
}
#customerNote {
    border-radius: 0px !important;
}
.card:hover {
   /* transform: translateY(-8px);*/
    box-shadow: var(--shadow-lg);
}


.activeNav{
    border-bottom:1px solid #000;
}
/* Product Card */
.product-card .card-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    position: relative;
}

.product-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ThebadgeCart {
    background-color: #bb976d !important;
    color: #000 !important;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    font-size: 13px;
    font-weight: 600;
    transform: translate(15%, -51%) !important;

}
.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.product-card .card-img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .card-img-placeholder i {
    font-size: 4rem;
    color: var(--color-4);
}

.product-card .card-body {
    padding: 1.25rem;
    text-align: center;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-2);
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
}

/* Badges */
.badge-featured {
    background: var(--color-6) !important;
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0px;
    box-shadow: var(--shadow-sm) !important;
}

.badge-sale {
    background: linear-gradient(135deg, var(--color-3), #e8a5a3) !important;
    color: #fff;
}

/* Price */
.price-tag { /*margin-top: 0.75rem;*/ }

.price-current {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-5);
 }

/* Category Card */
.category-card .card-img-wrapper {
    height: 180px;
    background: #f8f5f0;
}

.category-card .card-img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card .card-img-placeholder i {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.9);
}

.category-card .card-body { padding: 1rem; text-align: center; }

.category-card .card-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}
.btn-quantity {
    background-color: var(--color-4);
    border: none;
    font-size: 25px;
    font-weight:600 !important;
    line-height: 10px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 1px 8px;
    width: 30px;
    height: 30px;
    text-align: center;
}



.section-header p {
    color: #7a6b8a;
}

/* Page Header */
.page-header {
    background: #f8f5f0;
    padding: 2rem 0;
}
.page-header h1 { color: var(--dark-color); }

/* Breadcrumb */
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a {
    color: rgb(23 36 48 );
    font-weight: 500;
}
.breadcrumb-item a:hover { color: var(--color-2); }
.breadcrumb-item.active {
    color: rgb(187 151 109);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-6);
    border: none;
    color: #fff;
}

.text-primary {
    --bs-text-opacity: 1;
    color: var(--color-2) !important;
}



.btn-primary:hover {
    background: var(--color-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--color-5);
    color: var(--color-5);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--color-5);
    color: #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-4), var(--color-5), var(--color-6));
    padding: 3rem 0;
}

/* Footer */
.footer {
    background-color: #f8f5f0;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer h5, .footer h6 { color: var(--color-2);font-weight:500 !important }
.footer a { color: rgba(0,0,0,0.8); }
.footer a:hover { color: var(--color-2); }
.footer .text-muted { color: rgba(0,0,0,0.6) !important; }

/* Product Details */
.product-image-main img {
    border-radius: 0px;
 
}

.product-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    border-radius: 20px;
}

.product-placeholder i { font-size: 5rem; color: var(--color-4); }

.price-display {
     display: inline-block;
    color: rgb(187 151 109) !important;
 }
    .price-display span {
        color: rgb(187 151 109) !important;
        font-weight: 500 !important;
        font-size: 1.7rem;
    }
.prodactname {
    font-size: 1.5rem;
    font-weight: 400 !important;
    color: var(--dark-color);
}
/* Pagination */
.pagination .page-link {
    border: none;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    margin: 0 3px;
    border-radius: 5px !important;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--color-2);
    color: #fff;
}

.pagination .page-link:hover {
    background: var(--color-6);
}

/* Forms */
.form-control, .form-select {
    border-radius: 15px;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-5);
    box-shadow: 0 0 0 3px rgba(200, 168, 233, 0.2);
}

/* Features Section */
.features-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-1), var(--color-6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.features-icon i { font-size: 2rem; color: var(--color-5); }

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 575px) {
    .product-card .card-img-wrapper { height: 160px; }
    .category-card .card-img-wrapper { height: 140px; }
}


.ltr {
    direction: ltr;
}
.rtl {
    direction: rtl;
}

.btn:hover {
    border-color: inherit !important;
}

.btn-remove-item {
    border: none;
    font-size: 1.5rem;
    background: transparent;
    padding: 5px;
}
.quantity-input{
        width: 60px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 0px;
    padding: 7px;
}
.ExtradataTBL, .ExtradataTD {
    background-color: transparent !important;
}