 /* ════════════════════════════════════════════════════════
       ROOT — Using YOUR exact CSS variables
    ════════════════════════════════════════════════════════ */
    :root {
      --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      --heading-font: "Raleway", sans-serif;
      --nav-font: "Raleway", sans-serif;
      --background-color: #040000;
      --default-color: #f8f8f8;
      --heading-color: #ffffff;
      --accent-color: #e59d02;
      --surface-color: #191919;
      --contrast-color: #ffffff;
    }

    body {
      font-family: var(--default-font);
      color: var(--default-color);
      background-color: var(--background-color);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--heading-font);
      color: var(--heading-color);
    }

    /* ════════════════════════════════════════════════════════
       FLOATING WHATSAPP
    ════════════════════════════════════════════════════════ */
    .btn-wa-float {
      position: fixed; bottom: 30px; right: 30px; z-index: 1000;
      background: #25D366; width: 60px; height: 60px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 30px rgba(37,211,102,.4);
      transition: all .3s; text-decoration: none;
      animation: wa-pulse 2.5s infinite;
    }
    .btn-wa-float:hover { transform: scale(1.1); background: #128C7E; }
    .btn-wa-float i { font-size: 1.9rem; color: #fff; }
    @keyframes wa-pulse {
      0%  { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
      70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
      100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }

    /* ════════════════════════════════════════════════════════
       MARQUEE
    ════════════════════════════════════════════════════════ */
    .marquee-wrap {
      background: var(--surface-color);
      padding: 14px 0;
      border-top: 1px solid rgba(229,157,2,0.15);
      border-bottom: 1px solid rgba(229,157,2,0.15);
      overflow: hidden;
    }
    .marquee-track {
      display: flex; gap: 52px;
      animation: scrollMarquee 32s linear infinite;
      width: max-content;
    }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes scrollMarquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-item {
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: .78rem; letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent-color);
      white-space: nowrap;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .marquee-item i {
      color: var(--accent-color);
      font-size: .85rem;
    }

    /* ════════════════════════════════════════════════════════
       HERO
    ════════════════════════════════════════════════════════ */
    .hero-section {
      padding: 140px 0 80px;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, rgba(229,157,2,0.04) 0%, var(--background-color) 40%, rgba(229,157,2,0.02) 100%);
      position: relative;
    }
    .hero-section::before {
      content: "";
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(229,157,2,0.08) 0%, transparent 70%);
      border-radius: 50%;
      top: -20%; right: -10%;
      animation: float 6s ease-in-out infinite;
      z-index: 1;
    }
    .hero-title {
      font-family: var(--heading-font);
      font-weight: 900;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      color: var(--heading-color);
      line-height: 1.1;
      margin-bottom: 25px;
      letter-spacing: -0.02em;
    }
    .hero-title .typed {
      background: linear-gradient(135deg, var(--accent-color) 0%, #ffb830 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }
    .hero-description {
      font-family: var(--default-font);
      font-size: 1.2rem;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-image-showcase {
      position: relative;
      display: inline-block;
      width: 100%;
      margin-top: 40px;
    }
    .hero-image-showcase .image-wrapper {
      position: relative;
      background: var(--surface-color);
      border-radius: 20px;
      padding: 15px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      border: 1px solid rgba(229,157,2,0.15);
    }
    .hero-image-showcase .image-wrapper > img {
      border-radius: 15px;
      width: 100%;
      height: auto;
    }

    /* Floating cards */
    .floating-card {
      position: absolute;
      background: var(--surface-color);
      border: 1px solid rgba(229,157,2,0.2);
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.5);
      backdrop-filter: blur(10px);
      z-index: 10;
      animation: float 3s ease-in-out infinite;
    }
    .floating-card.card-1 {
      top: 20%; left: -60px;
    }
    .floating-card.card-2 {
      bottom: 15%; right: -60px;
      animation-delay: 1.5s;
    }
    .floating-card .card-content {
      display: flex; align-items: center; gap: 15px;
    }
    .floating-card .card-icon {
      background: rgba(229,157,2,0.12);
      width: 50px; height: 50px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .floating-card .card-icon i {
      color: var(--accent-color); font-size: 20px;
    }
    .floating-card .card-info h4 {
      font-family: var(--heading-font);
      font-size: 1.5rem; font-weight: 700;
      color: var(--heading-color); margin: 0; line-height: 1;
    }
    .floating-card .card-info p {
      margin: 5px 0 0;
      color: color-mix(in srgb, var(--default-color), transparent 40%);
      font-size: 0.85rem; white-space: nowrap;
      font-family: var(--default-font);
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
    }

    /* Hero action buttons */
    .hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
    .action-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 32px; border-radius: 50px;
      font-family: var(--heading-font);
      font-weight: 600; font-size: 16px;
      transition: all 0.3s ease; text-decoration: none;
      position: relative; overflow: hidden;
    }
    .action-btn.primary {
      background: var(--accent-color);
      color: var(--contrast-color);
      border: 2px solid var(--accent-color);
    }
    .action-btn.primary::before {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #ffb830 0%, var(--accent-color) 100%);
      opacity: 0; transition: opacity 0.3s ease;
    }
    .action-btn.primary span,
    .action-btn.primary i { position: relative; z-index: 1; }
    .action-btn.primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(229,157,2,0.3);
    }
    .action-btn.primary:hover::before { opacity: 1; }
    .action-btn.secondary {
      background: transparent;
      color: var(--default-color);
      border: 2px solid rgba(229,157,2,0.3);
    }
    .action-btn.secondary:hover {
      background: var(--surface-color);
      border-color: var(--accent-color);
      color: var(--accent-color);
      transform: translateY(-3px);
    }

    /* ════════════════════════════════════════════════════════
       ABOUT SECTION
    ════════════════════════════════════════════════════════ */
    .about-section {
      padding: 80px 0;
      background: var(--background-color);
    }
    .about-section h2 {
      font-family: var(--heading-font);
      font-weight: 700;
    }
    .about-section h2 span {
      color: var(--accent-color);
    }
    .about-section h5 {
      font-family: var(--heading-font);
      color: color-mix(in srgb, var(--heading-color), transparent 20%);
      font-weight: 500;
    }
    .about-section p {
      font-family: var(--default-font);
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      line-height: 1.8;
    }
    .about-section .feature-item h5 {
      font-family: var(--heading-font);
      color: var(--heading-color);
      font-weight: 600;
    }

    /* ════════════════════════════════════════════════════════
       CATEGORIES — Sleek cards with gold accents
    ════════════════════════════════════════════════════════ */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }
    .category-item {
      background: var(--surface-color);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(229,157,2,0.1);
      transition: all .38s cubic-bezier(.2,.9,.4,1.1);
      cursor: pointer;
      position: relative;
    }
    .category-item:hover {
      transform: translateY(-8px);
      border-color: var(--accent-color);
      box-shadow: 0 30px 60px -15px rgba(229,157,2,0.15);
    }
    .category-item.active-cat {
      border-color: var(--accent-color);
      box-shadow: 0 0 0 2px rgba(229,157,2,0.3), 0 20px 50px -10px rgba(0,0,0,.5);
    }
    .cat-img-wrap {
      position: relative; overflow: hidden; height: 190px;
    }
    .cat-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .6s ease; display: block;
    }
    .category-item:hover .cat-img-wrap img { transform: scale(1.07); }
    .cat-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(4,0,0,.85) 0%, transparent 55%);
      pointer-events: none;
    }
    .cat-info {
      padding: 18px 20px 20px;
      display: flex; align-items: flex-start; gap: 14px;
    }
    .cat-icon-badge {
      width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
      background: rgba(229,157,2,0.1);
      border: 1px solid rgba(229,157,2,0.2);
      display: flex; align-items: center; justify-content: center;
      transition: all .3s;
    }
    .category-item:hover .cat-icon-badge {
      background: linear-gradient(135deg, var(--accent-color), #ffb830);
      border-color: var(--accent-color);
    }
    .cat-icon-badge i { font-size: 1.15rem; color: var(--accent-color); transition: color .3s; }
    .category-item:hover .cat-icon-badge i { color: #000; }
    .cat-text h5 {
      font-family: var(--heading-font);
      font-size: 1.08rem; font-weight: 700;
      color: var(--heading-color); margin: 0 0 3px;
    }
    .cat-text small {
      font-family: var(--default-font);
      font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--accent-color); display: block;
    }
    .cat-arrow {
      margin-left: auto; color: color-mix(in srgb, var(--default-color), transparent 40%);
      font-size: .95rem; transition: all .3s; flex-shrink: 0;
    }
    .category-item:hover .cat-arrow { color: var(--accent-color); transform: translateX(4px); }

    /* ════════════════════════════════════════════════════════
       FILTER TABS
    ════════════════════════════════════════════════════════ */
    .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
    .filter-tab {
      padding: 7px 18px; border-radius: 30px;
      border: 2px solid rgba(229,157,2,.25);
      background: transparent;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      font-size: .78rem; letter-spacing: 1px; text-transform: uppercase;
      font-family: var(--heading-font); font-weight: 600;
      cursor: pointer; transition: all .25s;
    }
    .filter-tab:hover { border-color: var(--accent-color); color: var(--default-color); }
    .filter-tab.active {
      background: linear-gradient(135deg, var(--accent-color), #ffb830);
      color: #000; border-color: var(--accent-color);
    }

    /* ════════════════════════════════════════════════════════
       PRODUCT CARDS
    ════════════════════════════════════════════════════════ */
    .product-card {
      background: var(--surface-color); border-radius: 16px; overflow: hidden;
      transition: all .38s ease; border: 1px solid rgba(229,157,2,0.1);
      cursor: pointer; position: relative;
    }
    .product-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 25px 45px -12px rgba(229,157,2,0.15);
      border-color: var(--accent-color);
    }
    .product-img-wrap { position: relative; overflow: hidden; height: 280px; }
    .product-img {
      height: 100%; width: 100%; object-fit: cover;
      transition: transform .55s ease; display: block;
    }
    .product-card:hover .product-img { transform: scale(1.06); }
    .product-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(4,0,0,.8) 0%, rgba(4,0,0,.1) 50%, transparent 100%);
      display: flex; align-items: flex-end; justify-content: space-between;
      padding: 16px; opacity: 0; transition: opacity .3s ease;
    }
    .product-card:hover .product-overlay { opacity: 1; }
    .product-zoom-btn {
      width: 40px; height: 40px; background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: .95rem; border: 1px solid rgba(255,255,255,.2);
      transition: all .2s; cursor: pointer;
    }
    .product-zoom-btn:hover { background: rgba(255,255,255,.3); transform: scale(1.1); }
    .product-wa-btn {
      background: #25D366; border-radius: 30px; padding: 8px 16px;
      font-size: .68rem; font-weight: 600; transition: all .3s; color: #fff;
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--default-font); letter-spacing: .5px;
    }
    .product-wa-btn:hover { background: #128C7E; transform: translateY(-2px); color: #fff; }
    .product-footer {
      padding: 12px 14px; border-top: 1px solid rgba(229,157,2,0.1);
      display: flex; align-items: center; justify-content: space-between;
    }
    .product-category-badge {
      font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--accent-color);
      font-family: var(--heading-font); font-weight: 600;
    }

    /* ════════════════════════════════════════════════════════
       FEATURES SECTION — Yoceleb features-grid style
    ════════════════════════════════════════════════════════ */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 28px; margin-top: 52px;
    }
    .feature-item-card {
      background: var(--surface-color); border-radius: 20px;
      padding: 35px 28px;
      border: 1px solid rgba(229,157,2,0.1);
      transition: all .35s; position: relative; overflow: hidden;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    }
    .feature-item-card::before {
      content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--accent-color), rgba(229,157,2,0.3));
      transition: left .5s ease;
    }
    .feature-item-card:hover {
      transform: translateY(-15px);
      border-color: var(--accent-color);
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    .feature-item-card:hover::before { left: 0; }

    .feature-number {
      font-family: var(--heading-font);
      font-size: 48px; font-weight: 900; line-height: 1;
      color: rgba(229,157,2,0.08); position: absolute;
      top: 20px; right: 25px; z-index: 1;
      transition: all .35s;
    }
    .feature-item-card:hover .feature-number {
      color: rgba(229,157,2,0.18);
      transform: scale(1.1);
    }

    .feature-icon-wrap {
      width: 70px; height: 70px; border-radius: 16px;
      background: rgba(229,157,2,0.1);
      border: 1px solid rgba(229,157,2,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 25px; position: relative; z-index: 2;
      transition: all .35s;
      box-shadow: 0 8px 25px rgba(229,157,2,0.15);
    }
    .feature-item-card:hover .feature-icon-wrap {
      background: linear-gradient(135deg, var(--accent-color), #ffb830);
      border-color: var(--accent-color);
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 12px 35px rgba(229,157,2,0.3);
    }
    .feature-icon-wrap i {
      font-size: 32px; color: var(--accent-color); transition: color .35s;
    }
    .feature-item-card:hover .feature-icon-wrap i { color: #000; }

    .feature-item-card h4 {
      font-family: var(--heading-font);
      font-size: 1.35rem; font-weight: 700;
      color: var(--heading-color); margin: 0 0 12px;
      position: relative; z-index: 2;
    }
    .feature-item-card p {
      font-family: var(--default-font); font-size: .9rem;
      color: color-mix(in srgb, var(--default-color), transparent 25%); line-height: 1.65;
      margin: 0 0 16px; position: relative; z-index: 2;
    }
    .feature-tags { display: flex; gap: 8px; flex-wrap: wrap; position: relative; z-index: 2; }
    .feature-tags .tag {
      background: rgba(229,157,2,0.1);
      color: var(--accent-color);
      padding: 6px 14px; border-radius: 20px;
      font-family: var(--heading-font); font-weight: 600;
      font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
      transition: all .3s;
    }
    .feature-item-card:hover .feature-tags .tag {
      background: var(--accent-color);
      color: #000;
    }

    /* Features intro row */
    .features-intro-content h2 {
      font-family: var(--heading-font);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; color: var(--heading-color); line-height: 1.2; margin-bottom: 16px;
    }
    .features-intro-content p {
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      font-family: var(--default-font);
      font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px;
    }
    .feature-stats-row { display: flex; gap: 30px; flex-wrap: wrap; }
    .feature-stat-item { text-align: center; }
    .feature-stat-number {
      font-family: var(--heading-font);
      font-size: 2.2rem; font-weight: 700; color: var(--accent-color); line-height: 1;
    }
    .feature-stat-label {
      font-family: var(--default-font); font-size: .72rem;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: color-mix(in srgb, var(--default-color), transparent 40%); margin-top: 4px;
    }

    /* ════════════════════════════════════════════════════════
       SECTION STYLES
    ════════════════════════════════════════════════════════ */
    .section {
      padding: 80px 0;
      background: var(--background-color);
      scroll-margin-top: 90px;
    }
    .light-background {
      background: #1b1a1a;
      --surface-color: #282828;
    }
    .section-title {
      text-align: center;
      padding-bottom: 60px;
    }
    .section-title h2 {
      font-family: var(--heading-font);
      font-size: 32px;
      font-weight: 700;
    }
    .section-title h2:before,
    .section-title h2:after {
      content: "";
      width: 50px; height: 2px;
      background: var(--accent-color);
      display: inline-block;
    }
    .section-title h2:before { margin: 0 15px 10px 0; }
    .section-title h2:after { margin: 0 0 10px 15px; }
    .section-title h2 span { color: var(--accent-color); }
    .section-title p {
      font-family: var(--default-font);
      color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    /* ════════════════════════════════════════════════════════
       TESTIMONIALS
    ════════════════════════════════════════════════════════ */
    .testimonial-item-simple {
      background: var(--surface-color);
      border-radius: 20px; padding: 30px;
      border: 1px solid rgba(229,157,2,0.1);
      transition: all .3s; height: 100%;
    }
    .testimonial-item-simple:hover {
      border-color: var(--accent-color);
      transform: translateY(-5px);
    }
    .testimonial-item-simple h5 {
      font-family: var(--heading-font);
      font-weight: 600; color: var(--heading-color);
    }
    .testimonial-item-simple p {
      font-family: var(--default-font);
      color: color-mix(in srgb, var(--default-color), transparent 25%);
      line-height: 1.7;
    }

    /* ════════════════════════════════════════════════════════
       BRANCH CARDS
    ════════════════════════════════════════════════════════ */
    .branch-card {
      background: var(--surface-color);
      border-radius: 20px; padding: 35px;
      border: 1px solid rgba(229,157,2,0.1);
      transition: all .3s; height: 100%;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    }
    .branch-card:hover {
      border-color: var(--accent-color);
      transform: translateY(-5px);
    }
    .branch-card h4 {
      font-family: var(--heading-font);
      font-weight: 700; color: var(--heading-color);
    }
    .branch-card p {
      font-family: var(--default-font);
      color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    /* ════════════════════════════════════════════════════════
       STATS
    ════════════════════════════════════════════════════════ */
    .stat-number-lg {
      font-family: var(--heading-font);
      font-size: 56px; font-weight: 800;
      color: var(--accent-color); line-height: 1;
    }

    /* ════════════════════════════════════════════════════════
       FOOTER — Clean, professional look
    ════════════════════════════════════════════════════════ */
    .site-footer {
      color: var(--default-color);
      background-color: var(--background-color);
      font-size: 14px;
      position: relative;
      border-top: 1px solid rgba(229,157,2,0.1);
    }
    .site-footer .footer-top {
      background-color: #0a0a0a;
      padding-top: 60px;
      padding-bottom: 30px;
    }
    .site-footer .footer-about .logo {
      line-height: 1;
      margin-bottom: 25px;
      display: inline-block;
    }
    .site-footer .footer-about .logo img {
      max-height: 40px;
    }
    .site-footer .footer-about p {
      font-family: var(--default-font);
      color: color-mix(in srgb, var(--default-color), transparent 25%);
      line-height: 1.7;
    }
    .site-footer h4 {
      font-family: var(--heading-font);
      font-size: 16px;
      font-weight: 600;
      position: relative;
      padding-bottom: 12px;
      margin-bottom: 20px;
      color: var(--heading-color);
    }
    .site-footer h4::after {
      content: "";
      position: absolute;
      display: block;
      width: 25px;
      height: 2px;
      background: var(--accent-color);
      bottom: 0;
      left: 0;
    }
    .site-footer .footer-links {
      margin-bottom: 30px;
    }
    .site-footer .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .site-footer .footer-links ul li {
      padding: 8px 0;
      display: flex;
      align-items: center;
    }
    .site-footer .footer-links ul li:first-child {
      padding-top: 0;
    }
    .site-footer .footer-links ul a {
      font-family: var(--default-font);
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      display: inline-block;
      line-height: 1;
      text-decoration: none;
      transition: all 0.3s;
    }
    .site-footer .footer-links ul a:hover {
      color: var(--accent-color);
      padding-left: 5px;
    }
    .site-footer .footer-links ul i {
      padding-right: 6px;
      font-size: 10px;
      color: var(--accent-color);
    }
    .site-footer .footer-contact p {
      font-family: var(--default-font);
      color: color-mix(in srgb, var(--default-color), transparent 25%);
      margin-bottom: 5px;
    }
    .site-footer .footer-contact strong {
      color: var(--heading-color);
    }
    .site-footer .copyright {
      padding: 25px 0;
      background: #000;
      text-align: center;
      border-top: 1px solid rgba(229,157,2,0.08);
    }
    .site-footer .copyright p {
      margin-bottom: 0;
      font-family: var(--default-font);
      color: color-mix(in srgb, var(--default-color), transparent 40%);
      font-size: 13px;
    }
    .site-footer .copyright strong {
      color: var(--accent-color);
    }

    /* ════════════════════════════════════════════════════════
       SKELETON / EMPTY / ERROR
    ════════════════════════════════════════════════════════ */
    .skeleton {
      background: linear-gradient(90deg, #191919 25%, #252525 50%, #191919 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 16px; height: 340px;
    }
    @keyframes shimmer {
      0%   { background-position: -200% 0; }
      100% { background-position:  200% 0; }
    }
    .empty-state {
      text-align: center; padding: 60px 20px; grid-column: 1 / -1;
    }
    .empty-state i {
      font-size: 3rem; color: var(--accent-color); opacity: .4;
      margin-bottom: 16px; display: block;
    }
    .empty-state p { color: color-mix(in srgb, var(--default-color), transparent 30%); margin-bottom: 20px; }
    .fetch-error {
      grid-column: 1/-1; text-align: center; padding: 40px 20px;
      background: rgba(229,157,2,.05); border-radius: 16px;
      border: 1px dashed rgba(229,157,2,.2);
    }

    /* ════════════════════════════════════════════════════════
       LIGHTBOX
    ════════════════════════════════════════════════════════ */
    .image-modal {
      display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(4,0,0,.98); z-index: 2000;
      justify-content: center; align-items: center;
    }
    .image-modal.active { display: flex; }
    .modal-img {
      max-width: min(90vw, 900px); max-height: 85vh; border-radius: 20px;
      box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(229,157,2,.2);
      animation: zoomFade .3s ease; object-fit: contain;
    }
    @keyframes zoomFade {
      from { opacity: 0; transform: scale(.94); }
      to   { opacity: 1; transform: scale(1); }
    }
    .close-modal {
      position: absolute; top: 24px; right: 36px;
      font-size: 2.2rem; color: rgba(255,255,255,.7);
      cursor: pointer; background: none; border: none; z-index: 2001;
      line-height: 1; transition: color .2s;
    }
    .close-modal:hover { color: #fff; }
    .modal-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.1); border: none;
      color: #fff; width: 48px; height: 48px; border-radius: 50%;
      font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s;
    }
    .modal-nav:hover { background: rgba(255,255,255,.2); }
    #modalPrev { left: 20px; }
    #modalNext { right: 20px; }
    .modal-counter {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,.5); font-size: .8rem;
      font-family: var(--default-font); letter-spacing: 1px;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .floating-card.card-1 { left: 0; top: auto; bottom: -20px; }
      .floating-card.card-2 { right: 0; bottom: -80px; display: none; }
      .hero-image-showcase { margin-bottom: 40px; }
    }