html, body {
    scroll-behavior: smooth;
}

    
    :root {
      --gold: #D4AF37;
      --gold-dark: #B8962A;
      --gold-light: #F0D060;
      --black: #111111;
      --cream: #FAF6EF;
      --white: #ffffff;
      --text-dark: #1a1a1a;
      --text-muted: #666;
      --border: rgba(212,175,55,0.25);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

    /* ── NAVBAR ── */
    nav {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgb(160, 26, 26) !important;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 90px;
      transition: all .3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      height:50px;
    }

    .nav-logo-icon {
      width: 44px; 
      height: 100px;
      /* background: linear-gradient(135deg, var(--gold), var(--gold-dark)); */
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 40px;
    }

    .nav-logo-text { color: var(--white); }
    .nav-logo-text span { display: block; }
    .nav-logo-text .brand { font-family: 'Cormorant Garamond', serif; font-size: 35px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
    .nav-logo-text .tagline { font-size: 12px; color: white; letter-spacing: 2px; text-transform: uppercase; }

    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 500;
      transition: color .3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    .nav-wa {
      background: #25D366;
      color: white;
      padding: 9px 9px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      display: flex; align-items: center; gap: 7px;
      transition: transform .2s, box-shadow .2s;
      height: 50px;
      width:150px;
    }
    .nav-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all .3s; }

    /* ── HERO ── */
    #home{
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding:0;
    margin:0;
    min-height:auto;
}

    .hero-bg {
      position: absolute; inset: 0;
      background: 
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(212,175,55,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,175,55,0.07) 0%, transparent 60%);
    }

    .hero-pattern {
      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='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: .5;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 8% 80px;
      max-width: 700px;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,175,55,0.12);
      border: 1px solid rgba(212,175,55,0.3);
      color: var(--gold);
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp .8s ease forwards;
    }

    .hero h1 {
      font-size: clamp(48px, 7vw, 88px);
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 12px;
      animation: fadeUp .8s .15s ease both;
    }
    .hero h1 em { color: var(--gold); font-style: italic; }

    .hero-sub {
      font-size: 17px;
      color: #aaa;
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 500px;
      animation: fadeUp .8s .3s ease both;
    }

    .hero-btns {
      display: flex; gap: 16px; flex-wrap: wrap;
      animation: fadeUp .8s .45s ease both;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--black);
      padding: 14px 32px;
      border: none;
      border-radius: 4px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: transform .25s, box-shadow .25s;
    }
    .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,175,55,.4); }

    .btn-outline {
      background: transparent;
      color: var(--gold);
      padding: 14px 32px;
      border: 1.5px solid var(--gold);
      border-radius: 4px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .25s;
    }
    .btn-outline:hover { background: rgba(212,175,55,.1); }

    .hero-floats {
      position: absolute;
      right: 6%; top: 50%;
      transform: translateY(-50%);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      animation: fadeIn 1.2s .5s ease both;
    }

    .hero-float-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(212,175,55,0.2);
      border-radius: 12px;
      padding: 20px 16px;
      text-align: center;
      backdrop-filter: blur(8px);
      min-width: 120px;
    }
    .hero-float-card .icon { font-size: 28px; margin-bottom: 8px; }
    .hero-float-card .val { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold); font-weight: 700; }
    .hero-float-card .lbl { font-size: 11px; color: #999; letter-spacing: 1px; }

    .hero-scroll {
      position: absolute;
      bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: #666; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      animation: bounce 2s infinite;
    }

    /* ── SECTION HEADERS ── */
    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-badge {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--gold);
      font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
      margin-bottom: 14px;
      
    }
    .section-badge::before, .section-badge::after {
      content: '';
      display: block;
      width: 36px; height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-size: clamp(32px, 4vw, 52px);
      color: var(--black);
      line-height: 1.2;
    }
    .section-title span { color: black; }
    .section-desc {
      color: var(--text-muted);
      font-size: 16px;
      margin-top: 14px;
      max-width: 520px;
      margin-left: auto; 
      margin-right: auto;
      line-height: 1.7;
    }

    /* ── ABOUT ── */
    
    #about {
      padding: 100px 8%;
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-box {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      border-radius: 16px;
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      
    }
    .about-img-box::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.15) 0%, transparent 60%);
    }
    .about-img-box .big-leaf { font-size: 120px; opacity: .15; position: absolute; bottom: -20px; right: -20px; }
    .about-img-box .herb-icon { font-size: 72px; position: relative; z-index: 1; }
    .about-img-box .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      color: var(--gold);
      margin-top: 16px;
      position: relative; z-index: 1;
    }
    .about-img-box .est {
      color: #aaa; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
      position: relative; z-index: 1;
    }

    .about-badge-row {
      display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap;
    }
    .about-badge {
      background: rgba(212,175,55,.1);
      border: 1px solid var(--border);
      color: var(--gold-dark);
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 12px; font-weight: 600;
    }

    .about-text h2 { font-size: 42px; line-height: 1.2; margin-bottom: 20px; }
    .about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; font-size: 15px; }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 28px;
    }
    .about-feature {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 16px;
      background: var(--cream);
      border-radius: 10px;
      border: 1px solid var(--border);
    }
    .about-feature .ico {
      width: 38px; height: 38px; min-width: 38px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--black); font-size: 16px;
    }
    .about-feature h4 { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
    .about-feature p { font-size: 12px; color: var(--text-muted); margin: 0; }

    /* ── VISION MISSION ── */
    #vision {
      padding: 40px 8%;
      background: rgb(160, 26, 26) !important;
      position: relative;
      overflow: hidden;
    }
    #vision::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212,175,55,.06) 0%, transparent 70%);
    }

    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      position: relative; z-index: 1;
    }

    .vm-card {
      /* background: #9F3030; */
      background:rgb(118 85 91);
      border: 1px solid rgba(212,175,55,0.2);
      border-radius: 16px;
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: transform .3s, border-color .3s;
    }
    .vm-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.5); }
    .vm-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    }

    .vm-icon {
      font-size: 48px;
      margin-bottom: 20px;
    }
    .vm-label {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .vm-card h3 {
      font-size: 30px;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .vm-card p {
      color: #cbc0c0 !important;
      font-size: 15px;
      line-height: 1.8;
    }

    /* ── PRODUCTS ── */
    #products {
      padding: 100px 8%;
      background: var(--cream);
    }

    .category-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 48px;
    }

    .cat-tab {
      padding: 9px 22px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: rgb(153, 24, 24);
      border-radius: 50px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all .25s;
      letter-spacing: .5px;
    }
    .cat-tab:hover, .cat-tab.active {
      background: rgb(153, 24, 24);
      border-color: var(--gold);
      color: white;
      font-weight: 700;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .product-card {
      background: var(--white);
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s;
      position: relative;
    }
    .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(212,175,55,.15); }

    .product-img {
      height: 200px;
      background: linear-gradient(135deg, white);
      display: flex; align-items: center; justify-content: center;
      font-size: 64px;
      position: relative;
      overflow: hidden;
    }
    .product-img::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.12) 0%, transparent 60%);
    }

    .product-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--black);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      letter-spacing: .5px;
      z-index: 2;
    }

    .product-body { padding: 20px; background: linear-gradient(135deg, rgb(156, 33, 33), rgb(160, 26, 26))}
    .product-category { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
    .product-name { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: white; }
    .product-desc { font-size: 13px; color: white; line-height: 1.6; margin-bottom: 14px; }

    .product-prices {
      display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
    }
    .price-original { font-size: 13px; color: #aaa; text-decoration: line-through; }
    .price-offer { font-size: 22px; font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--gold-dark); }
    .price-save {
      background: #a7aca8;
      color: #2e7d32;
      font-size: 11px; font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
    }

    .product-offer-date { font-size: 11px; color: #aaa; margin-bottom: 14px; }
    .product-offer-date i { margin-right: 4px; }

    .btn-view {
      width: 100%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--black);
      border: none;
      padding: 11px;
      border-radius: 6px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
    }
    .btn-view:hover { box-shadow: 0 6px 20px rgba(212,175,55,.4); transform: translateY(-1px); }

    /* product modal */
    .modal-overlay{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100vh;

        background:rgba(0,0,0,.7);

        display:none;
        justify-content:center;
        align-items:center;

        overflow-y:auto;
        padding:20px;

        z-index:9999;
    }
    .modal-overlay.open { display: flex; }

    .modal-box{
    width:90%;
    max-width:700px;
    max-height:90vh;
    background:#111;
    color:#fff;
    border-radius:15px;
    border:1px solid #D4AF37;

    display:flex;
    flex-direction:column;

    overflow:hidden;
}

    .modal-header {
      background: var(--black);
      padding: 32px;
      display: flex; align-items: flex-start; justify-content: space-between;
      gap: 16px;
    }
    .modal-icon { font-size: 56px; }
    .modal-header h3 { font-size: 28px; color: var(--white); }
    .modal-header .cat { color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
    .modal-close {
      background: rgba(255,255,255,.1);
      border: none; color: white;
      width: 36px; height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      flex-shrink: 0;
      transition: background .2s;
    }
    .modal-close:hover { background: rgba(255,255,255,.2); }
    .modal-body{
        flex:1;
        overflow-y:auto;
        padding:25px;
    }
    .modal-prices { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
    .modal-prices .offer { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--gold-dark); font-weight: 700; }
    .modal-prices .orig { font-size: 18px; color: #aaa; text-decoration: line-through; }
    .modal-section-title { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; margin-top: 16px; }
    .modal-desc { color: white; font-size: 14px; line-height: 1.7; }
    .modal-ingredients { display: flex; flex-wrap: wrap; gap: 8px; }
    .ingredient-tag {
      background: var(--cream);
      border: 1px solid var(--border);
      color: var(--text-dark);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: 12px;
    }
    .modal-footer {
      padding: 20px 28px;
      border-top: 1px solid var(--border);
      display: flex; gap: 12px;
    }
    .btn-order {
      flex: 1;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--black);
      border: none;
      padding: 13px;
      border-radius: 6px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all .25s;
    }
    .btn-order:hover { box-shadow: 0 6px 20px rgba(212,175,55,.4); }

    .btn-wa {
      background: #25D366;
      color: white;
      border: none;
      padding: 13px 20px;
      border-radius: 6px;
      font-size: 18px;
      cursor: pointer;
      transition: all .25s;
    }
    .btn-wa:hover { background: #1eba5a; }

    /* ── SPECIAL OFFERS ── */
    #offers {
      padding: 80px 8%;
      background: rgb(160, 26, 26) !important;
      position: relative;
      overflow: hidden;
    }

    .offer-banner {
      background: linear-gradient(135deg, #1c1500, #2d2000);
      border: 1px solid rgba(212,175,55,.3);
      border-radius: 20px;
      padding: 56px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }
    .offer-banner::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 100% at 0% 50%, rgba(212,175,55,.15) 0%, transparent 60%);
    }

    .offer-left { position: relative; z-index: 1; }
    .offer-label {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      padding: 5px 14px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .offer-left h2 { font-size: clamp(28px, 3.5vw, 48px); color: var(--white); line-height: 1.2; margin-bottom: 12px; }
    .offer-left p { color: #aaa; font-size: 15px; line-height: 1.7; max-width: 420px; }
    .offer-left .btn-gold { margin-top: 24px; }

    .offer-right { position: relative; z-index: 1; text-align: center; flex-shrink: 0; }
    .offer-circle {
      width: 160px; height: 160px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      animation: spin-slow 12s linear infinite;
    }
    .offer-circle .pct { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--black); line-height: 1; }
    .offer-circle .off { font-size: 13px; font-weight: 700; color: var(--black); letter-spacing: 1px; }

    /* ── FEEDBACK ── */
    #feedback {
      padding: 100px 8%;
      background: var(--white);
    }

    .feedback-track-wrap {
      overflow: hidden;
      position: relative;
    }
    .feedback-track-wrap::before, .feedback-track-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
    }
    .feedback-track-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
    .feedback-track-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }

    .feedback-track {
      display: flex;
      gap: 24px;
      animation: scroll-x 30s linear infinite;
      width: max-content;
    }
    .feedback-track:hover { animation-play-state: paused; }

    .feedback-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 24px;
      width: 300px;
      flex-shrink: 0;
      position: relative;
    }
    .feedback-card::before {
      content: '"';
      position: absolute;
      top: 12px; left: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 72px;
      color: var(--gold);
      opacity: .3;
      line-height: 1;
    }

    .stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
    .feedback-text { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 16px; position: relative; z-index: 1; }
    .feedback-author { display: flex; align-items: center; gap: 10px; }
    .author-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      display: flex; align-items: center; justify-content: center;
      color: var(--black);
      font-weight: 700; font-size: 14px;
    }
    .author-name { font-weight: 600; font-size: 14px; }
    .author-loc { font-size: 12px; color: #aaa; }

    /* ==========================
   FEEDBACK SECTION
========================== */

#feedback{
    padding:80px 5%;
    overflow:hidden;
    background:white;
}

#feedback .section-badge{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:10px;
}

#feedback .section-title{
    text-align:center;
    margin-bottom:40px;
}

.feedback-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scrollFeedback 30s linear infinite;
}

.feedback-card{
    width:350px;
    min-width:350px;
    background:#1a1a1a;
    border:1px solid rgba(212,175,55,.3);
    border-radius:15px;
    padding:25px;
    transition:.3s;
}

.feedback-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(212,175,55,.25);
}

.stars{
    color:#D4AF37;
    font-size:18px;
    margin-bottom:15px;
}

.feedback-text{
    color:#ddd;
    line-height:1.8;
    font-size:14px;
    min-height:90px;
}

.feedback-author{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

.author-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#D4AF37;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.author-name{
    color:#fff;
    font-weight:600;
}

.author-loc{
    color:#aaa;
    font-size:13px;
}

/* Auto Scroll */
@keyframes scrollFeedback{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .feedback-card{
        width:300px;
        min-width:300px;
    }

    .feedback-text{
        min-height:auto;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    #feedback{
        padding:60px 15px;
    }

    .feedback-card{
        width:260px;
        min-width:260px;
        padding:18px;
    }

    .feedback-text{
        font-size:13px;
    }

    .author-avatar{
        width:45px;
        height:45px;
        font-size:16px;
    }

    .feedback-track{
        animation:scrollFeedback 20s linear infinite;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .feedback-card{
        width:220px;
        min-width:220px;
        padding:15px;
    }

    .stars{
        font-size:16px;
    }

    .feedback-text{
        font-size:12px;
        line-height:1.6;
    }

    .author-name{
        font-size:13px;
    }

    .author-loc{
        font-size:11px;
    }

    .feedback-track{
        gap:12px;
    }
}

    /* ── GALLERY ── */
    #gallery {
      padding: 100px 8%;
      background: var(--cream);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 16px;
    }

    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--black);
    }
    .gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }

    .gallery-inner {
      height: 100%;
      min-height: 200px;
      display: flex; align-items: center; justify-content: center;
      font-size: 56px;
      background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
      transition: transform .4s;
      padding: 40px;
    }
    .gallery-item:first-child .gallery-inner { min-height: 360px; font-size: 80px; }
    .gallery-item:hover .gallery-inner { transform: scale(1.05); }

    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
      display: flex; align-items: flex-end;
      padding: 20px;
      opacity: 0;
      transition: opacity .3s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span { color: var(--white); font-size: 14px; font-weight: 600; }

    .gallery-video-badge {
      position: absolute;
      top: 12px; right: 12px;
      background: rgba(212,175,55,.9);
      color: var(--black);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 1px;
    }

    /* ── ORDER / CONTACT ── */
    #contact {
      padding: 50px 8%;
      background: rgb(160, 26, 26) !important;
      position: relative;
      overflow: hidden;
    }
    #contact::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212,175,55,.05) 0%, transparent 70%);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
      position: relative; z-index: 1;
    }

    .contact-info h2 { font-size: 42px; color: var(--white); margin-bottom: 16px; }
    .contact-info p { color: #dad3d3; font-size: 15px; line-height: 1.8; margin-bottom: 32px; }

    .contact-detail {
      display: flex; align-items: flex-start; gap: 14px;
      margin-bottom: 20px;
    }
    .contact-detail .ico {
      width: 44px; height: 44px; min-width: 44px;
      background: rgba(212,175,55,.1);
      border: 1px solid rgba(212,175,55,.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 17px;
    }
    .contact-detail .info strong { display: block; color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 2px; }
    .contact-detail .info span { color: #999; font-size: 13px; line-height: 1.5; }

    .contact-form {
      background: rgba(209, 34, 34, 0.04);
      border: 1px solid rgba(212,175,55,.15);
      border-radius: 16px;
      padding: 40px;
    }
    .contact-form h3 { font-size: 26px; color: var(--white); margin-bottom: 24px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
    
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--gold);
    }
    .form-group select option { background: #222; }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--black);
      border: none;
      padding: 15px;
      border-radius: 8px;
      font-family: 'Jost', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-submit:hover { box-shadow: 0 8px 28px rgba(212,175,55,.4); transform: translateY(-2px); }

    .form-success {
      display: none;
      text-align: center;
      padding: 20px;
    }
    .form-success.show { display: block; }
    .form-success .icon { font-size: 48px; margin-bottom: 12px; }
    .form-success p { color: #aaa; }
    .form-success strong { color: var(--gold); font-size: 20px; font-family: 'Cormorant Garamond', serif; display: block; margin-bottom: 6px; }

    /* ── SOCIAL ── */
    #social {
      padding: 60px 8%;
      background: var(--cream);
      text-align: center;
    }
    .social-title { font-size: clamp(22px, 3vw, 36px); margin-bottom: 8px; }
    .social-sub { color: var(--text-muted); margin-bottom: 36px; font-size: 15px; }

    .social-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

    .social-btn {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 28px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: transform .25s, box-shadow .25s;
    }
    .social-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
    .social-btn i { font-size: 20px; }

    .soc-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
    .soc-wa { background: #25D366; color: white; }
    .soc-yt { background: #FF0000; color: white; }
    .soc-mail { background: var(--black); color: var(--gold); border: 1px solid var(--border); }

   
    /* ── MOBILE NAV ── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 5px; left: 0; right: 0; bottom: 0;
      background: rgba(17,17,17,.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: var(--white); text-decoration: none; font-size: 24px; font-family: 'Cormorant Garamond', serif; transition: color .2s; }
    .mobile-menu a:hover { color: var(--gold); }

    /* ── SCROLL TO TOP ── */
    .scroll-top {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--black);
      border: none; border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: none;
      align-items: center; justify-content: center;
      z-index: 999;
      box-shadow: 0 4px 16px rgba(212,175,55,.4);
      transition: transform .25s;
    }
    .scroll-top.visible { display: flex; }
    .scroll-top:hover { transform: translateY(-3px); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }
    @keyframes scroll-x {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes popIn {
      from { opacity: 0; transform: scale(.9); }
      to   { opacity: 1; transform: scale(1); }
    }

    .fade-in-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-in-up.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-wa { display: none; }
      .hamburger { display: flex; }

      .hero-floats { display: none; }
      .hero-content { padding: 120px 6% 80px; }

      .about-grid, .vm-grid, .contact-grid { grid-template-columns: 1fr; }
      .about-img-wrap { order: -1; }

      .products-grid { grid-template-columns: repeat(2, 1fr); }

      .offer-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
      .offer-left p { margin: 0 auto; }

      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:first-child { grid-column: 1 / -1; }

      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }

      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .products-grid { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: 1; }
    }

    /* ====================logo================= */
    .nav-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
/* 
.nav-logo-icon img{
    width:60px;
    height:60px;
    object-fit:contain;
} */

.brand{
    display:block;
    font-size:22px;
    font-weight:700;
    color:#D4AF37;
}

.tagline{
    display:block;
    font-size:12px;
    color:#ffffff;
}
  
/* =========================
   TABLET
========================= */
@media (max-width:992px){

    .navbar{
        padding:15px 20px;
    }

    .nav-links{
        gap:15px;
    }

    .section-title{
        font-size:32px;
    }

    .contact-grid,
    .about-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .products-grid,
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .logo{
        text-align:center;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:15px;
    }

    .section-title{
        font-size:28px;
    }

    .section-desc{
        font-size:14px;
    }

    .products-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:20px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .social-links{
        flex-direction:column;
        align-items:center;
    }

    .social-btn{
        width:90%;
        justify-content:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }

    .gallery-filter{
        flex-wrap:wrap;
    }

    .gallery-btn{
        width:140px;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width:480px){

    .hero-content h1{
        font-size:26px;
    }

    .section-title{
        font-size:24px;
    }

    .btn-gold,
    .btn-submit{
        width:100%;
    }

    .contact-form,
    .feedback-card,
    .product-card{
        padding:15px;
    }

    .gallery-item img,
    .gallery-item video{
        height:220px;
    }
}


/* ///compress image=================== */
img{
    max-width:100%;
    display:block;
}

/* Card Images */
.image-box img,
.product-img img,
.gallery-item img,
.about img,
.hero img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

.site-img{
    width:100%;
    height:250px;
    object-fit:cover;
    object-position:center;
    border-radius:10px;
    display:block;
}
.hero img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.product-img img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.gallery-item img,
.gallery-item video{
    width:100%;
    height:250px;
    object-fit:cover;
}
.about img{
    width:100%;
    height:400px;
    object-fit:cover;
}
.gallery-item img,
.gallery-item video{
    width:100%;
    height:250px;
    object-fit:cover;
}
.about img{
    width:100%;
    height:400px;
    object-fit:cover;
}