/* =======================================================
   FRESH THEME — Modern E-Commerce Skin
   Works on top of the existing Bootstrap/Shopwise CSS.
   Designed for small, beginner-friendly online stores.
   ======================================================= */

/* ---- Google Fonts: Tajawal (Arabic) + Inter (Latin) ---- */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
  --f-primary:    var(--primary-color, #4f46e5);
  --f-secondary:  var(--secondary-color, #ec4899);
  --f-bg:         #f7f8fc;
  --f-white:      #ffffff;
  --f-text:       #1e293b;
  --f-muted:      #64748b;
  --f-border:     #e2e8f0;
  --f-card-sh:    0 4px 24px rgba(0,0,0,0.07);
  --f-card-sh-h:  0 12px 40px rgba(0,0,0,0.13);
  --f-radius:     14px;
  --f-radius-sm:  8px;
  --f-radius-xs:  6px;
  --f-trans:      all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===================== BASE ===================== */
body {
  background: var(--f-bg) !important;
  color: var(--f-text) !important;
  font-family: 'Tajawal', 'Inter', 'Poppins', sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Tajawal','Inter','Poppins',sans-serif !important; font-weight: 700 !important; }
p,a,span,li,td,th,input,select,textarea,button {
  font-family: 'Tajawal','Inter','Poppins',sans-serif !important;
}
a { text-decoration: none !important; }

/* ===================== PRELOADER ===================== */
.preloader {
  background: var(--f-primary) !important;
}
.lds-ellipsis span { background: #fff !important; }

/* ===================== HEADER ===================== */
.header_wrap,
.header_wrap.fixed-top {
  background: var(--f-white) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
  border-bottom: 1px solid var(--f-border) !important;
  padding: 0 !important;
}
/* Override the dark-skin / transparent styles */
.header_wrap.dd_dark_skin.transparent_header,
.header_wrap.transparent_header {
  background: var(--f-white) !important;
}
.main_menu_uppercase { background: transparent !important; }

/* Nav links */
.navbar-nav .nav-link {
  font-weight: 600 !important;
  font-size: 14px !important;
  color: var(--f-text) !important;
  padding: 8px 14px !important;
  border-radius: var(--f-radius-xs) !important;
  transition: var(--f-trans) !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--f-primary) !important;
  background: rgba(79,70,229,0.07) !important;
}
.attr-nav > li > a {
  color: var(--f-text) !important;
  font-size: 18px !important;
  transition: var(--f-trans) !important;
}
.attr-nav > li > a:hover { color: var(--f-primary) !important; }

/* Logo in header */
.navbar-brand img { max-height: 48px !important; }

/* Cart badge */
.cart_count {
  background: var(--f-primary) !important;
  border-radius: 50px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  top: -2px !important;
  right: -4px !important;
}

/* Search */
.search_wrap { background: var(--f-white) !important; box-shadow: var(--f-card-sh) !important; border-radius: var(--f-radius) !important; }
.search_wrap input { border-radius: var(--f-radius) !important; }

/* ===================== HERO / SLIDER ===================== */
.banner_section { border-radius: 0 !important; overflow: hidden; }
.banner_section .carousel-item { min-height: 420px; }

/* Make hero text white and prominent */
.banner_slide_content h2 {
  font-size: clamp(26px, 5vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.banner_slide_content h5 {
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* ===================== TRUST STRIP ===================== */
.fresh-trust-strip {
  background: var(--f-white);
  padding: 20px 0;
  border-bottom: 1px solid var(--f-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.fresh-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}
.fresh-trust-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--f-primary), var(--f-secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  flex-shrink: 0;
}
.fresh-trust-item h6 { margin: 0; font-size: 14px; font-weight: 700; color: var(--f-text); }
.fresh-trust-item p { margin: 0; font-size: 12px; color: var(--f-muted); }

/* ===================== SECTION WRAPPERS ===================== */
.section { background: var(--f-bg) !important; }
.section.bg_white, .section.fresh-bg-white { background: var(--f-white) !important; }

/* Section headings */
.heading_s1 h2, .heading_s4 h2, .heading_s5 h2 {
  font-size: clamp(20px, 3vw, 30px) !important;
  font-weight: 800 !important;
  color: var(--f-text) !important;
}
.heading_s1 h2::after,
.heading_s4 h2::after {
  content: '';
  display: block;
  width: 48px; height: 4px;
  background: var(--f-primary);
  border-radius: 4px;
  margin: 10px auto 0;
}
.heading_s4 .title_color { color: var(--f-primary) !important; }
.leads { color: var(--f-muted) !important; font-size: 14px !important; }

/* ===================== CATEGORY SECTION ===================== */
.cat_overlap {
  background: var(--f-white) !important;
  border-radius: var(--f-radius) !important;
  box-shadow: var(--f-card-sh) !important;
  padding: 28px !important;
  border: none !important;
}
.categories_box a {
  display: block !important;
  border-radius: var(--f-radius) !important;
  background: var(--f-bg) !important;
  padding: 16px 8px !important;
  text-align: center !important;
  transition: var(--f-trans) !important;
  border: 2px solid transparent !important;
  box-shadow: none !important;
  color: var(--f-text) !important;
}
.categories_box a:hover {
  background: var(--f-white) !important;
  border-color: var(--f-primary) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
  color: var(--f-primary) !important;
}
.categories_box img { width: 52px !important; height: 52px !important; object-fit: contain !important; margin-bottom: 8px !important; }
.categories_box span { font-size: 13px !important; font-weight: 600 !important; display: block; }

/* ===================== PRODUCT CARDS ===================== */
.product_box {
  background: var(--f-white) !important;
  border-radius: var(--f-radius) !important;
  box-shadow: var(--f-card-sh) !important;
  border: 1px solid var(--f-border) !important;
  transition: var(--f-trans) !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
}
.product_box:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--f-card-sh-h) !important;
  border-color: var(--f-primary) !important;
}
.product_img {
  overflow: hidden !important;
  background: #f8fafc !important;
}
.product_img img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}
.product_box:hover .product_img img { transform: scale(1.07) !important; }

.product_info { padding: 14px 16px 18px !important; }
.product_title { margin-bottom: 8px !important; }
.product_title a {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--f-text) !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  transition: color 0.2s !important;
}
.product_title a:hover { color: var(--f-primary) !important; }

.product_price .price {
  color: var(--f-primary) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}
.product_price del {
  color: var(--f-muted) !important;
  font-size: 13px !important;
  margin-inline-start: 6px;
}

/* Product labels */
.product_box .label_new {
  background: var(--f-primary) !important;
  border-radius: 50px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 10px !important;
}
.product_box .label_sale {
  background: var(--f-secondary) !important;
  border-radius: 50px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 10px !important;
}

/* ===================== BUTTONS ===================== */
.btn-fill-out {
  background: var(--f-primary) !important;
  border: 2px solid var(--f-primary) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 9px 24px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: var(--f-trans) !important;
  box-shadow: 0 4px 14px rgba(79,70,229,0.25) !important;
  letter-spacing: 0.3px;
}
.btn-fill-out::before, .btn-fill-out::after { display: none !important; }
.btn-fill-out:hover {
  background: transparent !important;
  border-color: var(--f-primary) !important;
  color: var(--f-primary) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

.btn-border-fill {
  background: transparent !important;
  border: 2px solid var(--f-primary) !important;
  color: var(--f-primary) !important;
  border-radius: 50px !important;
  padding: 9px 24px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: var(--f-trans) !important;
}
.btn-border-fill::before, .btn-border-fill::after { display: none !important; }
.btn-border-fill:hover {
  background: var(--f-primary) !important;
  color: #fff !important;
}

/* Add to cart button */
.add-to-cart .btn-fill-out {
  width: 100%;
  padding: 10px 16px !important;
  font-size: 13px !important;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ===================== BANNER SECTION ===================== */
.furniture_banner {
  background: rgba(0,0,0,0.0) !important;
  padding: 60px 0 !important;
}
.single_bn_title {
  color: #fff !important;
  font-size: clamp(22px, 4vw, 42px) !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.single_bn_title1 {
  color: var(--f-secondary) !important;
  font-size: clamp(18px, 3vw, 32px) !important;
  font-weight: 800 !important;
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb_section {
  background: var(--f-white) !important;
  border-bottom: 1px solid var(--f-border) !important;
  padding: 14px 0 !important;
}
.page-title h1 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--f-text) !important;
  margin: 0 !important;
}
.breadcrumb-item a { color: var(--f-primary) !important; font-size: 13px !important; }
.breadcrumb-item.active, .breadcrumb-item + .breadcrumb-item::before {
  color: var(--f-muted) !important;
  font-size: 13px !important;
}

/* ===================== PRODUCT PAGE ===================== */
.product_detail_info { background: var(--f-white) !important; border-radius: var(--f-radius) !important; padding: 28px !important; box-shadow: var(--f-card-sh) !important; }
.product_detail_title { font-size: 22px !important; font-weight: 800 !important; color: var(--f-text) !important; }
.product_gallery { border-radius: var(--f-radius) !important; overflow: hidden !important; }

/* ===================== CART ===================== */
.table_cart thead th { background: var(--f-primary) !important; color: #fff !important; font-size: 13px !important; padding: 14px !important; border: none !important; font-weight: 700 !important; }
.table_cart thead th:first-child { border-radius: 12px 0 0 0 !important; }
.table_cart thead th:last-child { border-radius: 0 12px 0 0 !important; }
.table_cart tbody tr { background: var(--f-white) !important; }
.table_cart tbody td { border-bottom: 1px solid var(--f-border) !important; vertical-align: middle !important; }

/* ===================== CHECKOUT ===================== */
.checkout_form .form-control, .checkout_form select {
  border-radius: var(--f-radius-sm) !important;
  border: 1.5px solid var(--f-border) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  transition: var(--f-trans) !important;
  background: var(--f-white) !important;
}
.checkout_form .form-control:focus, .checkout_form select:focus {
  border-color: var(--f-primary) !important;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1) !important;
  outline: none !important;
}
.checkout_form label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--f-text) !important;
  margin-bottom: 6px !important;
}

/* ===================== ORDER SUMMARY BOX ===================== */
.order_summary {
  background: var(--f-white) !important;
  border-radius: var(--f-radius) !important;
  padding: 24px !important;
  box-shadow: var(--f-card-sh) !important;
  border: 1px solid var(--f-border) !important;
}

/* ===================== SCROLLUP ===================== */
.scrollup {
  background: var(--f-primary) !important;
  border-radius: 50px !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2) !important;
}

/* ===================== FOOTER ===================== */
footer {
  background: #1e293b !important;
  border-top: none !important;
  padding: 40px 0 20px !important;
  margin-top: 0 !important;
}
footer a { color: #94a3b8 !important; transition: color 0.2s !important; }
footer a:hover { color: #fff !important; }
footer p { color: #94a3b8 !important; }
footer .social-icon a {
  width: 38px; height: 38px;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #94a3b8 !important;
  transition: var(--f-trans) !important;
}
footer .social-icon a:hover {
  background: var(--f-primary) !important;
  border-color: var(--f-primary) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
}

/* ===================== MOBILE BOTTOM BAR ===================== */
@media (max-width: 767px) {
  .mobile-bottom-bar {
    background: var(--f-white) !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1) !important;
    border-top: 1px solid var(--f-border) !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    padding: 8px 16px 16px !important;
  }
  .mobile-bottom-bar a { color: var(--f-muted) !important; }
  .mobile-bottom-bar a.active .icon-wrapper {
    background: var(--f-primary) !important;
    color: #fff !important;
  }
  .mobile-bottom-bar a.active { color: var(--f-primary) !important; }
  .mobile-bottom-bar i { font-size: 20px !important; }
  body { padding-bottom: 78px !important; }
}

/* ===================== OWL CAROUSEL ARROWS ===================== */
.owl-nav button {
  background: var(--f-white) !important;
  border: 1px solid var(--f-border) !important;
  border-radius: 50% !important;
  width: 40px !important; height: 40px !important;
  box-shadow: var(--f-card-sh) !important;
  transition: var(--f-trans) !important;
}
.owl-nav button:hover { background: var(--f-primary) !important; border-color: var(--f-primary) !important; color: #fff !important; }
.owl-nav button span { color: var(--f-text) !important; line-height: 1 !important; }
.owl-nav button:hover span { color: #fff !important; }

/* ===================== HOMEPAGE V1 (Default Spark) ===================== */
/* Hero banner for V1 */
.fresh-hero-v1 {
  position: relative;
  min-height: 440px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fresh-hero-v1 .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(79,70,229,0.85) 0%, rgba(236,72,153,0.5) 100%);
}
.fresh-hero-v1 .hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.fresh-hero-v1 .hero-content {
  position: relative; z-index: 2;
  padding: 60px 0;
  color: #fff;
}
.fresh-hero-v1 .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fresh-hero-v1 .hero-title {
  font-size: clamp(28px, 5vw, 54px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.fresh-hero-v1 .hero-subtitle {
  font-size: 16px !important;
  font-weight: 400 !important;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
}
.fresh-hero-v1 .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.fresh-hero-v1 .btn-hero-primary {
  background: #fff !important;
  color: var(--f-primary) !important;
  border: 2px solid #fff !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: var(--f-trans) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}
.fresh-hero-v1 .btn-hero-primary:hover {
  background: var(--f-primary) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
.fresh-hero-v1 .btn-hero-outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: var(--f-trans) !important;
}
.fresh-hero-v1 .btn-hero-outline:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
  transform: translateY(-2px) !important;
}

/* ===================== HOMEPAGE V2 (Bold) ===================== */
.fresh-hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: var(--f-white);
}
.fresh-hero-v2 .hero-text-side {
  background: linear-gradient(160deg, var(--f-primary) 0%, #7c3aed 100%);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.fresh-hero-v2 .hero-img-side {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.fresh-hero-v2 .hero-img-side img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 767px) {
  .fresh-hero-v2 { grid-template-columns: 1fr; }
  .fresh-hero-v2 .hero-text-side { padding: 40px 24px; }
}

/* ===================== HOMEPAGE V3 (Elegant) ===================== */
.fresh-hero-v3 {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center;
  overflow: hidden;
  background: #0f172a;
}
.fresh-hero-v3 .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.fresh-hero-v3 .hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  padding: 80px 0;
  width: 100%;
}
.fresh-hero-v3 .hero-title {
  font-size: clamp(30px, 5vw, 58px) !important;
  font-weight: 900 !important;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.fresh-hero-v3 .hero-line {
  width: 60px; height: 4px;
  background: var(--f-secondary);
  border-radius: 4px;
  margin: 0 auto 20px;
}

/* ===================== SECTION: CATEGORIES (GRID STYLE) ===================== */
.fresh-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}
.fresh-cat-card {
  background: var(--f-white);
  border-radius: var(--f-radius);
  padding: 20px 12px;
  text-align: center;
  transition: var(--f-trans);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: var(--f-card-sh);
}
.fresh-cat-card:hover {
  border-color: var(--f-primary);
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}
.fresh-cat-card img {
  width: 56px; height: 56px; object-fit: contain;
  margin-bottom: 10px; display: block; margin-inline: auto;
}
.fresh-cat-card .cat-name {
  font-size: 13px; font-weight: 600; color: var(--f-text);
  transition: color 0.2s;
}
.fresh-cat-card:hover .cat-name { color: var(--f-primary); }
.fresh-cat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--f-primary) 0%, var(--f-secondary) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px; color: #fff;
}

/* ===================== SECTION: PRODUCT GRID (V1 STYLE) ===================== */
.fresh-products-grid { }
.fresh-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 12px;
}
.fresh-section-title {
  font-size: clamp(20px, 3vw, 28px) !important;
  font-weight: 800 !important;
  color: var(--f-text) !important;
  position: relative;
  padding-bottom: 12px;
}
.fresh-section-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 44px; height: 4px;
  background: var(--f-primary);
  border-radius: 4px;
}
[dir="rtl"] .fresh-section-title::after { left: auto; right: 0; }
.fresh-view-all {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--f-primary) !important;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid var(--f-primary);
  border-radius: 50px;
  transition: var(--f-trans);
}
.fresh-view-all:hover {
  background: var(--f-primary) !important;
  color: #fff !important;
}

/* ===================== PROMO BANNER ===================== */
.fresh-promo-banner {
  border-radius: var(--f-radius) !important;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--f-primary) 0%, #7c3aed 100%);
}
.fresh-promo-banner .promo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.fresh-promo-banner .promo-content {
  position: relative; z-index: 2;
  padding: 40px 48px;
  color: #fff;
}
.fresh-promo-banner h2 { font-size: clamp(22px, 4vw, 36px) !important; font-weight: 900 !important; color: #fff !important; }
.fresh-promo-banner p { color: rgba(255,255,255,0.85) !important; font-size: 15px !important; margin-bottom: 24px; }
.fresh-promo-banner .btn-promo {
  background: #fff !important;
  color: var(--f-primary) !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  border: none !important;
  transition: var(--f-trans) !important;
  display: inline-block;
  font-size: 14px !important;
}
.fresh-promo-banner .btn-promo:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
}

/* ===================== EMPTY STATE ===================== */
.fresh-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--f-muted);
}
.fresh-empty i { font-size: 52px; opacity: 0.3; display: block; margin-bottom: 16px; }
.fresh-empty h4 { font-size: 18px; font-weight: 700; color: var(--f-text); margin-bottom: 8px; }
.fresh-empty p { font-size: 14px; }

/* ===================== UTILITY ===================== */
.fresh-section { padding: 56px 0; }
.fresh-section-sm { padding: 36px 0; }
.fresh-bg-white { background: var(--f-white) !important; }
.fresh-rounded { border-radius: var(--f-radius) !important; }
.text-primary-fresh { color: var(--f-primary) !important; }

/* Divider */
.fresh-divider {
  height: 1px;
  background: var(--f-border);
  margin: 0;
}

/* Smooth scrollup */
.scrollup { bottom: 90px !important; }

/* ===================== FORM INPUTS (Global) ===================== */
.form-control, select.form-control, textarea.form-control {
  border-radius: var(--f-radius-sm) !important;
  border: 1.5px solid var(--f-border) !important;
  padding: 11px 16px !important;
  font-size: 14px !important;
  transition: var(--f-trans) !important;
  background: var(--f-white) !important;
  color: var(--f-text) !important;
}
.form-control:focus {
  border-color: var(--f-primary) !important;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1) !important;
  outline: none !important;
}

/* ===================== ALERTS / NOTIFICATIONS ===================== */
.alert {
  border-radius: var(--f-radius-sm) !important;
  border: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 14px 18px !important;
}
.alert-success { background: #dcfce7 !important; color: #15803d !important; }
.alert-danger  { background: #fee2e2 !important; color: #dc2626 !important; }
.alert-warning { background: #fef9c3 !important; color: #a16207 !important; }
.alert-info    { background: #dbeafe !important; color: #1d4ed8 !important; }

/* ===================== BADGES ===================== */
.badge {
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  padding: 4px 10px !important;
}

/* ===================== MOBILE IMPROVEMENTS ===================== */
@media (max-width: 575px) {
  .fresh-hero-v1 .hero-title { font-size: 28px !important; }
  .product_img img { height: 160px !important; }
  .fresh-section { padding: 36px 0; }
  .cat_overlap { padding: 18px !important; }
  .fresh-promo-banner .promo-content { padding: 28px 20px; }
  .fresh-section-header { flex-direction: column; align-items: flex-start; }
}

/* ===================== RTL FIXES ===================== */
[dir="rtl"] .fresh-hero-v1 .hero-subtitle { margin-right: 0; margin-left: auto; }
[dir="rtl"] .fresh-hero-v2 .hero-text-side { order: 2; }
[dir="rtl"] .fresh-hero-v2 .hero-img-side  { order: 1; }
