:root {
    --tiger: #FF5A1F;
    --burnt: #E10600;
    --gold: #FFC83D;
    --onyx: #111111;
    --offwhite: #F5F1E8;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--onyx);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ======= FLAME BACKGROUND ======= */
  .flame-bg {
    position: relative;
    overflow: hidden;
    background: #0d0000;
  }

  .flame-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .flame-bg > *:not(.flame-canvas) {
    position: relative;
    z-index: 2;
  }

  /* ======= NAV ======= */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: rgba(17,17,17,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,90,31,0.15);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    color: var(--white);
  }

  .nav-logo span { color: var(--tiger); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--tiger); }

  .cart-btn {
    background: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    position: relative;
  }

  .cart-btn:hover { border-color: var(--tiger); color: var(--tiger); }

  .cart-count {
    background: var(--burnt);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.2s;
  }

  .cart-count.bump { animation: bump 0.3s ease; }
  @keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

  /* ======= HERO ======= */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    gap: 60px;
  }

  .hero-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tiger);
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 8vw, 100px);
    line-height: 0.95;
    margin-bottom: 28px;
  }

  .hero-title .heat { color: var(--tiger); }

  .hero-body {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 420px;
    margin-bottom: 40px;
  }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--tiger);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--burnt); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--white); }

  .hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-image-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--tiger);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    overflow: hidden;
  }

  .hero-image-circle img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  /* ======= ABOUT ======= */
  #about {
    background: var(--offwhite);
    color: var(--onyx);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    align-items: center;
  }

  .about-image {
    background: #ddd;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: #888;
    overflow: hidden;
  }

  .about-image img { width: 100%; height: 100%; object-fit: cover; }

  .about-content { padding: 80px 72px; }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--tiger);
    margin-bottom: 18px;
  }

  .about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    margin-bottom: 28px;
    color: var(--onyx);
  }

  .about-title .highlight { color: var(--burnt); }

  .about-body {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 36px;
  }

  .btn-dark {
    background: var(--onyx);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
  }

  .btn-dark:hover { background: #333; transform: translateY(-2px); }

  /* ======= PRODUCTS ======= */
  #products {
    padding: 100px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #0d0000;
  }

  .products-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 60px;
    line-height: 1;
  }

  .products-title .fresh { color: var(--tiger); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    text-align: left;
  }

  .product-card:hover { transform: translateY(-6px); border-color: rgba(255,90,31,0.4); }

  .product-img {
    width: 100%;
    height: 200px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .product-img img { width: 100%; height: 100%; object-fit: cover; }

  .product-info { padding: 20px 20px 24px; }

  .product-flavor {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tiger);
    margin-bottom: 6px;
  }

  .product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .product-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
  }

  .add-to-cart-btn {
    background: var(--tiger);
    color: #fff;
    border: none;
    padding: 9px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s;
  }

  .add-to-cart-btn:hover { background: var(--burnt); transform: scale(1.04); }
  .add-to-cart-btn:active { transform: scale(0.97); }

  /* ======= BEHIND THE SCENES ======= */
  #bts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 75vh;
    align-items: center;
    padding: 100px 80px;
    gap: 80px;
  }

  .bts-content {}
  .bts-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 80px);
    line-height: 1;
    margin-bottom: 28px;
  }

  .bts-title .heart { color: var(--tiger); }

  .bts-body {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 440px;
  }

  .video-placeholder {
    background: #1c1c1c;
    border-radius: 16px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: #555;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
  }

  .video-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }

  /* ======= TESTIMONIALS ======= */
  #testimonials {
    background: var(--offwhite);
    color: var(--onyx);
    padding: 100px 80px;
    text-align: center;
  }

  .test-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 60px;
    line-height: 1;
  }

  .test-title .customers { color: var(--burnt); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 80px;
    text-align: left;
  }

  .test-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }

  .test-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--onyx);
    margin-bottom: 12px;
  }

  .test-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--onyx);
  }

  .test-role {
    font-size: 11px;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    margin-bottom: 14px;
    font-weight: 600;
  }

  .stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }

  .test-text {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
  }

  /* ======= COMMUNITY / LEAVE COMMENT ======= */
  .community-section {
    background: var(--onyx);
    padding: 80px;
    border-radius: 16px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
  }

  .community-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--tiger);
    margin-bottom: 14px;
  }

  .community-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    line-height: 1;
    color: #fff;
    margin-bottom: 36px;
  }

  .community-title span { color: var(--tiger); }

  .comment-entry {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 14px;
  }

  .comment-author {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 6px;
  }

  .comment-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
  }

  .review-form { display: flex; flex-direction: column; gap: 14px; }

  .form-input, .form-textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-input:focus, .form-textarea:focus { border-color: var(--tiger); }
  .form-textarea { min-height: 120px; resize: vertical; }

  .btn-submit {
    background: var(--tiger);
    color: #fff;
    border: none;
    padding: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
  }

  .btn-submit:hover { background: var(--burnt); }

  /* ======= CONTACT ======= */
  #contact {
    padding: 100px 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 80px);
    line-height: 1;
    margin-bottom: 32px;
  }

  .contact-title span { color: var(--tiger); }

  .contact-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
  }

  .contact-icon { font-size: 16px; margin-top: 2px; }

  .contact-detail-text {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }

  .contact-form {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ======= FOOTER ======= */
  footer {
    background: #0a0a0a;
    padding: 60px 80px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }

  .footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
  }

  .social-btns { display: flex; gap: 10px; }

  .social-btn {
    background: rgba(255,255,255,0.08);
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }

  .social-btn:hover { background: var(--tiger); color: #fff; }

  .footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; }

  .footer-links li { margin-bottom: 12px; }

  .footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.55);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--tiger); }

  .footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--tiger); }

  /* ======= CART DRAWER ======= */
  .cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
  }

  .cart-overlay.open { opacity: 1; pointer-events: all; }

  .cart-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 360px;
    max-width: 100vw;
    height: 100vh;
    background: var(--offwhite);
    color: var(--onyx);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }

  .cart-drawer.open { right: 0; }

  .cart-header {
    background: var(--burnt);
    color: #fff;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }

  .cart-header-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
  }

  .cart-header-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1.5px;
  }

  .cart-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .cart-close:hover { background: rgba(255,255,255,0.3); }

  .cart-address-bar {
    background: #fff;
    padding: 14px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
  }

  .address-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burnt);
    margin-bottom: 2px;
  }

  .address-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--onyx);
  }

  .change-btn {
    background: none;
    border: none;
    color: var(--burnt);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .change-btn:hover { opacity: 0.7; }

  .cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 22px;
  }

  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #aaa;
    text-align: center;
    gap: 12px;
    padding: 40px 0;
  }

  .cart-empty-icon { font-size: 48px; opacity: 0.3; }

  .cart-empty-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #999;
    letter-spacing: 1px;
  }

  .cart-empty-sub {
    font-size: 13px;
    color: var(--burnt);
    line-height: 1.5;
  }

  .cart-item {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .cart-item-img {
    width: 56px; height: 56px;
    border-radius: 8px;
    background: #eee;
    object-fit: cover;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: #bbb;
  }

  .cart-item-info { flex: 1; }

  .cart-item-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--onyx);
  }

  .cart-item-price {
    font-size: 13px;
    color: var(--burnt);
    font-weight: 600;
    margin-top: 2px;
  }

  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .qty-btn {
    background: #f0f0f0;
    border: none;
    width: 26px; height: 26px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    line-height: 1;
  }

  .qty-btn:hover { background: var(--tiger); color: #fff; }

  .qty-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
  }

  .cart-footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px 22px;
    flex-shrink: 0;
  }

  .cart-totals { margin-bottom: 16px; }

  .cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-family: 'Barlow', sans-serif;
  }

  .cart-total-row.grand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--onyx);
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 4px;
  }

  .checkout-btn {
    background: var(--tiger);
    color: #fff;
    border: none;
    width: 100%;
    padding: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .checkout-btn:hover { background: var(--burnt); }

  /* ======= ADDRESS MODAL ======= */
  .address-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 3000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .address-modal-overlay.open { opacity: 1; pointer-events: all; }

  .address-modal {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 20px 20px 0 0;
    padding: 28px 24px 36px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    color: var(--onyx);
  }

  .address-modal-overlay.open .address-modal { transform: translateY(0); }

  .modal-handle {
    width: 40px; height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 0 auto 20px;
  }

  .modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .modal-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
  }

  .address-search-wrap {
    position: relative;
    margin-bottom: 16px;
  }

  .address-search {
    width: 100%;
    background: #f5f5f5;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 14px 16px 14px 44px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    color: var(--onyx);
    transition: border-color 0.2s;
  }

  .address-search:focus { border-color: var(--tiger); }

  .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #aaa;
  }

  .address-suggestions { list-style: none; margin-bottom: 20px; }

  .address-suggestion {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    margin-bottom: 4px;
  }

  .address-suggestion:hover { background: #f8f2ee; }

  .sug-icon {
    width: 36px; height: 36px;
    background: #fee8e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .sug-main {
    font-size: 14px;
    font-weight: 600;
    color: var(--onyx);
  }

  .sug-sub {
    font-size: 12px;
    color: #999;
  }

  .modal-confirm-btn {
    background: var(--tiger);
    color: #fff;
    border: none;
    width: 100%;
    padding: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s;
  }

  .modal-confirm-btn:hover { background: var(--burnt); }

  .addr-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
  }

  .addr-tab {
    flex: 1;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
  }

  .addr-tab.active {
    border-color: var(--tiger);
    color: var(--tiger);
    background: #fff3ee;
  }

  /* ======= TOAST ======= */
  .toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--onyx);
    color: #fff;
    padding: 14px 24px;
    border-radius: 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 5000;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    border-left: 4px solid var(--tiger);
    white-space: nowrap;
  }

  .toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* ======= RESPONSIVE ======= */
  @media(max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    #hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
    .hero-image-circle { width: 260px; height: 260px; }
    #about { grid-template-columns: 1fr; }
    .about-content { padding: 48px 24px; }
    .about-image { min-height: 260px; }
    #products { padding: 80px 24px; }
    .products-grid { grid-template-columns: 1fr; }
    #bts { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
    #testimonials { padding: 80px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .community-section { grid-template-columns: 1fr; padding: 48px 24px; }
    #contact { grid-template-columns: 1fr; padding: 80px 24px; }
    footer { padding: 60px 24px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  }

  .address-dropdown{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1.5px solid #ddd;
  margin-bottom:18px;
  font-size:14px;
  font-family:'Barlow',sans-serif;
  outline:none;
  transition:0.3s;
}

.address-dropdown:focus{
  border-color:#FF5A1F;
  box-shadow:0 0 0 3px rgba(255,90,31,0.15);
}

.address-label-custom{
  display:block;
  margin-bottom:8px;
  font-size:13px;
  font-weight:700;
  color:#333;
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:1px;
  text-transform:uppercase;
}

.address-textarea{
  width:100%;
  min-height:110px;
  resize:none;
  padding:14px 16px;
  border-radius:10px;
  border:1.5px solid #ddd;
  font-size:14px;
  font-family:'Barlow',sans-serif;
  outline:none;
  margin-bottom:18px;
  transition:0.3s;
}

.address-textarea:focus{
  border-color:#FF5A1F;
  box-shadow:0 0 0 3px rgba(255,90,31,0.15);
}

.selected-preview{
  background:#fff3ee;
  border:1.5px solid #FF5A1F;
  border-radius:10px;
  padding:12px;
  margin-bottom:18px;
  display:none;
}

.selected-preview p{
  margin-top:6px;
  font-size:13px;
  color:#444;
  line-height:1.5;
}

/* NAV LINKS */
.nav-links a{
  position: relative;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

/* HOVER */
.nav-links a:hover{
  color: #FF5A1F; /* Tiger Flame */
}

/* ACTIVE */
.nav-links a.active{
  color: #E10600; /* Burnt Tangerine */
}

/* UNDERLINE */
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #E10600;
  transition: 0.3s ease;
}

.nav-links a:hover::after{
  width: 100%;
  background: #FF5A1F;
}

.nav-links a.active::after{
  width: 100%;
  background: #E10600;
}

.rating-select{
  display:flex;
  gap:8px;
  margin-bottom:18px;
}

.rating-star{
  font-size:28px;
  cursor:pointer;
  color:#555;
  transition:.2s;
}

.rating-star.active{
  color:#FFC83D;
}

.rating-star:hover{
  transform:scale(1.15);
}

/* IMAGE + VIDEO FIX */

.hero-img,
.about-img,
.product-image,
.avatar-img,
.bts-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-image-circle,
.about-image,
.product-img,
.test-avatar,
.video-placeholder{
  overflow:hidden;
}

.test-avatar{
  border-radius:50%;
}

.video-placeholder{
  border-radius:20px;
}

.bts-video{
  border-radius:20px;
}