 
/* -------------------- Root Variables -------------------- */
:root {
  --color-primary: #2e7d32;
  --color-primary-dark: #1b5e20;
  --color-primary-light: #66bb6a;
  --color-accent: #ffb300;
  --color-white: #ffffff;
  --color-bg-light: #f4faf4;
  --color-text-dark: #1e2a1e;
  --color-text-muted: #6c7a6c;
  --color-border: #e3ede3;
  -speed- : 0.2s ; 
  --shadow-sm: 0 2px 8px rgba(46, 125, 50, 0.08);
  --shadow-md: 0 8px 24px rgba(46, 125, 50, 0.12);
  --shadow-lg: 0 16px 40px rgba(46, 125, 50, 0.16);
 
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
 
  --transition: all 0.3s ease;
}
:root{
    --bg:white;
    --text:#222;
    --card:white;
}
body.dark{
    --bg:#0f172a;
    --text:#fff;
    --card:#1f2937;
}
html{
    width: 100%;
    max-width: 100%;
}
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
body{
    background:var(--bg);
    color:var(--text);
}
html::-webkit-scrollbar {
    width: 6px;
}
html::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 99px;
}
html::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.shopping .content-all{
    background:white;
}
.product-card{
    background:var(--card);
}
/* -------------------- Base -------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.7;
}
 
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-text-dark);
}
/* start code css login */
.auth-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 35, 30, 0.55);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}
.auth-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    animation: authShow 0.3s ease;
    overflow: hidden;
}
.auth-box-content {
    height: 100%;
    max-height: 90vh;
    padding: 35px;
    overflow-y: auto;
    overflow-x: hidden;
}
.auth-box-content::-webkit-scrollbar {
    width: 4px;
}
.auth-box-content::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}
.auth-box-content::-webkit-scrollbar-track {
    background: transparent;
}
.invalid {
    display: none;
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
}
.auth-input input.is-invalid {
    border-color: #dc3545;
}
.auth-input input.is-valid {
    border-color: #2f8f5e;
}
@keyframes authShow {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.auth-close {
    position: absolute;
    z-index: 10;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border: none;
    background: #f5f5f5;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.auth-close:hover {
    background: #e9e9e9;
}
.auth-header {
    text-align: center;
    margin-bottom: 28px;
}
.auth-logo {
    width: 58px;
    height: 58px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(47, 143, 94, 0.12);
    color: #2f8f5e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}
.auth-header h2 {
    margin: 0 0 8px;
    color: #243447;
    font-size: 25px;
    font-weight: 700;
}
.auth-header p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}
.auth-input-group {
    margin-bottom: 18px;
}
.auth-input-group label {
    display: block;
    margin-bottom: 7px;
    color: #243447;
    font-size: 14px;
    font-weight: 600;
}
.auth-input {
    position: relative;
}


.auth-input i {
    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #2f8f5e;

    font-size: 15px;

    pointer-events: none;
}


.auth-input input {
    width: 100%;

    height: 48px;

    border: 1px solid #dfe5e1;

    border-radius: 10px;

    outline: none;

    padding: 0 15px 0 43px;

    font-size: 14px;

    color: #243447;

    background: #ffffff;

    transition: 0.3s;
}


.auth-input input::placeholder {
    color: #aaa;
}


.auth-input input:focus {
    border-color: #2f8f5e;
    box-shadow: 0 0 0 3px rgba(47, 143, 94, 0.12);
}
.auth-submit {
    width: 100%;

    height: 50px;

    border: none;

    border-radius: 10px;

    background: #2f8f5e;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    margin-top: 5px;

    transition: 0.3s;
}


.auth-submit:hover {
    background: #267a4f;

    transform: translateY(-1px);
}


.auth-submit i {
    margin-right: 7px;
}


/* =========================================
   FOOTER
========================================= */

.auth-footer {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 5px;

    margin-top: 22px;

    font-size: 13px;

    color: #777;
}


.auth-footer button {
    border: none;

    background: transparent;

    color: #2f8f5e;

    font-weight: 600;

    cursor: pointer;

    padding: 0;
}


.auth-footer button:hover {
    text-decoration: underline;
}
/* start shopping */
.shopping {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 10000;
    display: flex;
    backdrop-filter: blur(5px);
}
.shopping .content-all{
  width: 520px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* ================= HEADER ================= */
.shopping .content-all .dip{
      position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.shopping header{
    flex-shrink: 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 28px;
    border-bottom:1px solid #e8e8e8;
}
.shopping header .icon-1{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}
.shopping header .icon-1:hover{
    background:#71df4e28;
}
.shopping header .icon-1 i{
    font-size:24px;
}
.shopping header h3{
    margin:0;
    font-size:24px;
    font-weight:700;
}
/* ================= PRODUCTS ================= */
.li-list{
  flex:1;
  overflow-y: auto;
  padding:25px;
  margin:0;
  list-style:none;
}
.li-list-madi{
    overflow-y: auto;
    overflow-x: hidden;
    padding: 25px;
    max-height: 300px;
    margin: 0;
    list-style: none;
}
.checkout-summary-card .li-list {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}
/* شكل الـ scrollbar */
.checkout-summary-card .li-list::-webkit-scrollbar {
    width: 5px;
}
.checkout-summary-card .li-list::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}
.checkout-summary-card .li-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.li-list li{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    padding-bottom:18px;
    border-bottom:1px solid #eee;
}
.imge{
    width:95px;
    height:95px;
    flex-shrink:0;
}
.imge img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
}
.text{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:8px;
}
.text-madi{
  gap: 1px;
}
.text h3{
    margin:0;
    font-size:18px;
    white-space: nowrap;
}
.text p{
  margin: 0 !important;
}
.text span{
    color:#27ae60;
    font-weight:600;
}
.navbar-toggler{
    padding: 8px 10px;
    flex-basis: auto;
}
.navbar-toggler:focus{
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler i{
  font-size: 22px;
}
.btoo{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:flex-end;
}
.btoo div{
    display:flex;
    align-items:center;
    gap:10px;
}
.btoo button{
    width:32px;
    height:32px;
    border:none;
    border-radius:8px;
    background:#27ae60;
    color:#fff;
    cursor:pointer;
}
.btoo span:last-child{
    color: red;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #ff000038;
}
/* ================= FOOTER ================= */
.shopping footer{
    flex-shrink:0;
    padding:25px;
    border-top:1px solid #e8e8e8;
    background:#fff;
}
.shopping footer .content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}
.shopping footer .hea h3{
    margin:0;
    font-size:22px;
}
.shopping footer .prais{
    font-size:24px;
    font-weight:bold;
    color:#27ae60;
}
.shopping footer .Complet{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:55px;
    border-radius:10px;
    background:#27ae60;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
.shopping footer .Complet:hover{
    background:#219150;
}
/* start end */
.section-padding {
  padding: 90px 0;
}
 
.bg-light-green {
  background-color: var(--color-bg-light);
}
 
.text-primary-green {
  color: var(--color-primary) !important;
}
 
.section-subtitle {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: rgba(46, 125, 50, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
 
.section-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
 
.section-desc {
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}
 
/* -------------------- Buttons -------------------- */
.btn-green {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
 
.btn-green:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
 
.btn-outline-green {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
 
.btn-outline-green:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}
 
.btn-sm-green {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
 
.btn-sm-green:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}
 
/* -------------------- Navbar -------------------- */
.navbar-fresh {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  transition: var(--transition);
}
 
.navbar-brand-fresh {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-primary-dark) !important;
}
 
.navbar-brand-fresh i {
  color: var(--color-accent);
  margin-right: 6px;
}
 
.navbar-fresh .nav-link {
  color: var(--color-text-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}
 
.navbar-fresh .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}
 
.navbar-fresh .nav-link:hover::after,
.navbar-fresh .nav-link.active::after {
  width: 100%;
}
 
.navbar-fresh .nav-link.active {
  color: var(--color-primary) !important;
}
 
.nav-icon-btn {
  color: var(--color-text-dark);
  font-size: 1.15rem;
  /* margin-left: 18px; */
  position: relative;
}
 
.nav-icon-btn .badge-count {
  position: absolute;
  top: -2px;
    right: -3px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.65rem;
  border-radius: 50%;
  padding: 2px 6px;
}
 
/* -------------------- Hero Section -------------------- */
.hero-section {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #e6f4e6 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
 
.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
 
.hero-title span {
  color: var(--color-primary);
  position: relative;
}
 
.hero-desc {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}
 
.hero-img-wrap {
  position: relative;
}
 
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
 
.hero-badge-float {
  position: absolute;
  background: var(--color-white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 3s ease-in-out infinite;
}
 
.hero-badge-float.top {
  top: 10px;
  left: -10px;
}
 
.hero-badge-float.bottom {
  bottom: 10px;
  right: -10px;
  animation-delay: 1.2s;
}
 
.hero-badge-float i {
  color: var(--color-primary);
  font-size: 1.6rem;
}
 
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
 
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
 
.hero-stats .stat-item h3 {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 0;
}
 
.hero-stats .stat-item span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
 
/* -------------------- Category Cards -------------------- */
.category-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 34px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
  height: 100%;
}
 
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
 
.category-icon {
  width: 76px;
  height: 76px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.cart-control{
  display: contents;
}
.qty-control{
    background-color: #0080001f;
    width: 65%;
    height: 50px;
    border-radius: 85px;
    border: 1px solid #00000030;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.qty-control .btnMinusProduct{
  border: none;
    font-size: 20px;
    background-color: transparent;
    color: #25222296;
    cursor: pointer;
}
.qty-control .qtyNumber{
  color: black;
  font-size: 22px;
}
.qty-control .btnPlusProduct{
  border: none;
    font-size: 20px;
    background-color: transparent;
    color: #25222296;
    cursor: pointer;
}

.category-card:hover .category-icon {
  background: var(--color-primary);
}
 
.category-icon i {
  font-size: 1.9rem;
  color: var(--color-primary);
  transition: var(--transition);
}
 
.category-card:hover .category-icon i {
  color: var(--color-white);
}
 
.category-card h5 {
  margin-bottom: 6px;
      word-wrap: break-word;

}
 
.category-card p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}
 
/* -------------------- Product Cards -------------------- */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
  position: relative;
}
 
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
 
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-light);
}
 
.product-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
 
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}
 
.badge-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}
 
.badge-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}
 
.wishlist-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-muted);
  transition: var(--transition);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
}
 
.product-card:hover .wishlist-btn {
  opacity: 1;
  transform: translateY(0);
}
 
.wishlist-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
 
.product-body {
  padding: 20px;
}
 
.product-rating {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
 
.product-rating span {
  color: var(--color-text-muted);
  margin-left: 4px;
}
 
.product-title {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
 
.product-unit {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
 
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
 
.product-price del {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 6px;
}
 
.btn-cart {
    width: 65%;
    height: 50px;
    border-radius: 112px;
    background-color: #006800;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
 
/* -------------------- Why Choose Us -------------------- */
.feature-box {
  display: flex;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100%;
}
 
.feature-box:hover {
  background-color: var(--color-bg-light);
}
 
.feature-icon {
  min-width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.feature-icon i {
  color: var(--color-white);
  font-size: 1.5rem;
}
 
.feature-box h5 {
  margin-bottom: 8px;
}
 
.feature-box p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}
 
.why-us-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
 
/* -------------------- Testimonials -------------------- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
  transition: var(--transition);
}
 
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
 
.testimonial-quote-icon {
  color: var(--color-primary-light);
  font-size: 1.6rem;
  margin-bottom: 14px;
}
 
.testimonial-text {
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 22px;
}
 
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
 
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
 
.testimonial-author h6 {
  margin-bottom: 2px;
}
 
.testimonial-author span {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}
 
.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.8rem;
}
 
/* -------------------- Call To Action -------------------- */
.cta-section {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
 
.cta-section h2 {
  color: var(--color-white);
  font-size: 2.1rem;
  margin-bottom: 10px;
}
 
.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}
 
.cta-section .btn-light-cta {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  border: none;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}
 
.cta-section .btn-light-cta:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}
 
/* -------------------- Footer -------------------- */
.footer-fresh {
  background-color: #163817;
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
 
.footer-fresh h5,
.footer-fresh h6 {
  color: var(--color-white);
  margin-bottom: 20px;
}
 
.footer-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-white);
}
 
.footer-brand i {
  color: var(--color-accent);
  margin-right: 6px;
}
 
.footer-fresh p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}
 
.footer-fresh ul {
  list-style: none;
  padding-left: 0;
}
 
.footer-fresh ul li {
  margin-bottom: 12px;
}
 
.footer-fresh ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
 
.footer-fresh ul li a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}
 
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-right: 10px;
  transition: var(--transition);
}
 
.footer-social a:hover {
  background: var(--color-accent);
  transform: translateY(-4px);
}
 
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}
 
.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 3px;
}
 
.newsletter-form input {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 12px 20px;
}
 
.newsletter-form button {
  border-radius: 0 50px 50px 0;
  background-color: var(--color-accent);
  border: none;
  padding: 12px 20px;
  color: var(--color-white);
}
 
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
 
/* -------------------- Page Header (inner pages) -------------------- */
.page-header {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #e6f4e6 100%);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
}
 
.page-header h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
 
.breadcrumb-fresh {
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
}
 
.breadcrumb-fresh a {
  color: var(--color-primary);
  text-decoration: none;
}
 
.breadcrumb-fresh .active {
  color: var(--color-text-muted);
}
 
/* -------------------- Filter / Sort bar (Products page) -------------------- */
.filter-bar {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px 26px;
  border: 1px solid var(--color-border);
}
 
.filter-bar .form-select,
.filter-bar .form-control {
  border-radius: 50px;
  border-color: var(--color-border);
}
 
.category-pill {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin: 0 6px 10px 0;
  transition: var(--transition);
}
 
.category-pill.active,
.category-pill:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
 
/* -------------------- Pagination -------------------- */
.pagination-fresh .page-link {
  border-radius: 50%;
  margin: 0 5px;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.pagination-fresh .page-item.active .page-link {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
 
.pagination-fresh .page-link:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary-dark);
}
 
/* -------------------- Contact Page -------------------- */
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
 
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
 
.contact-info-card .category-icon {
  margin-bottom: 20px;
}
 
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px;
  border: 1px solid var(--color-border);
}
 
.form-control-fresh,
.form-select-fresh {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
}
 
.form-control-fresh:focus,
.form-select-fresh:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.15);
}
 
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 320px;
}
 
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}
 
.hours-table {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 30px;
}
 
.hours-table .hour-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
}
 
.hours-table .hour-row:last-child {
  border-bottom: none;
}
 
.hours-table .hour-row span.day {
  font-weight: 600;
}
 
.hours-table .hour-row span.closed {
  color: #d64545;
  font-weight: 600;
}
 
/* -------------------- FAQ Accordion -------------------- */
.accordion-fresh .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
 
.accordion-fresh .accordion-button {
  font-weight: 600;
  color: var(--color-text-dark);
  background-color: var(--color-white);
}
 
.accordion-fresh .accordion-button:not(.collapsed) {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: none;
}
 
.accordion-fresh .accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-border);
}
 
.accordion-fresh .accordion-button::after {
  filter: brightness(1);
}
 
/* -------------------- Back to top -------------------- */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s linear;
}
 
.back-to-top:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-4px);
}
.back-to-top.show{
  opacity: 1;
  transform: translateY(0);
}

.checkout-account-card,
.checkout-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}
 
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-white);
  border: 2px solid var(--color-border);
  color: var(--color-text-dark);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  transition: var(--transition);
  
}
.btn-google i {
  color: #db4437;
  font-size: 1.1rem;
  transition: var(--transition);
}
 
.btn-google:hover {
  border-color: var(--color-primary);
  background-color: var(--color-bg-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
 
.google-demo-note {
  display: inline-block;
  margin-left: 12px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-style: italic;
}
 
.checkout-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 24px;
}
 
.checkout-divider::before,
.checkout-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--color-border);
}
 
.checkout-divider span {
  padding: 0 16px;
}
 
/* -------------------- Customer Information Form -------------------- */
.input-icon-group {
  position: relative;
}
 
.input-icon {
  position: absolute;
  top: 14px;
  left: 18px;
  color: var(--color-primary);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 3;
}
 
.input-icon-textarea {
  top: 16px;
}
 
.input-icon-group .form-select.ps-5 {
  padding-left: 2.7rem !important;
}
 
.input-icon-group textarea.ps-5 {
  padding-left: 2.7rem !important;
}
 
/* Bootstrap validation states layered on top of existing form-control-fresh style */
.form-control-fresh.is-invalid,
.form-select-fresh.is-invalid {
  border-color: #d64545;
  background-image: none;
  padding-right: 16px;
}
 
.form-control-fresh.is-invalid:focus,
.form-select-fresh.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(214, 69, 69, 0.15);
}
 
.invalid-feedback {
  font-size: 0.82rem;
  margin-top: 6px;
}
 
/* -------------------- Confirm Order Button -------------------- */
.btn-confirm-order {
  font-size: 1.05rem;
  padding: 15px 32px;
  position: relative;
}
 
.btn-confirm-order:disabled {
  opacity: 0.85;
  cursor: not-allowed;
  transform: none;
}
 
.btn-confirm-order .fa-spinner {
  animation: spin 0.8s linear infinite;
}
 
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
 
/* -------------------- Order Summary Card -------------------- */
.checkout-summary-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  position: sticky;
  top: 100px;
}
 
.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}
 
.order-items-list::-webkit-scrollbar {
  width: 6px;
}
 
.order-items-list::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  border-radius: 50px;
}
 
.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
 
.order-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--color-bg-light);
}
 
.order-item-info {
  flex-grow: 1;
  min-width: 0;
}
 
.order-item-info h6 {
  margin-bottom: 2px;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.order-item-info .order-item-meta {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}
 
.order-item-total {
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
  font-size: 0.95rem;
}
 
.summary-totals {
  border-top: 1px dashed var(--color-border);
  padding-top: 18px;
}
 
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}
 
.summary-row-discount span:last-child {
  color: #d64545;
}
 
.summary-row-total {
  border-top: 1px solid var(--color-border);
  margin-top: 6px;
  padding-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-dark);
}
 
.summary-row-total span:last-child {
  color: var(--color-primary-dark);
}
 
.summary-secure-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 16px;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-size: 0.82rem;
}
 
.summary-secure-note i {
  color: var(--color-primary);
  font-size: 1.1rem;
}
 
/* -------------------- Success State -------------------- */
.success-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 56px 40px;
  animation: successFadeIn 0.5s ease;
}
 
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
 
.success-icon {
  width: 92px;
  height: 92px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  animation: successPop 0.4s ease 0.2s both;
}
 
@keyframes successPop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
 
.success-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}
 
.success-detail-item {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  min-width: 180px;
}
 
.success-detail-item .label {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
 
.success-detail-item .value {
  display: block;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 1.15rem;
}
.btn-delete-confirm {
  background-color: #d64545;
  color: var(--color-white);
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
 
.btn-delete-confirm:hover {
  background-color: #b83b3b;
  color: var(--color-white);
  transform: translateY(-2px);
}
 
/* -------------------- Footer -------------------- */
/* stet dark mood */
/* ================= DARK MODE ================= */

body.dark-mode {
    background-color: #121212 !important;
    color: #ffffff !important;
}

body.dark-mode * {
    border-color: #333 !important;

    
}
body.dark-mode .page-header{
      background: linear-gradient(#121212) !important;
}
body.dark-mode .page-header h1{
  color: #ffffff !important;
}
body.dark-mode .nav-actions i{
  color: #ffffff !important;
}
body.dark-mode .nav-actions span{
  color: #ffffff !important;
}
body.dark-mode .navbar-nav li a{
  color: #ffffff !important;
}
body.dark-mode .text-madi h3{
  color: #ffffff !important;
}
body.dark-mode .summary-row span{
  color: #ffffff !important;
}
body.dark-mode .checkout-summary-card h5{
    color: #ffffff !important;
}
body.dark-mode .section-padding {
      background: linear-gradient( #252525) !important;
}
body.dark-mode .hero-section{
      background: linear-gradient( #252525) !important;
}
body.dark-mode .content-all .hero-title{

    color: #ffffff !important;
}
body.dark-mode .contact-info-card{
  background-color: #252525 !important;
}
body.dark-mode .contact-form-wrap{
  background-color: #252525 !important;
}
body.dark-mode .category-card{
  background-color: #252525 !important;
}
body.dark-mode .feature-box:hover{
  background-color: #252525 !important;
}
/* body.dark-mode .category-card{
  
} */
body.dark-mode .qty-control span{
  color: #ffffff !important;
}
body.dark-mode .qty-control button{

    color: #ffffff !important;
}
body.dark-mode .content-all h3{

    color: #ffffff !important;
}
body.dark-mode .accordion-collapse{
    background-color: #252525 !important;
}
body.dark-mode .accordion-collapse .accordion-body{
    color: #ffffff !important;
}
body.dark-mode .content-all{
  background-color: #121212;
}
body.dark-mode .testimonial-card:hover .gogomod p{
  color: black !important;
}
body.dark-mode .testimonial-card{
  background-color: #121212;
}
body.dark-mode .navbar-fresh,
body.dark-mode .card,
body.dark-mode .checkout-form-card,
body.dark-mode .checkout-summary-card,
body.dark-mode .checkout-account-card,
body.dark-mode .auth-box,
body.dark-mode .product-card,
body.dark-mode footer {
    background-color: #1e1e1e !important;
    color: #ffffff !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #252525 !important;
    color: #ffffff !important;
    border-color: #444 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #aaa !important;
}

body.dark-mode .text-muted {
    color: #aaa !important;
}

body.dark-mode .nav-link,
body.dark-mode label,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p,
body.dark-mode span {
    color: inherit;
}
body.dark-mode .bg-white {
    background-color: #1e1e1e !important;
}

body.dark-mode .bg-light {
    background-color: #1e1e1e !important;
}

body.dark-mode .form-control,
body.dark-mode .form-select {
    background-color: #252525 !important;
    color: white !important;
}

body.dark-mode .dropdown-menu {
    background-color: #1e1e1e !important;
}

body.dark-mode .dropdown-item {
    color: white !important;
}

body.dark-mode .modal-content {
    background-color: #1e1e1e !important;
    color: white !important;
}
/* end dark mood */