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

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1f2937;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    /* container utility */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* HEADER (flex) */
    .header {
      background: #0a1927;
      backdrop-filter: blur(0px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: #0b1c1a;
    }

    .text-decoration-none{
      text-decoration: none;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .logo h1 {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #F5B041, #E67E22);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .logo span {
      font-size: 0.8rem;
      font-weight: 400;
      color: #9ca3af;
      display: block;
      letter-spacing: 0px;
      background: none;
      -webkit-background-clip: unset;
      color: #cbd5e1;
    }

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

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #e2e8f0;
      transition: 0.25s ease;
      font-size: 1rem;
    }

    .nav-links a:hover {
      color: #F5B041;
    }

    .nav-links a.active {
      color: #F5B041;
      font-weight: 700;
    }

    .btn-outline-light {
      border: 1.5px solid #F5B041;
      background: transparent;
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      color: #F5B041;
      font-weight: 600;
      transition: 0.25s;
    }

    .btn-outline-light:hover {
      background: #F5B041;
      color: #0a1927;
      border-color: #F5B041;
    }

    /* HERO SECTION (flex & grid mix) */
    .hero {
      background: linear-gradient(135deg, #0b2b26 0%, #061210 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" opacity="0.08"><path fill="none" stroke="%23f5b041" stroke-width="1" d="M10 10 L70 10 M10 20 L70 20 M10 30 L70 30 M10 40 L70 40 M10 50 L70 50 M10 60 L70 60 M10 70 L70 70 M20 10 L20 70 M30 10 L30 70 M40 10 L40 70 M50 10 L50 70 M60 10 L60 70 M70 10 L70 70"/></svg>');
      background-repeat: repeat;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      padding: 5rem 0;
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 3.3rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      letter-spacing: -0.02em;
    }

    .hero-content .highlight {
      color: #F5B041;
    }

    .hero-content p {
      font-size: 1.1rem;
      color: #cbd5e6;
      margin-bottom: 2rem;
      max-width: 90%;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: #F5B041;
      color: #0a1927;
      padding: 0.85rem 2rem;
      border-radius: 40px;
      font-weight: 700;
      text-decoration: none;
      transition: 0.2s;
      display: inline-block;
      box-shadow: 0 8px 20px rgba(245, 176, 65, 0.25);
    }

    .btn-primary:hover {
      background: #e67e22;
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(230, 126, 34, 0.3);
    }

    .btn-secondary {
      background: transparent;
      border: 1.5px solid rgba(255,255,240,0.5);
      color: white;
      padding: 0.85rem 2rem;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.2s;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.05);
      border-color: #F5B041;
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
    }

    .stat {
      font-weight: 700;
    }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 800;
      color: #F5B041;
    }

    .hero-image {
      background: rgba(255,255,245,0.03);
      backdrop-filter: blur(2px);
      border-radius: 40px;
      padding: 1.5rem;
      text-align: center;
      border: 1px solid rgba(245,176,65,0.3);
    }

    .hero-image i {
      font-size: 8rem;
      color: #F5B041;
      opacity: 0.9;
    }

    .hero-image p {
      margin-top: 1rem;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }

    /* PRODUCT SECTION (grid) */
    .products-section {
     
      background: #fefcf7;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1f2a2e;
    }

    .section-header p {
      color: #4b5563;
      max-width: 600px;
      margin: 0.8rem auto 0;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }

    .product-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid #f0ede8;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
      border-color: #F5B04140;
    }

    .card-img {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: #f3f0ea;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    a.card-img {
      display: block;
      color: inherit;
    }

    a.card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .product-card:hover .card-img img {
      transform: scale(1.03);
    }

    .card-content {
      padding: 1.5rem;
    }

    .card-content h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .card-content p {
      color: #4b5563;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .product-tag {
      display: inline-block;
      background: #f2e8db;
      padding: 0.2rem 0.8rem;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #b45f1b;
      margin-bottom: 1rem;
    }

    .card-link {
      text-decoration: none;
      font-weight: 600;
      color: #E67E22;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: 0.2s;
    }

    .card-link:hover {
      gap: 10px;
      color: #b45f1b;
    }

    /* FEATURE BANNER (flex) */
    .feature-banner {
      background: #0a1927;
      color: white;
      padding: 3rem 0;
      margin: 1rem 0 2rem;
    }

    .feature-flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      text-align: center;
    }

    .feature-item {
      flex: 1;
      min-width: 180px;
    }

    .feature-item i {
      font-size: 2.5rem;
      color: #F5B041;
      margin-bottom: 0.8rem;
    }

    .feature-item h4 {
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    /* Trending section additional */
    .trending-section {
      background: #ffffff;
      padding: 2rem 0 2rem;
    }

    /* FOOTER (grid + flex) */
    .footer {
      background: #0b1110;
      color: #cfdde6;
      padding-top: 3.5rem;
      border-top: 1px solid #2c3a38;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }

    .footer-col h3 {
      color: #F5B041;
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
      font-weight: 700;
    }

    .footer-col p, .footer-col address {
      font-style: normal;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .footer-col i {
      width: 28px;
      color: #F5B041;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      background: #1e2a28;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #F5B041;
      transition: 0.2s;
      text-decoration: none;
    }

    .social-links a:hover {
      background: #F5B041;
      color: #0a1927;
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid #25312f;
      padding: 1.5rem 0;
      text-align: center;
      font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 850px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 0;
      }
      .hero-content p {
        max-width: 100%;
      }
      .hero-stats {
        justify-content: center;
      }
      .hero-buttons {
        justify-content: center;
      }
      .navbar {
        flex-direction: column;
      }
      .nav-links {
        justify-content: center;
        gap: 1.5rem;
      }
      .container {
        padding: 0 1.5rem;
      }
      .section-header h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 550px) {
      .product-grid {
        grid-template-columns: 1fr;
      }
      .hero-content h1 {
        font-size: 2.2rem;
      }
    }

    .section-link {
      text-align: center;
      margin-top: 2.5rem;
    }
    .btn-outline-dark {
      border: 2px solid #E67E22;
      background: transparent;
      padding: 0.7rem 2rem;
      border-radius: 40px;
      color: #E67E22;
      font-weight: 600;
      text-decoration: none;
      transition: 0.2s;
      display: inline-block;
    }
    .btn-outline-dark:hover {
      background: #E67E22;
      color: white;
    }

/* Logo link (Blade header) */
a.logo {
  color: inherit;
  text-decoration: none;
}
a.logo:hover {
  color: inherit;
  text-decoration: none;
}

/* —— Inner pages (catalog, blog, CMS) —— */
.vipa-page {
  padding: 2.5rem 0 4.5rem;
  background: #fefcf7;
  min-height: 45vh;
}

.vipa-page-header {
  margin-bottom: 2rem;
}

.vipa-page-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2a2e;
  margin-bottom: 0.35rem;
}

.vipa-page-header p {
  color: #4b5563;
  font-size: 1rem;
}

.vipa-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.65rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0ede8;
  font-size: 0.9rem;
}

.vipa-breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: #6b7280;
}

.vipa-breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: #d1d5db;
}

.vipa-breadcrumb a {
  color: #b45309;
  text-decoration: none;
  font-weight: 600;
}

.vipa-breadcrumb a:hover {
  color: #E67E22;
}

.vipa-breadcrumb li:last-child {
  color: #374151;
  font-weight: 600;
}

.vipa-filter {
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.vipa-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem 1.25rem;
  align-items: end;
}

.vipa-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.vipa-field input,
.vipa-field select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.vipa-field input:focus,
.vipa-field select:focus,
.vipa-textarea:focus {
  outline: none;
  border-color: #F5B041;
  box-shadow: 0 0 0 3px rgba(245, 176, 65, 0.2);
}

.vipa-textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.vipa-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #E67E22, #c56a1a);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vipa-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.35);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.category-tile {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0ede8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #F5B04155;
}

.category-tile-img {
  height: 130px;
  overflow: hidden;
  background: #f3f0ea;
}

.category-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile-body {
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.category-tile-body span:first-child {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f2937;
}

.category-tile-count {
  background: #f2e8db;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.vipa-empty {
  text-align: center;
  color: #6b7280;
  padding: 2rem;
}

.vipa-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.vipa-page .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.vipa-page .page-item {
  list-style: none;
}

.vipa-page .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.vipa-page .page-item.active .page-link {
  background: #E67E22;
  border-color: #E67E22;
  color: #fff;
}

.vipa-page .page-item.disabled .page-link {
  opacity: 0.45;
  cursor: not-allowed;
}

.vipa-page .page-item:not(.disabled):not(.active) .page-link:hover {
  border-color: #F5B041;
  color: #b45309;
}

.vipa-category-banner {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid #f0ede8;
  max-height: 320px;
}

.vipa-category-banner img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.vipa-subheading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f2a2e;
  margin: 2rem 0 1rem;
}

.vipa-muted {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.subcategory-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0ede8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.subcategory-tile:hover {
  transform: translateY(-3px);
  border-color: #F5B04155;
}

.subcategory-tile img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.subcategory-tile span {
  display: block;
  padding: 0.65rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.vipa-gallery {
  margin-bottom: 1.5rem;
}

.vipa-gallery-main {
  background: #f8f6f1;
  border-radius: 20px;
  border: 1px solid #f0ede8;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.vipa-gallery-main img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

.vipa-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vipa-gallery-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f3f0ea;
}

.vipa-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vipa-gallery-thumb:hover,
.vipa-gallery-thumb:focus {
  border-color: #F5B041;
  outline: none;
}

.vipa-gallery-thumb.is-current {
  border-color: #E67E22;
}

.vipa-product-meta {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.vipa-lead {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.vipa-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid #f0ede8;
  background: #fff;
}

.vipa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.vipa-table th,
.vipa-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

.vipa-table th {
  background: #fefcf7;
  font-weight: 700;
  color: #374151;
}

.vipa-table tbody tr:hover {
  background: #fffbf5;
}

.vipa-table .num {
  text-align: right;
}

.vipa-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

.vipa-article {
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 20px;
  padding: 2rem 2rem 2.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.vipa-article h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1f2a2e;
  margin-bottom: 0.5rem;
}

.vipa-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  color: #b45309;
  font-weight: 600;
  text-decoration: none;
}

.vipa-back:hover {
  color: #E67E22;
}

.cms-body {
  line-height: 1.65;
  color: #374151;
}

.cms-body p {
  margin-bottom: 1rem;
}

.cms-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.cms-body h2,
.cms-body h3 {
  margin: 1.5rem 0 0.75rem;
  color: #1f2a2e;
}

.cms-body ul,
.cms-body ol {
  margin: 0 0 1rem 1.25rem;
}

.blog-card {
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
  border-color: #F5B04144;
}

.blog-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.blog-card h2 a {
  color: #1f2a2e;
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: #E67E22;
}

.blog-card .date {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.65rem;
}

.blog-card .excerpt {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.no-image-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c5a4a, #1a3830);
  color: #fff;
  font-weight: 600;
  border-radius: 20px 20px 0 0;
}

.vipa-product-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 1rem;
  align-items: start;
}
.product-card .vipa-product-specs{
  padding: 0px 20px;
}

@media (min-width: 992px) {
  .vipa-product-grid {
    grid-template-columns: minmax(300px, 1fr) 1.15fr;
  }
}

.vipa-product-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1f2a2e;
  margin-bottom: 0.75rem;
}

.vipa-product-desc {
  margin-top: 1rem;
}

.vipa-product-grid .no-image-placeholder {
  border-radius: 20px;
}

/* Flash messages (public checkout) */
.vipa-flash {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.vipa-flash-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.vipa-flash-danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.vipa-flash-list {
  margin: 0;
  padding-left: 1.25rem;
}

.vipa-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  margin-left: 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  background: #E67E22;
  color: #fff;
  border-radius: 999px;
  vertical-align: super;
}

.vipa-cart-floater {
  position: fixed;
  right: 1.2rem;
  bottom: 6rem;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #E67E22, #c56a1a);
  color: #fff;
  box-shadow: 0 10px 24px rgba(197, 106, 26, 0.35);
  z-index: 120;
}

.vipa-cart-floater:hover {
  color: #fff;
  transform: translateY(-1px);
}

.vipa-cart-floater i {
  font-size: 1.2rem;
}

.vipa-cart-floater .vipa-cart-badge {
  position: absolute;
  top: -0.3rem;
  right: -0.35rem;
  margin-left: 0;
}

.vipa-cart-floater.is-active {
  box-shadow: 0 0 0 3px rgba(245, 176, 65, 0.35), 0 10px 24px rgba(197, 106, 26, 0.35);
}

@media (max-width: 640px) {
  .vipa-cart-floater {
    right: 0.9rem;
    bottom: 5.5rem;
    width: 52px;
    height: 52px;
  }
}

.vipa-inline-add-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.vipa-qty-input {
  width: 5.5rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
}

.vipa-btn-sm {
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: none;
  background: #E67E22;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}

.vipa-btn-sm:hover {
  background: #c56a1a;
}

/* Checkout layout (main + summary column) */
.vipa-checkout-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 960px) {
  .vipa-checkout-layout {
    grid-template-columns: 1fr minmax(300px, 380px);
  }
}

.vipa-panel {
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.vipa-cart-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.vipa-cart-row:last-child {
  border-bottom: none;
}

.vipa-cart-inline-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 999px;
  padding: 0.2rem 0.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vipa-cart-inline-stepper .vipa-qty-input {
  width: 4.5rem;
  min-width: 0;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2a2e;
}

.vipa-qty-unit-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: lowercase;
  padding: 0 0.15rem;
  user-select: none;
  white-space: nowrap;
}

.vipa-qty-stepper-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.vipa-qty-stepper-wrap--compact {
  width: 100%;
  max-width: 100%;
}

.vipa-qty-stepper-wrap--compact .vipa-cart-inline-stepper {
  width: 100%;
  max-width: 220px;
  justify-content: space-between;
}

.vipa-qty-stepper-wrap--compact .vipa-qty-input {
  flex: 1;
  min-width: 2.5rem;
}

.vipa-qty-hint {
  display: block;
  font-size: 0.72rem;
  line-height: 1.35;
}

.vipa-product-cart-controls .vipa-qty-stepper-wrap {
  margin-top: 0.5rem;
}

.vipa-stock-unavailable {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 0.85rem;
  font-weight: 600;
}

.vipa-stock-unavailable--compact {
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
}

.vipa-stock-unavailable__text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vipa-stock-unavailable__icon {
  font-size: 0.9em;
  opacity: 0.85;
}

.vipa-stock-unavailable__hint {
  font-size: 0.72rem;
  font-weight: 500;
  color: #b45309;
}

.vipa-stock-in-label {
  color: #047857;
  font-weight: 600;
}

.vipa-cart-row--unavailable {
  opacity: 0.92;
  background: #fafafa;
}

.vipa-cart-row--unavailable .js-cart-line-sel:disabled {
  cursor: not-allowed;
}

.vipa-alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.vipa-alert--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.vipa-checkout-stepper .vipa-qty-input {
  width: 5rem;
}

.vipa-product-unit-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: #b45309;
  margin: 0.35rem 0 0;
}

.vipa-product-unit-price .vipa-price-suffix {
  font-weight: 500;
  color: #6b7280;
  font-size: 0.82rem;
}

.vipa-product-hero-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2a2e;
  margin: 0.5rem 0 0;
}

.vipa-product-hero-price .vipa-price-suffix {
  font-weight: 600;
  font-size: 0.95rem;
  color: #6b7280;
}

.vipa-pay-options label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  cursor: pointer;
  font-weight: 600;
}

.vipa-pay-options input {
  margin-top: 0.25rem;
}

.vipa-pay-options small {
  display: block;
  font-weight: 400;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* Product cards: title link + cart controls */
.product-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card-title-link:hover {
  color: #E67E22;
}

.product-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.product-card .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vipa-product-cart-controls {
  flex-shrink: 0;
}

.vipa-btn-add-cart {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  background: linear-gradient(135deg, #E67E22, #c56a1a);
  color: #fff;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vipa-btn-add-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.35);
}

.vipa-btn-add-cart--ghost {
  background: transparent;
  color: #b45309;
  border: 1.5px solid #F5B041;
}

.vipa-btn-add-cart--ghost:hover {
  background: rgba(245, 176, 65, 0.12);
  box-shadow: none;
}

.vipa-cart-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 999px;
  padding: 0.2rem 0.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vipa-stepper-btn {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: #fef6ee;
  color: #b45309;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}

.vipa-stepper-btn:hover {
  background: #E67E22;
  color: #fff;
}

.vipa-stepper-qty {
  min-width: 1.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2a2e;
}

.vipa-cart-more-variants {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
  margin-top: 0.35rem;
  text-decoration: none;
}

.vipa-cart-more-variants:hover {
  color: #E67E22;
}

/* Checkout page polish */
.vipa-checkout-page .vipa-page-header {
  margin-bottom: 0;
}

.vipa-checkout-hero {
  background: linear-gradient(135deg, #0b2b26 0%, #061210 100%);
  color: #fff;
  border-radius: 24px;
  padding: 2rem 2rem 2.25rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.vipa-checkout-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" opacity="0.06"><path fill="none" stroke="%23f5b041" stroke-width="1" d="M10 10 L70 10 M10 20 L70 20 M10 30 L70 30 M10 40 L70 40 M10 50 L70 50 M10 60 L70 60 M10 70 L70 70"/></svg>');
  pointer-events: none;
}

.vipa-checkout-hero-inner {
  position: relative;
  z-index: 1;
}

.vipa-checkout-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #F5B041;
  margin: 0 0 0.5rem;
}

.vipa-checkout-hero .vipa-page-header h1 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.vipa-checkout-lead {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}

.vipa-checkout-card {
  position: relative;
}

.vipa-checkout-card-icon {
  float: right;
  font-size: 2rem;
  color: #F5B041;
  opacity: 0.85;
  margin: 0 0 0.5rem 1rem;
}

.vipa-checkout-section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f2a2e;
  margin: 0 0 0.35rem;
}

.vipa-checkout-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #E67E22, #c56a1a);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.vipa-checkout-hint {
  font-size: 0.88rem;
  margin-bottom: 1rem !important;
}

.vipa-checkout-line.checkout-line-total-col {
  min-width: 4.5rem;
}

.vipa-checkout-back-row {
  margin: 0.5rem 0 2rem;
}

.vipa-checkout-back-row .vipa-back {
  margin-top: 0;
}

.vipa-checkout-summary {
  position: sticky;
  top: 5.5rem;
}

.vipa-checkout-summary-inner {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid #f0ede8;
  box-shadow:
    0 20px 50px rgba(11, 43, 38, 0.08),
    0 0 0 1px rgba(245, 176, 65, 0.12);
}

.vipa-checkout-summary-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1f2a2e;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}

.vipa-checkout-trust {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.45;
}

.vipa-checkout-trust li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.vipa-checkout-trust i {
  color: #E67E22;
  margin-top: 0.15rem;
  width: 1.1rem;
}

.vipa-checkout-total-block {
  background: linear-gradient(180deg, #fffbf5 0%, #fff 100%);
  border: 1px solid #f5e6d3;
  border-radius: 16px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
}

.vipa-checkout-tax-rows {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.vipa-checkout-tax-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0;
  color: #4b5563;
}

.vipa-checkout-tax-row dt {
  margin: 0;
  font-weight: 500;
}

.vipa-checkout-tax-row dd {
  margin: 0;
  font-weight: 600;
  color: #1f2a2e;
}

.vipa-checkout-tax-row--total {
  border-top: 1px solid #f5e6d3;
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  color: #1f2a2e;
}

.vipa-checkout-tax-row--total dt,
.vipa-checkout-tax-row--total dd {
  font-weight: 700;
}

.vipa-line-tax-breakdown {
  font-size: 0.78rem;
  margin-top: 0.4rem;
  padding: 0.5rem 0.65rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #eef0f2;
}

.vipa-line-tax-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.1rem 0;
}

.vipa-cart-summary {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #eef0f2;
  max-width: 22rem;
  margin-left: auto;
}

.vipa-cart-summary-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin: 0 0 0.75rem;
}

.vipa-checkout-total-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.vipa-checkout-total-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin: 0.25rem 0 0.5rem;
}

.vipa-checkout-total-amount {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #1f2a2e;
  letter-spacing: -0.02em;
}

.vipa-checkout-currency {
  font-size: 1rem;
  font-weight: 700;
  color: #b45309;
  margin-right: 0.25rem;
  vertical-align: 0.15em;
}

.vipa-checkout-submit {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 1.05rem;
  border-radius: 14px;
  margin-bottom: 0.75rem;
}

.vipa-checkout-summary-foot {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.45;
  margin: 0;
  text-align: center;
}

@media (max-width: 959px) {
  .vipa-checkout-summary {
    position: static;
    order: -1;
  }

  .vipa-checkout-layout {
    display: flex;
    flex-direction: column;
  }

  .vipa-checkout-main {
    order: 1;
  }
}

/* In-page toasts (replaces browser alert for cart / stock messages) */
.vipa-toast-host {
  position: fixed;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  max-width: min(92vw, 420px);
  width: 100%;
}

.vipa-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.06);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
  color: #1f2937;
  background: #fff;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.vipa-toast--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.vipa-toast--error {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 1px solid #fecaca;
  color: #7f1d1d;
}

.vipa-toast--success {
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
  border: 1px solid #bbf7d0;
  color: #14532d;
}

.vipa-toast--info {
  border: 1px solid #e5e7eb;
}

.vipa-toast-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  margin-top: 0.05rem;
}

.vipa-toast--error .vipa-toast-icon {
  color: #dc2626;
}

.vipa-toast--success .vipa-toast-icon {
  color: #16a34a;
}

.vipa-toast--info .vipa-toast-icon {
  color: #2563eb;
}

.vipa-toast-msg {
  flex: 1;
  min-width: 0;
}

.vipa-toast-close {
  flex-shrink: 0;
  appearance: none;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0 0 0 0.25rem;
  margin: -0.15rem 0 0;
  cursor: pointer;
  border-radius: 6px;
}

.vipa-toast-close:hover {
  color: #4b5563;
}