  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --green: #1A4731;
    --green-mid: #2A6B4A;
    --green-light: #3D8B5E;
    --cream: #FAF6EE;
    --cream-dark: #F0E8D4;
    --dark: #0D1F17;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow: 0 8px 32px rgba(10, 40, 20, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
  }

  html{
    scroll-behavior: smooth;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text);
    /* padding-bottom: 70px; space for bottom nav on mobile */
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ===== ARABIC PATTERN OVERLAY ===== */
  .pattern-bg {
    background-image: 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='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M30 0l8 8-8 8-8-8zm0 44l8 8-8 8-8-8zm-30-22l8 8-8 8-8-8zm60 0l8 8-8 8-8-8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  /* ===== TOP BAR ===== */
  .top-bar {
    background: var(--green);
    color: var(--gold-light);
    font-size: 12px;
    padding: 6px 0;
    text-align: center;
    letter-spacing: 0.5px;
  }

  /* ===== DESKTOP NAVBAR ===== */
  .main-navbar {
    background: var(--dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  }

  .navbar-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
  }

  .brand-logo-circle {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
  }

  .brand-text-main {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    display: block;
  }

  .brand-text-sub {
    font-family: 'Amiri', serif;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    opacity: 0.85;
  }

  .nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .nav-links-wrap .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 28px 16px !important;
    text-transform: uppercase;
    transition: all 0.2s;
    position: relative;
  }

  .nav-links-wrap .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s;
  }

  .nav-links-wrap .nav-link:hover,
  .nav-links-wrap .nav-link.active {
    color: var(--gold-light) !important;
  }

  .nav-links-wrap .nav-link:hover::after,
  .nav-links-wrap .nav-link.active::after {
    transform: scaleX(1);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-icon-btn {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .nav-icon-btn:hover { color: var(--gold-light); background: rgba(255,255,255,0.07); }

  .cart-badge {
    position: absolute;
    top: 4px; right: 4px;
    background: var(--gold);
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  .nav-search-wrap {
    position: relative;
    margin-left: 8px;
  }

  .nav-search-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,168,76,0.3);
    color: white;
    border-radius: 24px;
    padding: 7px 16px 7px 38px;
    font-size: 13px;
    width: 200px;
    transition: all 0.3s;
    outline: none;
  }

  .nav-search-input::placeholder { color: rgba(255,255,255,0.4); }
  .nav-search-input:focus { width: 240px; border-color: var(--gold); background: rgba(255,255,255,0.12); }

  .nav-search-icon {
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
  }

  /* ===== BOTTOM MOBILE NAV ===== */
  .bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 2000;
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.25);
    padding: 0;
    height: 65px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  }

  .bottom-nav-inner {
    display: flex;
    height: 100%;
  }

  .bnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    padding: 8px 4px;
    position: relative;
  }

  .bnav-item i { font-size: 20px; transition: all 0.2s; }

  .bnav-item.active,
  .bnav-item:hover { color: var(--gold-light); }

  .bnav-item.active i { transform: translateY(-2px); }

  .bnav-item.active::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 2px;
    background: var(--gold);
    border-radius: 0 0 4px 4px;
  }

  .bnav-center-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    text-decoration: none;
    padding: 4px;
  }

  .bnav-center-inner {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dark);
    box-shadow: 0 4px 16px rgba(201,168,76,0.5);
    margin-top: -16px;
    transition: all 0.2s;
  }

  .bnav-center-btn:hover .bnav-center-inner { transform: scale(1.08); }

  .bnav-center-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.3px;
    margin-top: 2px;
  }

  /* ===== HERO SLIDER ===== */
  .hero-slider { position: relative; overflow: hidden; }

  .slide {
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .slide-1 { background: linear-gradient(135deg, #0D1F17 0%, #1A4731 40%, #2A6B4A 100%); }
  .slide-2 { background: linear-gradient(135deg, #1A1200 0%, #3D2A00 40%, #6B4A00 100%); }
  .slide-3 { background: linear-gradient(135deg, #0D1320 0%, #1A2A4A 40%, #2A4070 100%); }

  .slide-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3Cpath d='M40 10 L50 25 L40 15 L30 25zm0 60L50 55L40 65L30 55zm-30-30L25 50L15 40L25 30zm60 0L55 50L65 40L55 30z' opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
  }

  .slide-content { position: relative; z-index: 2; padding: 60px 0; }

  .slide-eyebrow {
    font-family: 'Amiri', serif;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    opacity: 0.9;
  }

  .slide-title {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .slide-title span { color: var(--gold-light); }

  .slide-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
  }

  .btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.45);
    color: var(--dark);
  }

  .btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-left: 12px;
  }

  .btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
  }

  .slide-img-wrap {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .slide-img-wrap .hero-icon {
    font-size: 160px;
    line-height: 1;
    filter: drop-shadow(0 20px 40px rgba(201,168,76,0.4));
    animation: float 3s ease-in-out infinite;
    display: block;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .carousel-indicators [data-bs-target] {
    width: 28px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    border: none;
  }

  .carousel-indicators .active { background: var(--gold); }

  .carousel-control-prev-icon,
  .carousel-control-next-icon { filter: invert(1) brightness(2); }

  /* ===== SECTION TITLES ===== */
  .section-header { text-align: center; margin-bottom: 40px; }

  .section-eyebrow {
    font-family: 'Amiri', serif;
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 12px;
  }

  .section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 12px;
    border-radius: 2px;
  }

  .section-subtitle { color: var(--text-light); font-size: 15px; max-width: 520px; margin: 0 auto; }

  /* ===== CATEGORIES ===== */
  .categories-section {
    padding: 60px 0;
    background: var(--cream);
  }

  .category-card {
    background: white;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(201,168,76,0.15);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .category-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green-light));
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .category-card:hover::before { transform: scaleX(1); }

  .cat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
  }

  .cat-name {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
  }

  .cat-count { color: var(--text-light); font-size: 12px; }

  /* ===== PRODUCTS ===== */
  .products-section {
    padding: 60px 0;
    background: var(--cream-dark);
  }

  .product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.12);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

  .product-img-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 28px 20px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-img-box{
    padding:0px 40px;
  }
  .product-img{
    width: 100%;
  }

  .product-img-wrap .prod-icon {
    font-size: 80px;
    line-height: 1;
    transition: transform 0.3s;
    display: block;
  }

  .product-card:hover .prod-icon { transform: scale(1.08); }

  .product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--green);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
  }

  .product-badge.sale { background: #C0392B; color: white; }
  .product-badge.new { background: var(--gold-dark); color: white; }

  .wishlist-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 34px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.2s;
    border: none;
  }

  .wishlist-btn:hover { color: #C0392B; transform: scale(1.1); }

  .product-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
  }

  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
  }

  .stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
  .rating-count { color: var(--text-light); font-size: 11px; }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--cream-dark);
  }

  .product-price {
    display: flex;
    flex-direction: column;
  }

  .price-current {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
  }

  .price-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
  }

  .add-cart-btn {
    background: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .add-cart-btn:hover {
    background: var(--green-mid);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(26,71,49,0.3);
  }

  /* ===== FEATURES BANNER ===== */
  .features-section {
    padding: 48px 0;
    background: var(--green);
    position: relative;
    overflow: hidden;
  }

  .features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10L50 30L70 30L55 45L60 65L40 52L20 65L25 45L10 30L30 30Z' fill='%23C9A84C'/%3E%3C/svg%3E");
  }

  .feature-item { text-align: center; padding: 16px 12px; position: relative; z-index: 1; }

  .feature-icon {
    font-size: 36px;
    color: var(--gold-light);
    margin-bottom: 12px;
    display: block;
  }

  .feature-title {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .feature-desc { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.5; }

  /* ===== SPECIAL OFFER BANNER ===== */
  .offer-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1A2A1A 50%, var(--green) 100%);
    position: relative;
    overflow: hidden;
  }

  .offer-section::after {
    content: '﷽';
    font-family: 'Amiri', serif;
    position: absolute;
    right: -20px; top: -20px;
    font-size: 200px;
    color: rgba(201,168,76,0.04);
    line-height: 1;
  }

  .offer-badge {
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .offer-title {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .offer-title .gold-text { color: var(--gold-light); }

  .offer-desc { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

  .countdown-wrap { display: flex; gap: 16px; margin-bottom: 32px; }

  .countdown-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    min-width: 68px;
  }

  .countdown-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }

  .countdown-label { color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section {
    padding: 64px 0;
    background: var(--cream);
  }

  .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(201,168,76,0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: rgba(201,168,76,0.1);
    position: absolute;
    top: -10px; left: 16px;
    line-height: 1;
  }

  .testimonial-text {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .testimonial-author { display: flex; align-items: center; gap: 12px; }

  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .author-name { font-weight: 700; color: var(--dark); font-size: 13px; }
  .author-loc { color: var(--text-light); font-size: 12px; }

  /* ===== NEWSLETTER ===== */
  .newsletter-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    position: relative;
    overflow: hidden;
  }

  .newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='%23FFFFFF' fill-opacity='0.08'%3E%3Cpath d='M30 0l8 8-8 8-8-8zm0 44l8 8-8 8-8-8z'/%3E%3C/g%3E%3C/svg%3E");
  }

  .newsletter-content { text-align: center; position: relative; z-index: 1; }

  .newsletter-title {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 12px;
  }

  .newsletter-desc { color: rgba(13,31,23,0.75); font-size: 15px; margin-bottom: 28px; }

  .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }

  .newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 14px;
    outline: none;
    background: white;
  }

  .newsletter-btn {
    background: var(--dark);
    color: var(--gold-light);
    border: none;
    padding: 15px 24px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .newsletter-btn:hover { background: var(--green); }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 64px 0;
    background: var(--cream-dark);
  }

  .contact-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201,168,76,0.15);
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cream-dark);
  }

  .contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

  .contact-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
  }

  .contact-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
  .contact-value { color: var(--dark); font-weight: 600; font-size: 14px; }

  .form-control-custom {
    background: var(--cream);
    border: 1.5px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s;
    width: 100%;
    outline: none;
    font-family: 'Lato', sans-serif;
    resize: none;
  }

  .form-control-custom:focus {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  }

  .form-label-custom {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
    display: block;
  }

  /* ===== FOOTER ===== */
  .main-footer {
    background: var(--dark);
    padding: 60px 0 28px;
    position: relative;
    overflow: hidden;
  }

  .main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold), var(--green-light));
  }

  .footer-brand { margin-bottom: 20px; }

  .footer-desc {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
  }

  .social-links { display: flex; gap: 10px; }

  .social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: all 0.2s;
    text-decoration: none;
    border: 1px solid rgba(201,168,76,0.15);
  }

  .social-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

  .footer-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .footer-links { list-style: none; padding: 0; margin: 0; }

  .footer-links li { margin-bottom: 10px; }

  .footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 16px;
  }

  .footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy { color: rgba(255,255,255,0.4); font-size: 12px; }
  .footer-copy span { color: var(--gold); }

  .payment-icons { display: flex; gap: 8px; align-items: center; }

  .payment-icon {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 4px 8px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 700;
  }

  /* ===== MOBILE MENU TOGGLE ===== */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
  }

  .mobile-menu-btn:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }

  /* ===== FILTER TABS ===== */
  .filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .filter-tab {
    background: white;
    border: 1.5px solid rgba(201,168,76,0.25);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 9px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
  }

  .filter-tab.active,
  .filter-tab:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
  }

  /* ===== TRUST BADGES ===== */
  .trust-section {
    padding: 32px 0;
    background: white;
    border-bottom: 1px solid var(--cream-dark);
  }

  .trust-item { display: flex; align-items: center; gap: 10px; justify-content: center; }
  .trust-icon { font-size: 22px; color: var(--gold); }
  .trust-text { font-size: 13px; font-weight: 600; color: var(--text); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    .nav-links-wrap { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; }
    .nav-search-wrap { display: none; }
  }

  @media (max-width: 767px) {
    body { padding-bottom: 70px; }
    .bottom-nav { display: block; }
    .top-bar { font-size: 11px; padding: 5px 8px; }

    .slide { min-height: 420px; }
    .slide-content { padding: 40px 0 24px; }
    .slide-img-wrap .hero-icon { font-size: 100px; }

    .btn-outline-gold { margin-left: 0; margin-top: 10px; }
    .slide-btns { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }

    .countdown-wrap { gap: 10px; }
    .countdown-box { padding: 10px 12px; min-width: 56px; }
    .countdown-num { font-size: 22px; }

    .newsletter-form { flex-direction: column; border-radius: 12px; }
    .newsletter-input { border-radius: 8px 8px 0 0; }
    .newsletter-btn { border-radius: 0 0 8px 8px; }

    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .features-section .row > div { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .features-section .row > div:last-child { border-bottom: none; }

    .contact-card { padding: 24px 16px; }
  }

  @media (max-width: 480px) {
    .trust-item { gap: 6px; }
    .trust-text { font-size: 11px; }
    .product-name { font-size: 14px; }

    .product-img-wrap {
      padding: 0;
    }
    .product-img-box{
      padding:0px ;
    }
    .btn-gold{
      padding: 6px 14px !important;
      font-size: 10px !important;
    }
    .btn-outline-gold{
        padding: 6px 14px !important;
      font-size: 10px !important;
    }
  }

  /* ===== ANIMATIONS ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== BISMILLAH BANNER ===== */
  .bismillah-banner {
    background: linear-gradient(90deg, var(--green), var(--green-mid), var(--green));
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .bismillah-text {
    font-family: 'Amiri', serif;
    color: var(--gold-light);
    font-size: 18px;
    letter-spacing: 2px;
  }



  /* Whats App button  */

  .whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
  padding: 10px 14px;
  animation: float 3s ease-in-out infinite; 
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Loading css */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #eee;
  border-top: 5px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}