:root {
    --gold:       #c9972c;
    --gold-light: #f0c96a;
    --gold-dim:   #7a5a10;
    --saffron:    #e8770a;
    --deep:       #1a0f00;
    --dark:       #261505;
    --mid:        #3d1f00;
    --cream:      #fdf6e3;
    --warm-white: #fff8ee;
    --text-light: #f5e9cc;
    --text-muted: #c9a96e;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--deep);
    color: var(--text-light);
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .announcement {
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
    color: var(--deep);
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  /* ── HEADER ── */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(22, 10, 0, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gold-dim);
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px;
  }
  .header-inner.img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .logo-block { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
  .logo-icon {
    width: 46px; height: 46px;
    background-color:#1a0800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 18px rgba(109, 78, 9, 0.5);
  }
  .logo-icon img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .logo-text { line-height: 1.15; }
  .logo-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 15px;
    color: var(--gold-light);
    display: block;
    letter-spacing: 0.5px;
  }
  .logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  nav { display: flex; gap: 0; align-items: center; }
  nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 14px;
    transition: color .2s;
    font-weight: 700;
    position: relative;
  }
  nav a:hover { color: var(--gold-light); }
  .nav-dropdown { position: relative; }
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e0f00;
    border: 1px solid var(--gold-dim);
    min-width: 200px;
    z-index: 200;
    padding: 8px 0;
  }
  .dropdown-menu a {
    display: block;
    padding: 9px 20px;
    font-size: 12px;
    border-bottom: none;
  }
  .dropdown-menu a:hover { background: rgba(201,151,44,0.1); color: var(--gold-light); }

  
  .cart-btn {
    background: var(--gold);
    color: var(--deep);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background .2s;
    display: flex; align-items: center; gap: 6px;
    text-decoration: none;
  }
  .cart-btn:hover { background: var(--gold-light); }

  /* ── HERO ── */
  .hero {
    
    position: relative;
    min-height: 90vh;
    display: flex; align-items: center;
    overflow: hidden;
     background-image: url(/images/MainBG.JPG);
     
    background: radial-gradient(ellipse at 60% 40%, #3d1a00 0%, #1a0800 60%, #0d0500 100%);
  }
  .hero-smoke {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 60% 90% at 75% 50%, rgba(201,151,44,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 30% 50% at 55% 30%, rgba(232,119,10,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-pattern {
    position: absolute; inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
      0deg, transparent, transparent 34px, rgba(201,151,44,0.5) 35px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 34px, rgba(201,151,44,0.5) 35px
    );
  }
  .smoke-line {
    position: absolute;
    bottom: 0;
    width: 2px;
    border-radius: 2px;
    animation: rise 6s ease-in-out infinite;
    opacity: 0;
  }
  .smoke-line:nth-child(1) { left: 25%; height: 300px; background: linear-gradient(to top, rgba(201,151,44,0.3), transparent); animation-delay: 0s; }
  .smoke-line:nth-child(2) { left: 45%; height: 220px; background: linear-gradient(to top, rgba(232,119,10,0.2), transparent); animation-delay: 2s; }
  .smoke-line:nth-child(3) { left: 60%; height: 260px; background: linear-gradient(to top, rgba(201,151,44,0.25), transparent); animation-delay: 4s; }
  @keyframes rise {
    0%   { opacity: 0; transform: translateY(0) scaleX(1); }
    20%  { opacity: 0.8; }
    80%  { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100px) scaleX(2.5); }
  }

  .hero-content {
  
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    
  }
  .hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 24px;
    font-weight: 700;
  }
  .hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.2;
    color: var(--gold-light);
    margin-bottom: 8px;
  }
  .hero-title span { color: var(--saffron); }
  .hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(13px, 1.5vw, 17px);
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.85;
    max-width: 480px;
    margin-bottom: 36px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: var(--deep);
    border: none;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(201,151,44,0.4);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,151,44,0.5); }
  .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, color .2s;
  }
  .btn-outline:hover { background: rgba(201,151,44,0.12); }

  .hero-visual {
     
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-mandala {
    width: 380px; height: 380px;
    border: 2px solid rgba(201,151,44,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: rotateSlow 40s linear infinite;
  }
  .hero-mandala::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201,151,44,0.15);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite reverse;
  }
  .hero-mandala::after {
    content: '';
    position: absolute;
    inset: 50px;
    border: 1.5px solid rgba(232,119,10,0.2);
    border-radius: 50%;
  }
  /* @keyframes rotateSlow { to { transform: rotate(360deg); } } */
  .mandala-center {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,151,44,0.15), rgba(61,31,0,0.6));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    box-shadow: 0 0 60px rgba(201,151,44,0.3), inset 0 0 30px rgba(201,151,44,0.1);
    animation: glow 3s ease-in-out infinite alternate;
  }
  img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  @keyframes glow {
    from { box-shadow: 0 0 40px rgba(201,151,44,0.25); }
    to   { box-shadow: 0 0 80px rgba(201,151,44,0.55); }
  }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--mid);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
  }
  .trust-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 16px 24px;
    display: flex; justify-content: center; gap: 60px;
    flex-wrap: wrap;
  }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.5px; }
  .trust-item span:first-child { font-size: 20px; }
  .trust-item strong { color: var(--gold-light); font-family: 'Cinzel', serif; }

  /* ── SECTIONS ── */
  section { padding: 80px 24px; }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 50px; }
  .section-eyebrow {
    font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--saffron); font-weight: 700; margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(22px, 3vw, 34px);
    color: var(--gold-light);
    margin-bottom: 14px;
    line-height: 1.3;
  }
  .section-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
  }
  .divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
  }

  /* ── CATEGORIES ── */
  .categories { background: #1e0d00; }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .cat-card {
    background: linear-gradient(145deg, #2a1200, #1a0900);
    border: 1px solid rgba(201,151,44,0.2);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    display: block;
  }
  .cat-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201,151,44,0.2);
  }
  .cat-icon { font-size: 38px; margin-bottom: 14px; display: block; }
  .cat-name {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .cat-count { font-size: 12px; color: var(--text-muted); }

  /* ── PRODUCTS ── */
  .products { background: var(--deep); }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .product-card {
    background: linear-gradient(160deg, #271200, #1a0900);
    border: 1px solid rgba(201,151,44,0.18);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(201,151,44,0.18);
  }
  .product-img {
    height: 220px;
    background: linear-gradient(135deg, #3d1a00, #261000);
    display: flex; align-items: center; justify-content: center;
    font-size: 70px;
    position: relative;
    overflow: hidden;
  }
  .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
 
  .product-img::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(201,151,44,0.08), transparent 70%);
  }
  .badge-sale {
    position: absolute; top: 12px; left: 12px;
    background: var(--saffron);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    z-index: 2;
  }
  .product-body { padding: 18px; }
  .product-name {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .product-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
  .product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
  .price-current { font-family: 'Cinzel', serif; font-size: 16px; color: var(--gold); font-weight: 600; }
  .price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
  .btn-add {
    width: 100%;
    background: rgba(201,151,44,0.15);
    border: 1px solid var(--gold-dim);
    color: var(--gold);
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background .2s, color .2s;
    font-family: 'Lato', sans-serif;
  }
  .btn-add:hover { background: var(--gold); color: var(--deep); }

  /* ── BANNER ── */
  .banner {
    background: linear-gradient(135deg, #3d1800 0%, #1a0800 50%, #2a1000 100%);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
  }
  .banner-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 70px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .banner-img {
    height: 280px;
    background: radial-gradient(circle at 50% 50%, rgba(201,151,44,0.12), #1a0a00);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 100px;
    border: 1px solid rgba(201,151,44,0.2);
  }
  .banner-img img{
    height: 100%;
    width: 100%;
    
    object-fit:contain;
  }
  .banner-content .eyebrow { font-size: 11px; letter-spacing: 3px; color: var(--saffron); text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
  .banner-content h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--gold-light);
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .banner-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }

  /* ── WHY US ── */
  .why { background: #1e0d00; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .why-card {
    padding: 36px 28px;
    border: 1px solid rgba(201,151,44,0.15);
    border-radius: 8px;
    text-align: center;
    background: linear-gradient(145deg, #2a1200, #1a0900);
    transition: border-color .25s;
  }
  .why-card:hover { border-color: var(--gold); }
  .why-icon { font-size: 44px; margin-bottom: 18px; display: block; }
  .why-title {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--gold-light);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  .why-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--deep); }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testi-card {
    background: linear-gradient(145deg, #2a1200, #1a0800);
    border: 1px solid rgba(201,151,44,0.15);
    border-radius: 8px;
    padding: 28px 24px;
  }
  .stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-text { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 18px; opacity: 0.9; font-style: italic; }
  .testi-author { font-family: 'Cinzel', serif; font-size: 13px; color: var(--gold); letter-spacing: 0.5px; }
  .testi-location { font-size: 11px; color: var(--text-muted); margin-top: 3px; letter-spacing: 1px; }

  /* ── NEWSLETTER ── */
  .newsletter {
    background: linear-gradient(135deg, #2a1000, #1a0800, #2a1000);
    border-top: 1px solid var(--gold-dim);
  }
  .newsletter-inner {
    max-width: 600px; margin: 0 auto;
    text-align: center;
  }
  .newsletter h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--gold-light);
    margin-bottom: 10px;
  }
  .newsletter p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
  .email-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }
  .email-form input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid var(--gold-dim);
    border-right: none;
    padding: 13px 16px;
    color: var(--text-light);
    font-size: 14px;
    outline: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Lato', sans-serif;
  }
  .email-form input::placeholder { color: var(--text-muted); }
  .email-form button {
    background: var(--gold);
    color: var(--deep);
    border: none;
    padding: 13px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-family: 'Lato', sans-serif;
    transition: background .2s;
  }
  .email-form button:hover { background: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: #0f0600;
    border-top: 1px solid var(--gold-dim);
    padding: 60px 24px 24px;
  }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201,151,44,0.15);
    margin-bottom: 30px;
  }
  .footer-brand .logo-block { margin-bottom: 16px; }
  .footer-brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 36px; height: 36px;
    border: 1px solid var(--gold-dim);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: background .2s, border-color .2s;
  }
  .social-link:hover { background: rgba(201,151,44,0.15); border-color: var(--gold); }
  .footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; color: var(--text-muted); align-items: flex-start; }
  .contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 12px; color: var(--text-muted);
  }
  .footer-bottom a { color: var(--text-muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--gold); }
  .payment-icons { display: flex; gap: 8px; align-items: center; }
  .pay-icon {
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 3px 8px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
  }

  /* ── MOBILE RESPONSIVE ── */
  .hamburger { display: none; background: none; border: none; color: var(--gold); font-size: 22px; cursor: pointer; }
  @media (max-width: 1024px) {
    .cat-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    nav { display: none; }
    .hamburger { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-visual { display: none; }
    .hero-ctas { justify-content: center; }
    .banner-inner { grid-template-columns: 1fr; }
    .banner-img { display: none; }
    .why-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-inner { gap: 24px; }
    .search-bar { display: none; }
  }
  @media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .email-form { flex-direction: column; }
    .email-form input, .email-form button { border-radius: 4px; border: 1.5px solid var(--gold-dim); }
  }
