    :root {
      --ida-black: #111111;
      --ida-dark: #111827;
      --ida-gray: #6b7280;
      --ida-light-bg: #f8f8fb;
      --ida-accent: #111111;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--ida-light-bg);
      color: #222;
    }

    a { text-decoration: none; }

    /* Store Notice */
    .store-notice {
      background: #000;
      color: #f9fafb;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .store-notice a {
      color: var(--ida-accent);
      font-weight: 600;
    }

    /* Secondary Nav */
    .top-bar {
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
      padding: 0.4rem 0;
    }
    .top-bar-links a {
      font-size: 0.9rem;
      margin-right: 1rem;
      color: #4b5563;
    }
    .top-bar-links a:hover { color: var(--ida-dark); }

    .header-logo {
      max-height: 54px;
    }

    .mobile-menu-toggle {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      color: #111827;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      padding: 0;
    }
    .header-actions {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.7rem;
      white-space: nowrap;
    }

    .icon-badge {
      position: relative;
      margin-left: 0;
      font-size: 1.1rem;
      cursor: pointer;
      color: var(--ida-dark);
    }
    .icon-badge .badge {
      position: absolute;
      top: -6px;
      right: -8px;
      background: var(--ida-accent);
      color: #fff;
      border-radius: 999px;
      padding: 0 6px;
      font-size: 0.7rem;
    }
    .icon-badge .badge.is-empty { opacity: 0.45; }
    .icon-badge .badge.badge-pop {
      animation: idaBadgePop 260ms ease-out;
    }
    @keyframes idaBadgePop {
      0% { transform: scale(0.8); }
      60% { transform: scale(1.22); }
      100% { transform: scale(1); }
    }

    /* Main Navbar */
    .main-navbar {
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
    }
    .navbar-toggler {
      border: none;
    }
    .navbar-toggler-icon {
      background-image: none;
    }
    .navbar-toggler-icon::before {
      content: "\f0c9";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 1.2rem;
    }
    .main-navbar .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: #4b5563;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      padding: 0.75rem 1rem !important;
    }
    .main-navbar .nav-link.active,
    .main-navbar .nav-link:hover {
      color: var(--ida-black);
      border-bottom: 2px solid var(--ida-accent);
    }

    /* Hero */
    .hero-section {
      background: url('../images/blog-featured.jpg');
    }
    .hero-overlay {
      background: linear-gradient(120deg, rgba(0,0,0,0.78), rgba(0,0,0,0.55));
    }
    .hero-title {
      font-size: 2.4rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .hero-subtitle {
      font-size: 1.05rem;
      color: #e5e7eb;
      max-width: 520px;
    }
    .hero-tag-pill {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.08);
      border-radius: 999px;
      padding: 0.25rem 0.75rem;
      color: #ffffff;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .hero-tag-pill i { margin-right: 0.3rem; }

    .btn-ida-primary {
      background: var(--ida-black);
      color: #ffffff;
      border-radius: 999px;
      padding: 0.7rem 1.6rem;
      font-weight: 600;
      border: 1px solid var(--ida-black);
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      white-space: nowrap;
    }
    .btn-ida-primary:hover {
      background: #000;
      color: #fff;
    }
    .btn-ghost-light {
      border-radius: 999px;
      padding: 0.7rem 1.6rem;
      border: 1px solid rgba(243,244,246,0.8);
      color: #f9fafb;
      background: transparent;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.85rem;
      white-space: nowrap;
    }
    .btn-ghost-light:hover { background: rgba(249,250,251,0.08); }

    /* Section Titles */
    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--ida-black);
    }
    .section-subtitle {
      font-size: 0.95rem;
      color: var(--ida-gray);
    }

    /* Product slider */
    .slider-wrapper {
      position: relative;
    }
    .product-slider {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      padding: 0.4rem 0.2rem 0.4rem 0.2rem;
      scroll-snap-type: x mandatory;
    }
    .product-slider::-webkit-scrollbar {
      height: 6px;
    }
    .product-slider::-webkit-scrollbar-thumb {
      background: #d1d5db;
      border-radius: 999px;
    }

    .product-card {
      border-radius: 1rem;
      border: 1px solid #e5e7eb;
      overflow: hidden;
      background: #ffffff;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      min-width: 0;
      width: 100%;
      scroll-snap-align: start;
    }
    .product-slider .product-card {
      min-width: 230px;
      flex: 0 0 230px;
    }
    @media (min-width: 992px) {
      .product-slider .product-card {
        min-width: 260px;
        flex-basis: 260px;
      }
    }
    .product-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(15,23,42,0.12);
    }
    .product-image-wrapper {
      position: relative;
      overflow: hidden;
    }
    .product-image-wrapper img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .product-card:hover img { transform: scale(1.05); }

    .product-tag {
      position: absolute;
      top: 0.8rem;
      left: 0.8rem;
      background: #000;
      color: #f9fafb;
      font-size: 0.7rem;
      padding: 0.15rem 0.6rem;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .product-wishlist-btn {
      position: absolute;
      top: 0.8rem;
      right: 0.8rem;
      background: rgba(255,255,255,0.9);
      border-radius: 999px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
    }
    .product-wishlist-btn i {
      color: var(--ida-accent);
      font-size: 0.95rem;
    }

    .product-info {
      padding: 0.9rem 1rem 1.1rem;
    }
    .product-name a {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--ida-black);
    }
    .product-meta {
      font-size: 0.8rem;
      color: #6b7280;
      margin-bottom: 0.35rem;
    }
    .product-price {
      font-weight: 700;
      font-size: 1rem;
      color: var(--ida-black);
    }
    .product-price span.old {
      font-weight: 400;
      color: #9ca3af;
      text-decoration: line-through;
      margin-left: 0.35rem;
      font-size: 0.85rem;
    }

    .product-actions {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.5rem !important;
      width: 100%;
    }
    .product-actions .btn {
      min-width: 0;
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
      font-size: 0.74rem;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 0.5rem 0.4rem;
      white-space: normal;
      overflow-wrap: anywhere;
      text-align: center;
    }
    .product-actions .btn i { flex: 0 0 auto; }
    @media (max-width: 420px) {
      .product-actions {
        grid-template-columns: 1fr;
      }
    }

    .badge-pill-soft {
      border-radius: 999px;
      background: #fee2e2;
      color: #b91c1c;
      font-size: 0.7rem;
      padding: 0.2rem 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    /* Slider arrow buttons */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid #d1d5db;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 14px rgba(15,23,42,0.25);
      cursor: pointer;
      z-index: 5;
    }
    .slider-btn i {
      font-size: 0.85rem;
      color: #374151;
    }
    .slider-btn-prev { left: -0.5rem; }
    .slider-btn-next { right: -0.5rem; }
    @media (max-width: 576.98px) {
      .slider-btn-prev { left: 0; }
      .slider-btn-next { right: 0; }
    }

    /* Flash Sale block */
    .flash-sale-wrapper {
      border: 1px solid #111;
      border-radius: 1.1rem;
      padding: 1.3rem 1.3rem 1.6rem;
      background: #fff;
    }
    .flash-sale-badge {
      display: inline-flex;
      align-items: center;
      background: #fee2e2;
      color: #b91c1c;
      border-radius: 999px;
      padding: 0.2rem 0.8rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
    }
    .flash-timer {
      font-family: ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: var(--ida-black);
    }

    /* Category cards */
    .category-card {
      border-radius: 1rem;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: #111827;
      color: #f9fafb;
      min-height: 180px;
    }
    .category-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 0;
    }
    .category-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.78;
      transition: transform 0.3s ease, opacity 0.3s ease;
      z-index: 0;
    }
    .category-card:hover img {
      transform: scale(1.06);
      opacity: 0.9;
    }
    .category-overlay {
      position: relative;
      padding: 1.2rem 1.4rem;
      z-index: 1;
    }
    .category-title {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .category-link {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-top: 0.4rem;
      display: inline-flex;
      align-items: center;
      color: #fef9c3;
    }
    .category-link i { margin-left: 0.3rem; font-size: 0.9rem; }

    /* Style & filter pills */
    .style-pill,
    .filter-pill {
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      padding: 0.45rem 0.9rem;
      font-size: 0.85rem;
      color: #4b5563;
      display: inline-flex;
      align-items: center;
      background: #ffffff;
      margin: 0.2rem;
      cursor: pointer;
    }
    .style-pill i,
    .filter-pill i {
      margin-right: 0.35rem;
      font-size: 0.9rem;
    }
    .style-pill.active,
    .filter-pill.active {
      background: #000;
      border-color: #000;
      color: #f9fafb;
    }

    /* Page header / breadcrumb */
    .page-header {
      background: #f3f4f6;
      border-bottom: 1px solid #e5e7eb;
      padding: 1.5rem 0;
    }
    .page-title {
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--ida-black);
    }
    .breadcrumb {
      --bs-breadcrumb-divider: '>';
      margin-bottom: 0;
      font-size: 0.85rem;
    }
    .breadcrumb a {
      color: #6b7280;
    }
    .breadcrumb .active {
      color: #111827;
      font-weight: 500;
    }

    /* Sidebar filters */
    .filter-box {
      background: #ffffff;
      border-radius: 1rem;
      border: 1px solid #e5e7eb;
      padding: 1rem 1.1rem;
      margin-bottom: 1rem;
    }
    .filter-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #4b5563;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .filter-link {
      font-size: 0.9rem;
      color: #4b5563;
      display: block;
      margin-bottom: 0.35rem;
    }
    .filter-link:hover {
      color: var(--ida-black);
    }
    .price-range-label {
      font-size: 0.85rem;
      color: #6b7280;
    }

    /* Toolbar */
    .shop-toolbar {
      background: #ffffff;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      padding: 0.5rem 0.8rem;
      font-size: 0.85rem;
    }

    /* Product grid overrides */
    .product-grid .product-card {
      min-width: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .product-grid .product-info {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product-grid .product-image-wrapper img {
      height: 240px;
    }

    /* Pagination */
    .pagination .page-link {
      border-radius: 999px !important;
      margin: 0 0.15rem;
      font-size: 0.85rem;
    }

    /* Product detail */
    .product-detail-wrapper {
      background: #ffffff;
      border-radius: 1.2rem;
      padding: 1.8rem 1.6rem;
      box-shadow: 0 18px 40px rgba(15,23,42,0.06);
    }
    .product-main-image {
      border-radius: 1rem;
      overflow: hidden;
      position: relative;
      border: 1px solid #e5e7eb;
    }
    .product-main-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }
    .product-main-tag {
      position: absolute;
      top: 0.9rem;
      left: 0.9rem;
      background: #000;
      color: #f9fafb;
      font-size: 0.75rem;
      padding: 0.2rem 0.8rem;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }
    .product-main-wishlist {
      position: absolute;
      top: 0.9rem;
      right: 0.9rem;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: none;
      background: rgba(255,255,255,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .product-main-wishlist i { color: var(--ida-accent); font-size: 1.05rem; }

    .thumb-list {
      display: flex;
      gap: 0.6rem;
      margin-top: 0.9rem;
      overflow-x: auto;
      padding-bottom: 0.3rem;
    }
    .thumb-item {
      border-radius: 0.6rem;
      overflow: hidden;
      border: 1px solid #e5e7eb;
      cursor: pointer;
      min-width: 70px;
      max-width: 80px;
    }
    .thumb-item img { width: 100%; height: 70px; object-fit: cover; }
    .thumb-item.active { border-color: #000; }

    .product-title {
      font-size: 1.7rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ida-black);
    }
    .product-subtitle { font-size: 0.95rem; color: var(--ida-gray); }
    .product-price-main {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--ida-black);
    }
    .product-price-main span.old {
      font-size: 1rem;
      color: #9ca3af;
      text-decoration: line-through;
      margin-left: 0.6rem;
      font-weight: 400;
    }
    .product-meta-row { font-size: 0.9rem; color: #6b7280; }
    .product-meta-row span { margin-right: 0.5rem; display: inline-block; }

    .option-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #6b7280;
      margin-bottom: 0.25rem;
      font-weight: 600;
    }

    .size-pill {
      border-radius: 999px;
      padding: 0.35rem 0.9rem;
      border: 1px solid #e5e7eb;
      background: #fff;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-right: 0.4rem;
      margin-bottom: 0.4rem;
      cursor: pointer;
    }
    .size-pill.active {
      background: #000;
      border-color: #000;
      color: #f9fafb;
    }

    .qty-control {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid #d1d5db;
      overflow: hidden;
    }
    .qty-control button {
      border: none;
      background: #f3f4f6;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .qty-control input {
      width: 46px;
      text-align: center;
      border: none;
      outline: none;
      font-size: 0.9rem;
    }

    .product-actions-main .btn {
      flex: 1 1 0;
      white-space: nowrap;
    }

    .nav-tabs.product-tabs .nav-link {
      border: none;
      border-bottom: 2px solid transparent;
      border-radius: 0;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ida-gray);
      padding: 0.75rem 1rem;
    }
    .nav-tabs.product-tabs .nav-link.active {
      color: var(--ida-black);
      border-bottom-color: #000;
      font-weight: 600;
    }
    .tab-content.product-tab-content {
      background: #ffffff;
      border-radius: 1rem;
      border: 1px solid #e5e7eb;
      padding: 1.5rem;
      margin-top: 0.75rem;
      font-size: 0.95rem;
      color: #4b5563;
    }
    .tab-content.product-tab-content ul { padding-left: 1.1rem; }

    /* Cart */
    .cart-card {
      border-radius: 1.1rem;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 1.3rem 1.3rem 1.1rem;
    }
    .cart-table thead th {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #9ca3af;
      border-bottom: 1px solid #e5e7eb;
    }
    .cart-table tbody td {
      vertical-align: middle;
      border-bottom: 1px solid #f3f4f6;
      font-size: 0.9rem;
    }
    .cart-product-thumb {
      width: 70px;
      height: 70px;
      border-radius: 0.8rem;
      overflow: hidden;
      margin-right: 0.8rem;
      flex-shrink: 0;
    }
    .cart-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .cart-product-name { font-weight: 600; color: var(--ida-black); margin-bottom: 0.1rem; }
    .cart-product-meta { font-size: 0.8rem; color: #6b7280; }
    .cart-remove-btn {
      border: none;
      background: none;
      color: #9ca3af;
      font-size: 1.1rem;
    }
    .cart-remove-btn:hover { color: #ef4444; }

    .qty-wrapper {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid #d1d5db;
      overflow: hidden;
    }
    .qty-btn {
      width: 30px;
      height: 32px;
      border: none;
      background: #f9fafb;
      font-size: 0.9rem;
    }
    .qty-input {
      width: 46px;
      text-align: center;
      border: none;
      font-size: 0.9rem;
    }
    .qty-input:focus { outline: none; box-shadow: none; }

    .coupon-box {
      border-radius: 1rem;
      border: 1px dashed #d1d5db;
      padding: 1rem 1.1rem;
      background: #fafafa;
    }
    .coupon-title {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #4b5563;
      margin-bottom: 0.4rem;
    }
    .coupon-text {
      font-size: 0.85rem;
      color: #6b7280;
      margin-bottom: 0.6rem;
    }

    .summary-card {
      border-radius: 1.1rem;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 1.35rem 1.35rem 1.2rem;
    }
    .summary-title {
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
    }
    .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
      margin-bottom: 0.4rem;
    }
    .summary-row.total {
      font-size: 1rem;
      font-weight: 700;
      margin-top: 0.5rem;
      padding-top: 0.6rem;
      border-top: 1px solid #e5e7eb;
    }
    .summary-note { font-size: 0.8rem; color: #6b7280; }
    .small-note { font-size: 0.8rem; color: #6b7280; }

    .cart-steps {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.45rem;
      padding: 0.35rem;
      border: 1px solid #e5e7eb;
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
      white-space: nowrap;
    }
    .cart-step {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      min-height: 36px;
      padding: 0.4rem 0.75rem 0.4rem 0.45rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #6b7280;
      letter-spacing: 0.08em;
    }
    .cart-step span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: #f3f4f6;
      color: #4b5563;
      font-size: 0.78rem;
      letter-spacing: 0;
    }
    .cart-step.active {
      background: #111111;
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(17, 17, 17, 0.16);
    }
    .cart-step.active span {
      background: var(--ida-accent);
      color: #ffffff;
    }

    @media (max-width: 767.98px) {
      .page-title { font-size: 1.3rem; }
      .cart-steps {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
        margin-top: 0.75rem;
      }
      .cart-step {
        flex: 1 0 auto;
        justify-content: center;
        padding-right: 0.6rem;
        font-size: 0.72rem;
      }
      .cart-card { padding: 1rem; }
      .summary-card { margin-top: 1.4rem; }
      .cart-table thead { display: none; }
      .cart-table tbody tr {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid #f3f4f6;
      }
      .cart-table tbody td {
        border-bottom: none;
        display: block;
        text-align: right;
      }
      .cart-table tbody td:first-child { text-align: left; }
    }

    /* Track Order */
    .page-hero {
      background-color: #111827;
      background-image: linear-gradient(120deg, rgba(2,6,23,0.78), rgba(2,6,23,0.55)), var(--ida-page-hero-image, none);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #f9fafb;
      padding: 2.5rem 0;
    }
    .page-hero-title {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .page-hero-subtitle {
      font-size: 0.95rem;
      color: #e5e7eb;
      max-width: 540px;
    }
    .page-hero-pill {
      display: inline-flex;
      align-items: center;
      background: rgba(15,23,42,0.7);
      border-radius: 999px;
      padding: 0.25rem 0.8rem;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.8rem;
    }
    .page-hero-pill i { margin-right: 0.35rem; }
    .track-card {
      background: #ffffff;
      border-radius: 1.2rem;
      border: 1px solid #e5e7eb;
      padding: 1.5rem 1.4rem;
      box-shadow: 0 12px 30px rgba(15,23,42,0.06);
    }
    .track-card-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #6b7280;
      font-weight: 600;
    }
    .btn-ghost-dark {
      border-radius: 999px;
      padding: 0.6rem 1.4rem;
      border: 1px solid #111827;
      color: #111827;
      background: transparent;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      white-space: nowrap;
    }
    .btn-ghost-dark:hover {
      background: #111827;
      color: #f9fafb;
    }
    .order-result-card {
      background: #ffffff;
      border-radius: 1.2rem;
      border: 1px solid #e5e7eb;
      padding: 1.4rem 1.4rem 1.2rem;
      margin-top: 1.4rem;
      display: none;
    }
    .order-header {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.4rem;
      align-items: center;
      margin-bottom: 0.75rem;
    }
    .order-id { font-weight: 700; font-size: 1rem; }
    .badge-status {
      border-radius: 999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .badge-status-processing { background: #fef3c7; color: #92400e; }
    .badge-status-dispatched { background: #d1fae5; color: #065f46; }
    .badge-status-delivered { background: #dcfce7; color: #166534; }
    .order-summary-list { font-size: 0.9rem; color: #4b5563; margin-bottom: 0.75rem; }
    .order-summary-list li { margin-bottom: 0.25rem; }
    .order-timeline {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0.4rem;
      position: relative;
    }
    .order-timeline::before {
      content: "";
      position: absolute;
      left: 9px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #e5e7eb;
    }
    .order-step {
      position: relative;
      padding-left: 2rem;
      padding-bottom: 0.75rem;
    }
    .order-step:last-child { padding-bottom: 0; }
    .order-step::before {
      content: "";
      position: absolute;
      left: 3px;
      top: 3px;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      border: 2px solid #e5e7eb;
      background: #fff;
    }
    .order-step.completed::before {
      border-color: #16a34a;
      background: #16a34a;
    }
    .order-step-title { font-size: 0.9rem; font-weight: 600; color: #111827; }
    .order-step-meta { font-size: 0.8rem; color: #6b7280; }
    .help-card {
      background: #111827;
      color: #e5e7eb;
      border-radius: 1.2rem;
      padding: 1.6rem 1.4rem;
      height: 100%;
    }
    .help-card h3 {
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.8rem;
    }
    .help-card p { font-size: 0.9rem; color: #d1d5db; }
    .help-card .list-unstyled li { font-size: 0.88rem; margin-bottom: 0.4rem; }
    .help-card .help-icon { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--ida-accent); }

    @media (max-width: 767.98px) {
      .page-hero-title { font-size: 1.7rem; }
    }

    /* Custom Order */
    .custom-card {
      border-radius: 1.2rem;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      box-shadow: 0 10px 30px rgba(15,23,42,0.06);
      padding: 1.5rem 1.7rem;
    }
    .step-item { display: flex; align-items: flex-start; margin-bottom: 1rem; }
    .step-badge {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: #000;
      color: #f9fafb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      margin-right: 0.8rem;
      flex-shrink: 0;
    }
    .step-title {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .step-text { font-size: 0.9rem; color: var(--ida-gray); }
    .badge-soft {
      border-radius: 999px;
      background: #f3f4f6;
      color: #4b5563;
      font-size: 0.75rem;
      padding: 0.2rem 0.7rem;
    }

    /* About */
    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 10% 10%, rgba(17,17,17,0.2), transparent 55%),
        radial-gradient(circle at 90% 80%, rgba(249,250,251,0.08), transparent 55%);
      opacity: 0.35;
      pointer-events: none;
    }
    .page-hero-inner { position: relative; z-index: 1; padding: 3.5rem 0 3rem; }
    .hero-stats {
      border-radius: 1.25rem;
      border: 1px solid rgba(156,163,175,0.4);
      background: rgba(15,23,42,0.7);
      padding: 1rem 1.2rem;
      backdrop-filter: blur(8px);
    }
    .hero-stat-number { font-size: 1.4rem; font-weight: 700; color: #ffffff; }
    .hero-stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: #e5e7eb; }
    .story-img { border-radius: 1.4rem; overflow: hidden; box-shadow: 0 18px 45px rgba(15,23,42,0.25); }
    .story-img img { width: 100%; height: 100%; object-fit: cover; }
    .pill-small {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      padding: 0.2rem 0.7rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #4b5563;
      background: #ffffff;
    }
    .pill-small i { margin-right: 0.35rem; font-size: 0.85rem; }
    .pillar-card {
      border-radius: 1.2rem;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 1.3rem 1.2rem 1.4rem;
      height: 100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .pillar-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(15,23,42,0.12); }
    .pillar-icon {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: #111827;
      color: #f9fafb;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.7rem;
    }
    .pillar-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
    .pillar-text { font-size: 0.92rem; color: var(--ida-gray); }
    .timeline { border-left: 1px solid #e5e7eb; margin-left: 0.7rem; padding-left: 1.2rem; }
    .timeline-item { position: relative; margin-bottom: 1.3rem; }
    .timeline-dot {
      position: absolute;
      left: -1.3rem;
      top: 0.1rem;
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: #111827;
      border: 2px solid #f8fafc;
      box-shadow: 0 0 0 4px rgba(15,23,42,0.15);
    }
    .timeline-year { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: #9ca3af; margin-bottom: 0.15rem; }
    .timeline-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
    .timeline-text { font-size: 0.9rem; color: var(--ida-gray); }
    .craft-step-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
    .craft-step-text { font-size: 0.9rem; color: var(--ida-gray); }
    .founder-card {
      border-radius: 1.5rem;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 1.5rem 1.4rem;
    }
    .founder-avatar {
      width: 72px;
      height: 72px;
      border-radius: 999px;
      background: #111827;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f9fafb;
      font-size: 1.8rem;
      margin-right: 0.9rem;
    }
    .founder-name { font-weight: 600; font-size: 1rem; }
    .founder-role { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.16em; color: #9ca3af; }
    .founder-quote { font-size: 0.95rem; color: #374151; }
    .visit-card {
      border-radius: 1.4rem;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 1.4rem 1.3rem;
      height: 100%;
    }
    .visit-map {
      border-radius: 1.4rem;
      overflow: hidden;
      background: linear-gradient(145deg, #0b132b, #111827);
      color: #e5e7eb;
      padding: 1rem 1.2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .visit-map-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.9rem;
      font-size: 0.9rem;
    }
    .visit-map-body { font-size: 0.86rem; color: #cbd5f5; }

    /* Contact */
    .contact-summary-card,
    .contact-wrapper,
    .info-card,
    .map-card,
    .help-strip {
      border-radius: 1rem;
      max-width: 100%;
    }
    .contact-summary-card {
      background: rgba(17, 24, 39, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: #ffffff;
      padding: 1.2rem;
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.28);
      backdrop-filter: blur(10px);
    }
    .summary-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.68);
      margin-bottom: 0.1rem;
    }
    .summary-value {
      font-size: 0.92rem;
      font-weight: 600;
      color: #ffffff;
      overflow-wrap: anywhere;
    }
    .contact-note {
      font-size: 0.82rem;
      color: #6b7280;
      max-width: 520px;
    }
    .contact-summary-card .contact-note {
      color: rgba(255, 255, 255, 0.72);
    }
    .info-card {
      height: 100%;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      padding: 1.1rem;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    }
    .info-card .info-icon,
    .contact-summary-card .info-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }
    .info-card .info-icon {
      background: #111827;
      color: #ffffff;
      margin-bottom: 0.75rem;
    }
    .contact-summary-card .info-icon {
      background: rgba(17, 17, 17, 0.95);
      color: #ffffff;
    }
    .info-title {
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.35rem;
      color: #111827;
    }
    .info-text {
      font-size: 0.9rem;
      color: #4b5563;
    }
    .contact-wrapper {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      padding: 1.25rem;
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    }
    .contact-wrapper .form-control,
    .contact-wrapper .form-select {
      border-radius: 0.75rem;
      min-height: 42px;
    }
    .contact-wrapper textarea.form-control {
      min-height: 132px;
      resize: vertical;
    }
    .map-card {
      overflow: hidden;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      min-height: 320px;
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    }
    .map-card iframe {
      display: block;
      width: 100%;
      min-height: 320px;
      height: 100%;
      border: 0;
    }
    .help-strip {
      background: #111827;
      color: #ffffff;
      padding: 1.4rem;
      min-height: 320px;
    }
    .help-strip p {
      color: rgba(255, 255, 255, 0.78);
    }

    /* FAQ */
    .page-hero.faq-hero {
      background: #f3f4f6;
      border-bottom: 1px solid #e5e7eb;
      padding: 2.5rem 0;
      color: #111827;
    }
    .faq-category-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #6b7280;
      margin-bottom: 0.4rem;
    }
    .accordion-item {
      border-radius: 0.8rem !important;
      border: 1px solid #e5e7eb;
      margin-bottom: 0.8rem;
      overflow: hidden;
      background: #ffffff;
    }
    .accordion-button {
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.75rem 1rem;
      background: #ffffff;
      color: #111827;
      box-shadow: none;
    }
    .accordion-button:not(.collapsed) {
      background: #f9fafb;
      color: #111827;
      border-bottom: 1px solid #e5e7eb;
    }
    .accordion-button::after {
      font-family: "Font Awesome 6 Free";
      content: "\f067";
      font-weight: 900;
      background-image: none;
      transform: none !important;
      font-size: 0.75rem;
    }
    .accordion-button:not(.collapsed)::after {
      content: "\f068";
    }
    .accordion-body {
      font-size: 0.92rem;
      color: #4b5563;
    }
    .faq-highlight { font-weight: 600; color: #111827; }
    .faq-box {
      border-radius: 1rem;
      border: 1px dashed #d1d5db;
      background: #ffffff;
      padding: 1.1rem 1.25rem;
      font-size: 0.9rem;
      color: #4b5563;
    }

    /* Shipping */
    .page-header.shipping-header {
      background: #f3f4f6;
      border-bottom: 1px solid #e5e7eb;
      padding: 1.75rem 0;
    }
    .page-title.shipping-title { font-size: 1.7rem; letter-spacing: 0.16em; }
    .page-subtitle.shipping-subtitle { max-width: 640px; }
    .content-wrapper { padding: 2.5rem 0 3.5rem; }
    .section-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 600;
      color: #6b7280;
      margin-bottom: 0.5rem;
    }
    .content-title {
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.6rem;
      color: var(--ida-black);
    }
    .content-text { font-size: 0.95rem; color: #4b5563; }
    .shipping-card {
      background: #ffffff;
      border-radius: 1rem;
      border: 1px solid #e5e7eb;
      padding: 1.25rem 1.4rem;
      height: auto;
      max-width: 100%;
    }
    .content-wrapper .row.g-3 > [class*="col-"] > .shipping-card {
      height: 100%;
    }
    .shipping-card h3 {
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.4rem;
      color: var(--ida-black);
    }
    .shipping-card p,
    .shipping-card li { font-size: 0.92rem; color: #4b5563; }
    .shipping-card ul {
      padding-left: 1.1rem;
      margin-bottom: 0;
    }
    .shipping-card .accordion-item {
      margin-bottom: 0.55rem;
    }
    .badge-accra { background: #d1fae5; color: #047857; }
    .badge-ghana { background: #e0f2fe; color: #111827; }
    .badge-intl { background: #fef3c7; color: #92400e; }
    .shipping-table { font-size: 0.9rem; }
    .shipping-table th {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
      color: #6b7280;
    }
    .note-box {
      border-left: 3px solid var(--ida-accent);
      background: #fff7ed;
      border-radius: 0.75rem;
      padding: 0.9rem 1rem;
      font-size: 0.9rem;
      color: #92400e;
    }

    /* Returns Policy */
    .page-hero.returns-hero {
      background: #f3f4f6;
      border-bottom: 1px solid #e5e7eb;
      padding: 2.5rem 0;
    }
    .page-hero-title.returns-title {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ida-black);
    }
    .page-hero-subtitle.returns-subtitle {
      font-size: 0.95rem;
      color: var(--ida-gray);
      max-width: 640px;
    }
    .policy-section {
      background: #ffffff;
      border-radius: 1.2rem;
      border: 1px solid #e5e7eb;
      padding: 2rem 1.6rem;
    }
    @media (min-width: 768px) {
      .policy-section { padding: 2.5rem 2.4rem; }
    }
    .policy-section h2 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ida-black);
    }
    .policy-section p { font-size: 0.95rem; color: #4b5563; }
    .policy-section ul { padding-left: 1.1rem; }
    .policy-section li { margin-bottom: 0.4rem; font-size: 0.95rem; color: #4b5563; }

    /* Ambassador */
    .hero-ambassador {
      background-color: #111827;
      background-image: linear-gradient(120deg, rgba(17,17,17,0.72), rgba(2,6,23,0.6)), var(--ida-page-hero-image, none);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #f9fafb;
      padding: 3rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(15,23,42,0.4);
      border-radius: 999px;
      padding: 0.25rem 0.8rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .hero-badge i { margin-right: 0.4rem; }
    .hero-title {
      font-size: 2.1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .hero-tagline {
      font-size: 1rem;
      color: #e5e7eb;
      max-width: 520px;
    }
    .hero-list li { font-size: 0.95rem; margin-bottom: 0.25rem; }
    .hero-list i { color: #facc15; margin-right: 0.4rem; }
    .btn-outline-light-pill {
      background: transparent;
      border-radius: 999px;
      border: 1px solid rgba(249,250,251,0.6);
      color: #f9fafb;
      padding: 0.7rem 1.6rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      white-space: nowrap;
    }
    .btn-outline-light-pill:hover { background: rgba(249,250,251,0.08); }
    .hero-card {
      background: rgba(15,23,42,0.8);
      border-radius: 1.2rem;
      padding: 1.4rem 1.5rem;
      border: 1px solid rgba(248,250,252,0.08);
    }
    .hero-stat { font-size: 1.3rem; font-weight: 700; }
    .hero-stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: #9ca3af; }
    .amb-info-card {
      border-radius: 1rem;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 1.4rem 1.3rem;
      height: 100%;
    }
    .amb-info-icon {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: #111827;
      color: #f9fafb;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.7rem;
      font-size: 1rem;
    }
    .amb-info-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
    .amb-info-text { font-size: 0.9rem; color: var(--ida-gray); }
    .amb-step-timeline { position: relative; padding-left: 1.8rem; }
    .amb-step-timeline::before {
      content: "";
      position: absolute;
      left: 0.6rem;
      top: 0;
      bottom: 0;
      border-left: 2px dashed #d1d5db;
    }
    .amb-step-item { position: relative; padding-bottom: 1.4rem; }
    .amb-step-dot {
      position: absolute;
      left: -0.04rem;
      top: 0.15rem;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: #000;
      border: 3px solid #111111;
    }
    .amb-step-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #9ca3af;
      margin-bottom: 0.1rem;
    }
    .amb-step-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
    .amb-step-text { font-size: 0.9rem; color: var(--ida-gray); }
    .amb-earnings-table {
      background: #ffffff;
      border-radius: 1rem;
      border: 1px solid #e5e7eb;
      padding: 1rem 1.2rem 1.3rem;
    }
    .amb-earnings-table table { font-size: 0.9rem; }
    .amb-earnings-highlight {
      background: #111827;
      color: #f9fafb;
      border-radius: 0.8rem;
      padding: 0.9rem 1rem;
      font-size: 0.9rem;
    }
    .list-check li { margin-bottom: 0.35rem; font-size: 0.9rem; }
    .list-check li i { color: #16a34a; margin-right: 0.5rem; }
    .faq-accordion .accordion-button { font-size: 0.9rem; font-weight: 500; }
    .faq-accordion .accordion-body { font-size: 0.9rem; color: var(--ida-gray); }
    .amb-form-section {
      background: #ffffff;
      border-radius: 1.3rem;
      border: 1px solid #e5e7eb;
      padding: 1.8rem 1.6rem;
    }
    .required-star { color: #dc2626; }
    @media (max-width: 767.98px) {
      .hero-title { font-size: 1.8rem; }
    }

    /* Benefits Strip */
    .benefit-strip {
      background: #111827;
      color: #f9fafb;
      border-radius: 1rem;
      padding: 1.5rem;
    }
    .benefit-icon {
      font-size: 1.4rem;
      margin-right: 0.6rem;
      color: var(--ida-accent);
    }
    .benefit-title {
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .benefit-text {
      font-size: 0.85rem;
      color: #d1d5db;
    }

    /* Blog section */
.blog-card {
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.12);
}
.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.blog-body {
  padding: 0.9rem 1rem 1.1rem;
  flex: 1;
}
.blog-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}
.blog-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ida-black);
  margin-bottom: 0.4rem;
}
.blog-excerpt {
  font-size: 0.9rem;
  color: var(--ida-gray);
  margin-bottom: 0.7rem;
}
.blog-readmore {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #111827;
}
.blog-readmore i {
  font-size: 0.8rem;
  margin-left: 0.25rem;
}


    /* Instagram */
    .instagram-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }
    @media (min-width: 576px) {
      .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 992px) {
      .instagram-grid { grid-template-columns: repeat(6, 1fr); }
    }
    .insta-item {
      position: relative;
      border-radius: 0.9rem;
      overflow: hidden;
      cursor: pointer;
    }
    .insta-item img {
      width: 100%;
      height: 110px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .insta-item:hover img { transform: scale(1.06); }
    .insta-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,23,42,0.8), transparent);
      opacity: 0;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 0.4rem 0.5rem;
      color: #f9fafb;
      font-size: 0.75rem;
      transition: opacity 0.3s ease;
    }
    .insta-item:hover .insta-overlay { opacity: 1; }

    /* CTA */
    .cta-banner {
      border-radius: 1.4rem;
      background: radial-gradient(circle at top left, var(--ida-accent), #111827);
      color: #f9fafb;
      padding: 2.5rem 1.8rem;
      position: relative;
      overflow: hidden;
    }
    .cta-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(15,23,42,0.35);
      border-radius: 999px;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.8rem;
    }
    .cta-title {
      font-size: 1.7rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .cta-text {
      font-size: 0.95rem;
      color: #e5e7eb;
      max-width: 480px;
    }

    /* Footer */
    .footer {
      background: #020617;
      color: #e5e7eb;
      padding-top: 2.5rem;
      margin-top: 4rem;
    }
    .footer a {
      color: #9ca3af;
      font-size: 0.9rem;
    }
    .footer a:hover { color: #f9fafb; }
    .footer-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #9ca3af;
      margin-bottom: 0.8rem;
      font-weight: 600;
    }
    .footer-bottom {
      border-top: 1px solid #111827;
      padding: 1rem 0;
      font-size: 0.85rem;
      color: #6b7280;
    }
    .footer-logo {
      max-height: 42px;
      margin-bottom: 0.8rem;
    }

    /* Account / Auth */
    .account-page { padding: 3rem 0 4rem; background: #f8f8fb; }
    .account-card { border-radius: 1.5rem; overflow: hidden; background: #ffffff; box-shadow: 0 18px 50px rgba(15,23,42,0.12); }
    .account-left { background: radial-gradient(circle at top left, var(--ida-accent), #111827); color: #f9fafb; position: relative; padding: 2.5rem 2rem; }
    .account-left-logo { max-height: 56px; margin-bottom: 2rem; }
    .account-left h1 { font-size: 1.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
    .account-left p { font-size: 0.95rem; color: #e5e7eb; }
    .account-left-list { margin-top: 1.5rem; list-style: none; padding: 0; font-size: 0.9rem; }
    .account-left-list li { margin-bottom: 0.5rem; display: flex; align-items: center; }
    .account-left-list i { margin-right: 0.5rem; color: #facc15; }
    .account-right { padding: 2.5rem 2.5rem 2.2rem; }
    .account-tabs .nav-link { border-radius: 999px; border: 1px solid #e5e7eb; padding: 0.45rem 1.3rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; color: #4b5563; margin-right: 0.5rem; }
    .account-tabs .nav-link.active { background: #000; color: #f9fafb; border-color: #000; }
    .account-title { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 0.3rem; }
    .account-subtitle { font-size: 0.9rem; color: #6b7280; margin-bottom: 1.3rem; }
    .account-form .form-label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #4b5563; }
    .account-form .form-control, .account-form .form-select { border-radius: 0.6rem; border-color: #e5e7eb; font-size: 0.95rem; }
    .account-form .form-control:focus, .account-form .form-select:focus { border-color: #000; box-shadow: 0 0 0 0.1rem rgba(0,0,0,0.1); }
    .account-form .form-text { color: #6b7280; }
    .account-form .btn-ida-primary { background: #000; color: #ffffff; border-radius: 999px; padding: 0.65rem 1.6rem; font-weight: 600; border: 1px solid #000; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }
    .account-form .btn-ida-primary:hover { background: #020617; color: #ffffff; }
    .account-form .btn-outline-ida { border-radius: 999px; padding: 0.6rem 1.4rem; border: 1px solid #d1d5db; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: #4b5563; background: #fff; }
    .account-form .btn-outline-ida:hover { border-color: #000; color: #000; }
    @media (max-width: 991.98px) {
      .account-left { display: none; }
      .account-right { padding: 2rem 1.5rem 2.2rem; }
    }

    /* Back to top & WhatsApp buttons */
    .floating-btn {
      position: fixed;
      z-index: 999;
      right: 1.2rem;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(15,23,42,0.4);
    }
    #backToTopBtn {
      bottom: 5.5rem;
      background: #000;
      color: #f9fafb;
      display: none;
    }
    #whatsappBtn {
      bottom: 1.5rem;
      background: #22c55e;
      color: #f9fafb;
    }
    #backToTopBtn:hover { background: #020617; }
    #whatsappBtn:hover { background: #16a34a; }

    @media (max-width: 767.98px) {
      .hero-title { font-size: 1.9rem; }
      .hero-subtitle { font-size: 0.95rem; }
      .page-title { font-size: 1.2rem; }
    }

    @media (max-width: 991.98px) {
      .store-notice {
        font-size: 0.76rem;
        line-height: 1.35;
        padding: 0.45rem 0.75rem;
      }
      .top-bar {
        padding: 0.5rem 0;
        position: sticky;
        top: 0;
        z-index: 1040;
        box-shadow: 0 6px 18px rgba(15,23,42,0.08);
      }
      .top-bar .row {
        flex-wrap: nowrap;
      }
      .header-logo {
        max-height: 40px;
        max-width: 112px;
        object-fit: contain;
      }
      .header-actions {
        gap: 0.55rem;
      }
      .icon-badge {
        font-size: 1rem;
        width: 28px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .icon-badge .badge {
        top: 0;
        right: -3px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.62rem;
      }
      .main-navbar {
        padding: 0;
      }
      .main-navbar > .container {
        display: block;
        padding-left: 0;
        padding-right: 0;
      }
      .main-navbar .navbar-toggler {
        display: none;
      }
      .main-navbar .navbar-collapse {
        border-bottom: 1px solid #e5e7eb;
        background: #ffffff;
      }
      .main-navbar .navbar-nav {
        padding: 0.6rem 1rem 0.8rem;
      }
      .main-navbar .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.72rem 0 !important;
        border-bottom: 1px solid #f3f4f6;
        font-size: 0.86rem;
      }
      .main-navbar .nav-link.active,
      .main-navbar .nav-link:hover {
        border-bottom-color: #f3f4f6;
        color: var(--ida-accent);
      }
      .dropdown-menu {
        border: 0;
        box-shadow: none !important;
        padding: 0.15rem 0 0.5rem 0.65rem;
      }
      .dropdown-item {
        font-size: 0.88rem;
        padding: 0.45rem 0.25rem;
      }
      .product-grid {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.9rem;
      }
      .product-image-wrapper img {
        height: 190px;
      }
      .product-info {
        padding: 0.8rem 0.75rem 0.9rem;
      }
      .product-name a {
        font-size: 0.88rem;
        line-height: 1.25;
      }
      .product-meta {
        font-size: 0.74rem;
      }
      .product-price {
        font-size: 0.9rem;
      }
      .product-actions-main {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
      }
      .product-actions-main .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
      }
    }

    @media (max-width: 575.98px) {
      .top-bar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
      }
      .mobile-menu-toggle {
        width: 36px;
        height: 36px;
      }
      .header-logo {
        max-height: 36px;
        max-width: 96px;
      }
      .header-actions {
        gap: 0.38rem;
      }
      .icon-badge {
        width: 24px;
        font-size: 0.95rem;
      }
      .product-image-wrapper img {
        height: 165px;
      }
      .product-actions-main {
        grid-template-columns: 1fr;
      }
      .section-title {
        font-size: 1.15rem;
      }
      .page-hero-inner {
        padding: 2.5rem 0 2.25rem;
      }
      .content-wrapper {
        padding: 1.75rem 0 2.5rem;
      }
      .shipping-card,
      .contact-wrapper,
      .info-card,
      .help-strip {
        padding: 1rem;
      }
      .map-card,
      .map-card iframe,
      .help-strip {
        min-height: 260px;
      }
    }


/* -------------------------------------------------------
   Production readiness polish: brand, images, responsiveness
   ------------------------------------------------------- */
:root {
  --ida-black: #111111;
  --ida-dark: #111827;
  --ida-gray: #6b7280;
  --ida-light-bg: #f8f8fb;
  --ida-accent: #111111;
  --ida-border: #e5e7eb;
  --ida-card: #ffffff;
  --ida-page-hero-image: url('../images/blog-featured.jpg');
}

.store-notice a { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }
.btn-ida-primary, .btn-ida-outline:hover, .badge.bg-primary, .icon-badge .badge { background-color: var(--ida-black) !important; border-color: var(--ida-black) !important; }
.btn-ida-primary:hover { background-color: #000000 !important; border-color: #000000 !important; }
.text-primary, .ida-text-accent { color: var(--ida-black) !important; }
.border-primary { border-color: var(--ida-black) !important; }

.hero-section,
.page-hero,
.page-header {
  background-image: linear-gradient(120deg, rgba(2,6,23,0.78), rgba(2,6,23,0.52)), var(--ida-page-hero-image, url('../images/blog-featured.jpg')) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.page-header { color: #ffffff; border-bottom: 0; padding: 4rem 0 3.2rem; }
.page-header h1, .page-header .breadcrumb, .page-header p { color: #ffffff; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.86); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.72); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.65); }

.story-img {
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  overflow: hidden;
  margin-inline: auto;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.26);
  border: 8px solid #ffffff;
  animation: idaFloat 6s ease-in-out infinite;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@keyframes idaFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .story-img { animation: none; } }

.blog-single-featured-image,
.article-hero-image img {
  width: 100%;
  max-height: 400px !important;
  object-fit: cover;
  object-position: center;
}

img { max-width: 100%; height: auto; }
.product-card img,
.product-card .product-img,
.product-image img,
.product-gallery img,
.card-img-top,
.blog-card img,
.category-card img { object-fit: cover; }
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 1199.98px) {
  .main-navbar .nav-link { padding-inline: .55rem !important; letter-spacing: .06em; }
  .header-actions { gap: .45rem; }
}
@media (max-width: 991.98px) {
  .store-notice { text-align: center; font-size: .8rem; }
  .top-bar .container, .top-bar .d-flex { gap: .5rem; flex-wrap: wrap; justify-content: center !important; }
  .top-bar-links { text-align: center; }
  .top-bar-links a { margin: .15rem .45rem; display: inline-block; }
  .main-navbar .navbar-collapse { padding: .75rem 0 1rem; }
  .main-navbar .nav-link { border-bottom: 1px solid var(--ida-border); padding: .9rem .25rem !important; }
  .main-navbar .nav-link.active, .main-navbar .nav-link:hover { border-bottom-color: var(--ida-black); }
  .hero-title, .page-hero-title { font-size: clamp(1.8rem, 8vw, 2.45rem) !important; }
  .hero-subtitle, .page-hero-subtitle { font-size: .98rem; }
  .page-hero-inner { padding: 3rem 0 2.5rem !important; }
  .page-header { padding: 3rem 0 2.5rem; }
  .story-img { width: min(92vw, 380px); border-width: 6px; margin-top: 1rem; }
  .cart-table, .table { min-width: 680px; }
  .checkout-summary, .cart-summary, .account-card, .admin-card { margin-top: 1rem; }
}
@media (max-width: 767.98px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .hero-section { min-height: 560px; }
  .hero-title { line-height: 1.08; }
  .section-title { font-size: 1.25rem; letter-spacing: .12em; }
  .btn-ida-primary, .btn-ghost-light { width: 100%; justify-content: center; text-align: center; padding-inline: 1rem; }
  .product-slider { gap: .75rem; }
  .product-card { min-width: 72vw; }
  .row.g-4, .row.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
  .footer .row, footer .row { row-gap: 1.5rem; }
  .blog-single-featured-image, .article-hero-image img { max-height: 320px !important; }
}
@media (max-width: 575.98px) {
  .header-logo { max-height: 42px; }
  .header-actions .btn, .header-actions .small-text { display: none !important; }
  .icon-badge { font-size: 1rem; }
  .page-header, .page-hero { text-align: center; }
  .page-header { padding: 2.5rem 0 2rem; }
  .hero-tag-pill, .page-hero-pill { margin-inline: auto; }
  .story-img { width: min(86vw, 310px); }
  .product-card { min-width: 84vw; }
  .card-body, .card-footer { padding: 1rem; }
  input, select, textarea, .form-control, .form-select, .btn { font-size: 1rem; }
  .blog-single-featured-image, .article-hero-image img { max-height: 260px !important; }
}

/* Production patch: blog hero/readability and reliable media sizing */
.page-hero.blog-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #ffffff !important;
  background-image: linear-gradient(120deg, rgba(0,0,0,0.82), rgba(17,17,17,0.58)), var(--ida-page-hero-image, url('../images/blog-featured.jpg')) !important;
  background-size: cover !important;
  background-position: center !important;
  border-bottom: 0 !important;
  overflow: hidden;
}
.page-hero.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 32%), linear-gradient(90deg, rgba(0,0,0,0.5), transparent 70%);
  pointer-events: none;
}
.page-hero.blog-hero .page-hero-inner,
.page-hero.blog-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero.blog-hero .page-hero-title,
.page-hero.blog-hero .page-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 4.25rem) !important;
  line-height: 1.04;
  max-width: 920px;
  text-shadow: 0 10px 35px rgba(0,0,0,0.45);
}
.page-hero.blog-hero .page-hero-subtitle,
.page-hero.blog-hero .page-subtitle {
  color: rgba(255,255,255,0.86) !important;
  max-width: 760px;
  font-size: 1.03rem;
  line-height: 1.75;
}
.page-hero.blog-hero .breadcrumb,
.page-hero.blog-hero .breadcrumb a,
.page-hero.blog-hero .breadcrumb-item,
.page-hero.blog-hero .breadcrumb-item.active {
  color: rgba(255,255,255,0.86) !important;
}
.page-hero.blog-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.7) !important;
}
.blog-single-featured-image {
  display: block;
  width: 100%;
  height: min(400px, 55vw) !important;
  max-height: 400px !important;
  object-fit: cover;
  object-position: center;
  background: #f3f4f6;
}
.blog-card {
  min-height: 100%;
  visibility: visible !important;
  opacity: 1 !important;
}
.blog-card img {
  display: block;
  background: #f3f4f6;
}
.visit-card {
  width: 100%;
}
@media (max-width: 767.98px) {
  .page-hero.blog-hero { min-height: 330px; text-align: center; }
  .page-hero.blog-hero .page-hero-subtitle { margin-inline: auto; }
  .blog-single-featured-image { height: min(320px, 70vw) !important; }
}
@media (max-width: 575.98px) {
  .page-hero.blog-hero { min-height: 300px; }
  .blog-single-featured-image { height: 245px !important; }
}

/* Final blog single-page patch: featured image lives in hero only, content is the focus. */
.blog-article .blog-content {
  color: #1f2937;
  font-size: 1.02rem;
  line-height: 1.85;
}
.blog-article .blog-content p,
.blog-article .blog-content li {
  color: #374151;
  font-size: 1.02rem;
  line-height: 1.85;
}
.blog-article .blog-content h2,
.blog-article .blog-content h3,
.blog-article .blog-content h4 {
  color: var(--ida-black);
  margin-top: 1.5rem;
  margin-bottom: .75rem;
  letter-spacing: normal;
  text-transform: none;
}
.blog-article .blog-content img,
.blog-article .blog-single-featured-image {
  display: none !important;
}
