   :root {
        --c-orange: #ff6a00;
        --c-orange-hover: #ff8533;
        --c-red: #e53935;
        --c-red-light: #ff5252;
        --c-yellow: #ffd600;
        --bg-primary: #ffffff;
        --bg-secondary: #f5f5f5;
        --bg-card: #ffffff;
        --bg-card-hover: #fafafa;
        --bg-overlay: rgba(255, 255, 255, 0.9);
        --bg-navbar: rgba(255, 255, 255, 0.85);
        --text-primary: #1a1a1a;
        --text-secondary: #555555;
        --text-muted: #888888;
        --border-color: rgba(0, 0, 0, 0.08);
        --border-color-strong: rgba(0, 0, 0, 0.15);
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
        --gradient-hero: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.97) 0%,
          rgba(255, 245, 230, 0.9) 50%,
          rgba(255, 106, 0, 0.08) 100%
        );
        --gradient-text: linear-gradient(135deg, var(--c-orange), var(--c-red));
        --noise-opacity: 0.02;
        --font-body: "Inter", sans-serif;
        --font-display: "Space Grotesk", sans-serif;
      }
      [data-theme="dark"] {
        --bg-primary: #0a0a0a;
        --bg-secondary: #111111;
        --bg-card: #151515;
        --bg-card-hover: #1a1a1a;
        --bg-overlay: rgba(10, 10, 10, 0.9);
        --bg-navbar: rgba(10, 10, 10, 0.85);
        --text-primary: #ffffff;
        --text-secondary: #aaaaaa;
        --text-muted: #666666;
        --border-color: rgba(255, 255, 255, 0.06);
        --border-color-strong: rgba(255, 255, 255, 0.12);
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
        --gradient-hero: linear-gradient(
          135deg,
          rgba(10, 10, 10, 0.97) 0%,
          rgba(30, 15, 0, 0.9) 50%,
          rgba(255, 106, 0, 0.08) 100%
        );
        --gradient-text: linear-gradient(
          135deg,
          var(--c-orange),
          var(--c-red-light)
        );
        --noise-opacity: 0.03;
      }
      [dir="rtl"] {
        --font-body: "Vazirmatn", "Inter", sans-serif;
        --font-display: "Vazirmatn", "Space Grotesk", sans-serif;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      ::selection {
        background: var(--c-orange);
        color: #fff;
      }
      html {
        scroll-behavior: auto;
      }
      body {
        font-family: var(--font-body);
        background: var(--bg-primary);
        color: var(--text-primary);
        overflow-x: hidden;
        transition:
          background 0.5s ease,
          color 0.5s ease;
      }
      [dir="rtl"] body {
        text-align: right;
      }
      .noise-overlay {
        position: fixed;
        inset: 0;
        z-index: 9999;
        pointer-events: none;
        opacity: var(--noise-opacity);
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      }
      .font-display {
        font-family: var(--font-display);
      }
      .text-gradient {
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--c-orange);
        margin-bottom: 1.5rem;
      }
      [dir="rtl"] .section-tag {
        direction: rtl;
      }
      .section-tag .tag-line {
        width: 30px;
        height: 2px;
        background: var(--c-orange);
        border-radius: 2px;
      }
      .section-title {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.03em;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
      }
      .section-desc {
        font-size: 1.05rem;
        color: var(--text-muted);
        line-height: 1.7;
        max-width: 520px;
      }
      .btn-cvit {
        background: linear-gradient(135deg, var(--c-orange), var(--c-red));
        color: #fff;
        padding: 0.85rem 2.2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
      }
      .btn-cvit:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 40px rgba(255, 106, 0, 0.4);
        color: #fff;
      }
      .btn-outline-cvit {
        background: transparent;
        color: var(--text-primary);
        padding: 0.85rem 2.2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        border: 2px solid var(--border-color-strong);
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }
      .btn-outline-cvit:hover {
        border-color: var(--c-orange);
        color: var(--c-orange);
        background: rgba(255, 106, 0, 0.05);
      }
      .btn-outline-orange {
        background: transparent;
        color: var(--c-orange);
        padding: 0.85rem 2.2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        border: 2px solid var(--c-orange);
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }
      .btn-outline-orange:hover {
        background: var(--c-orange);
        color: #fff;
      }
      .btn-sm-cvit {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
      }
      .btn-danger-cvit {
        background: #dc3545;
        color: #fff;
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.75rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
      }
      .btn-danger-cvit:hover {
        background: #c82333;
        transform: scale(1.05);
      }
      .navbar-cvit {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1rem 2rem;
        transition: all 0.4s ease;
      }
      .navbar-cvit.scrolled {
        background: var(--bg-navbar);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-sm);
      }
      .nav-brand {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text-primary);
        text-decoration: none;
        letter-spacing: -0.02em;
        transition: color 0.3s;
      }
      .nav-brand span {
        color: var(--c-orange);
      }
      .nav-links {
        list-style: none;
        display: flex;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
        align-items: center;
      }
      .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 0.3s;
      }
      .nav-links a:hover {
        color: var(--c-orange);
      }
      .nav-cta {
        background: linear-gradient(
          135deg,
          var(--c-orange),
          var(--c-red)
        ) !important;
        color: #fff !important;
        padding: 0.5rem 1.5rem !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
      }
      .nav-cta:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
        color: #fff !important;
      }
      .theme-toggle {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid var(--border-color-strong);
        background: var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        color: var(--text-primary);
      }
      .theme-toggle:hover {
        border-color: var(--c-orange);
        color: var(--c-orange);
        background: rgba(255, 106, 0, 0.05);
      }
      .lang-dropdown-wrap {
        position: relative;
      }
      .lang-btn {
        height: 44px;
        border-radius: 50px;
        border: 1px solid var(--border-color-strong);
        background: var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        color: var(--text-primary);
        font-weight: 700;
        font-size: 0.75rem;
        padding: 0 1rem;
        gap: 0.35rem;
        min-width: 80px;
      }
      .lang-btn:hover {
        border-color: var(--c-orange);
        color: var(--c-orange);
      }
      .lang-btn .lang-arrow {
        transition: transform 0.3s;
      }
      .lang-btn.open .lang-arrow {
        transform: rotate(180deg);
      }
      .lang-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 1rem;
        box-shadow: var(--shadow-lg);
        padding: 0.5rem;
        min-width: 160px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
      }
      [dir="rtl"] .lang-dropdown {
        right: auto;
        left: 0;
      }
      .lang-dropdown.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .lang-option {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.65rem 1rem;
        border-radius: 0.75rem;
        cursor: pointer;
        transition: all 0.2s;
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--text-secondary);
        border: none;
        background: none;
        width: 100%;
        text-align: inherit;
      }
      [dir="rtl"] .lang-option {
        text-align: right;
      }
      .lang-option:hover {
        background: rgba(255, 106, 0, 0.08);
        color: var(--c-orange);
      }
      .lang-option.active {
        background: linear-gradient(
          135deg,
          rgba(255, 106, 0, 0.12),
          rgba(229, 57, 53, 0.06)
        );
        color: var(--c-orange);
        font-weight: 700;
      }
      .lang-option .lang-flag {
        font-size: 1.1rem;
        line-height: 1;
      }
      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
        padding: 0.5rem;
      }
      .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: var(--bg-overlay);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }
      [dir="rtl"] .mobile-menu {
        transform: translateX(-100%);
      }
      .mobile-menu.open {
        transform: translateX(0);
      }
      .mobile-menu a {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s;
      }
      .mobile-menu a:hover {
        color: var(--c-orange);
      }
      .mobile-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
      }
      [dir="rtl"] .mobile-close {
        right: auto;
        left: 1.5rem;
      }
      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }
        .nav-links {
          display: none !important;
        }
      }
      /* Floating Contact FAB */
      .contact-fab {
        position: fixed;
        bottom: 2rem;
        left: 2rem;
        z-index: 5000;
      }
      [dir="rtl"] .contact-fab {
        left: auto;
        right: 2rem;
      }
      .contact-fab-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--c-orange), var(--c-red));
        color: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 30px rgba(255, 106, 0, 0.4);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        z-index: 2;
      }
      .contact-fab-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(255, 106, 0, 0.5);
      }
      .contact-fab-btn.open {
        transform: rotate(45deg) scale(1.05);
      }
      .contact-fab-panel {
        position: absolute;
        bottom: 75px;
        left: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 1.5rem;
        box-shadow: var(--shadow-lg);
        padding: 1.75rem;
        min-width: 300px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.9);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      }
      [dir="rtl"] .contact-fab-panel {
        left: auto;
        right: 0;
      }
      .contact-fab-panel.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
      }
      .contact-fab-panel h5 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        color: var(--text-primary);
      }
      .contact-fab-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.85rem 1rem;
        background: var(--bg-secondary);
        border-radius: 1rem;
        margin-bottom: 0.75rem;
        transition: all 0.3s;
        cursor: pointer;
        border: 1px solid var(--border-color);
        text-decoration: none;
      }
      .contact-fab-item:hover {
        border-color: rgba(255, 106, 0, 0.2);
        transform: translateX(4px);
      }
      [dir="rtl"] .contact-fab-item:hover {
        transform: translateX(-4px);
      }
      .contact-fab-item:last-child {
        margin-bottom: 0;
      }
      .contact-fab-icon {
        width: 42px;
        height: 42px;
        border-radius: 0.75rem;
        background: linear-gradient(
          135deg,
          rgba(255, 106, 0, 0.1),
          rgba(229, 57, 53, 0.05)
        );
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c-orange);
        flex-shrink: 0;
      }
      .contact-fab-label {
        font-size: 0.7rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
      }
      .contact-fab-value {
        font-size: 0.92rem;
        color: var(--text-primary);
        font-weight: 600;
        margin-top: 0.1rem;
        direction: ltr;
        text-align: left;
      }
      [dir="rtl"] .contact-fab-value {
        text-align: left;
      }
      /* Hero */
      .hero {
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.35) saturate(1.3);
      }
      .hero-gradient {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
      }
      .hero-orbs {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
      }
      .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.4;
      }
      .hero-orb-1 {
        width: 600px;
        height: 600px;
        top: -15%;
        right: -10%;
        background: radial-gradient(
          circle,
          rgba(255, 106, 0, 0.25),
          transparent 70%
        );
        animation: orbFloat1 8s ease-in-out infinite;
      }
      .hero-orb-2 {
        width: 400px;
        height: 400px;
        bottom: -10%;
        left: -5%;
        background: radial-gradient(
          circle,
          rgba(229, 57, 53, 0.2),
          transparent 70%
        );
        animation: orbFloat2 10s ease-in-out infinite;
      }
      @keyframes orbFloat1 {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        50% {
          transform: translate(-40px, 30px) scale(1.1);
        }
      }
      @keyframes orbFloat2 {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        50% {
          transform: translate(50px, -40px) scale(1.15);
        }
      }
      .hero-content {
        position: relative;
        z-index: 2;
        padding-top: 6rem;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 106, 0, 0.1);
        border: 1px solid rgba(255, 106, 0, 0.2);
        border-radius: 50px;
        padding: 0.4rem 1.2rem;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--c-orange);
        margin-bottom: 2rem;
      }
      .hero-badge .dot {
        width: 6px;
        height: 6px;
        background: var(--c-orange);
        border-radius: 50%;
        animation: pulse-dot 2s ease-in-out infinite;
      }
      @keyframes pulse-dot {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.4;
        }
      }
      .hero-title {
        font-family: var(--font-display);
        font-size: clamp(3rem, 8vw, 7rem);
        font-weight: 800;
        line-height: 0.9;
        letter-spacing: -0.04em;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
      }
      .hero-title .line {
        display: block;
        overflow: hidden;
      }
      .hero-title .line-inner {
        display: block;
        transform: translateY(110%);
        animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }
      .hero-title .line:nth-child(2) .line-inner {
        animation-delay: 0.15s;
      }
      .hero-title .line:nth-child(3) .line-inner {
        animation-delay: 0.3s;
      }
      @keyframes slideUp {
        to {
          transform: translateY(0);
        }
      }
      .hero-desc {
        font-size: 1.1rem;
        color: var(--text-muted);
        max-width: 480px;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        opacity: 0;
        animation: fadeInUp 1s ease forwards 0.6s;
      }
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeInUp 1s ease forwards 0.8s;
      }
      .hero-can-wrap {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        animation: fadeInUp 1.2s ease forwards 0.5s;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
      }
      .hero-product-img {
        width: 100%;
        height: auto;
        max-height: 480px;
        object-fit: contain;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 0 50px rgba(255, 106, 0, 0.25));
        transition: transform 0.5s;
      }
      .hero-can-glow {
        position: absolute;
        width: 350px;
        height: 350px;
        background: radial-gradient(
          circle,
          rgba(255, 106, 0, 0.15) 0%,
          transparent 70%
        );
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: glow-pulse 3s ease-in-out infinite;
      }
      @keyframes glow-pulse {
        0%,
        100% {
          transform: translate(-50%, -50%) scale(1);
          opacity: 0.5;
        }
        50% {
          transform: translate(-50%, -50%) scale(1.15);
          opacity: 1;
        }
      }
      .hero-float-fruit {
        position: absolute;
        font-size: 2.5rem;
        animation: floatFruit 4s ease-in-out infinite;
        z-index: 3;
      }
      .fruit-1 {
        top: 10%;
        left: -10%;
      }
      .fruit-2 {
        top: 20%;
        right: -10%;
        animation-delay: 1s;
      }
      .fruit-3 {
        bottom: 15%;
        left: -5%;
        animation-delay: 2s;
      }
      .fruit-4 {
        bottom: 25%;
        right: -5%;
        animation-delay: 0.5s;
      }
      @keyframes floatFruit {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(10deg);
        }
      }
      .hero-scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        animation: fadeInUp 1s ease forwards 1.5s;
      }
      .scroll-line {
        width: 1px;
        height: 40px;
        position: relative;
        overflow: hidden;
        background: rgba(255, 106, 0, 0.15);
      }
      .scroll-line::after {
        content: "";
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 50%;
        background: var(--c-orange);
        animation: scrollLineMove 2s ease-in-out infinite;
      }
      @keyframes scrollLineMove {
        0% {
          top: -50%;
        }
        100% {
          top: 150%;
        }
      }
      .marquee-section {
        padding: 2rem 0;
        overflow: hidden;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background: var(--bg-secondary);
      }
      .marquee-track {
        display: flex;
        animation: marqueeScroll 25s linear infinite;
        width: max-content;
      }
      .marquee-item {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        white-space: nowrap;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }
      .marquee-item .sep {
        width: 6px;
        height: 6px;
        background: var(--c-orange);
        border-radius: 50%;
        flex-shrink: 0;
      }
      @keyframes marqueeScroll {
        to {
          transform: translateX(-50%);
        }
      }
      [dir="rtl"] .marquee-track {
        animation-name: marqueeScrollRTL;
      }
      @keyframes marqueeScrollRTL {
        to {
          transform: translateX(50%);
        }
      }
      .features-section {
        padding: 8rem 0;
        background: var(--bg-primary);
        position: relative;
      }
      .feature-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 1.5rem;
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .feature-card:hover {
        border-color: rgba(255, 106, 0, 0.15);
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
      }
      .feature-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(
          135deg,
          rgba(255, 106, 0, 0.1),
          rgba(229, 57, 53, 0.05)
        );
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: var(--c-orange);
      }
      .feature-card h4 {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--text-primary);
      }
      .feature-card p {
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.6;
      }
      .feature-number {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-family: var(--font-display);
        font-size: 4rem;
        font-weight: 800;
        color: rgba(255, 106, 0, 0.04);
        line-height: 1;
      }
      [dir="rtl"] .feature-number {
        right: auto;
        left: 1.5rem;
      }
      .products-section {
        padding: 8rem 0;
        background: var(--bg-secondary);
      }
      .product-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 2rem;
        padding: 3rem 2rem 2rem;
        text-align: center;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
      .product-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: var(--shadow-lg);
      }
      .product-can-wrap {
        position: relative;
        width: 160px;
        height: 260px;
        margin: 0 auto 2rem;
        transition: transform 0.5s;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .product-card:hover .product-can-wrap {
        transform: translateY(-15px) scale(1.05);
      }
      .product-can-glow {
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        filter: blur(40px);
        opacity: 0.25;
      }
      .product-can {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .product-can img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
      }
      .product-flavor-tag {
        display: inline-block;
        padding: 0.3rem 1rem;
        border-radius: 50px;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
      }
      .product-card h4 {
        font-family: var(--font-display);
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
      }
      .product-card p {
        color: var(--text-muted);
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
      }
      .product-price {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--c-orange);
      }
      .product-dl-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        border: 1.5px solid var(--c-orange);
        background: transparent;
        color: var(--c-orange);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 1rem;
      }
      .product-dl-btn:hover {
        background: var(--c-orange);
        color: #fff;
        box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
      }
      .energy-section {
        padding: 8rem 0;
        background: var(--bg-primary);
      }
      .energy-img-wrap {
        position: relative;
        border-radius: 2rem;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
      }
      .energy-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 500px;
      }
      .stat-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 1rem;
        padding: 1.5rem;
        text-align: center;
        transition: all 0.3s;
      }
      .stat-number {
        font-family: var(--font-display);
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        background: linear-gradient(135deg, var(--c-orange), var(--c-red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .stat-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-top: 0.5rem;
      }
      .lifestyle-section {
        padding: 8rem 0;
        background: var(--bg-secondary);
        text-align: center;
      }
      .lifestyle-quote {
        font-family: var(--font-display);
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -0.03em;
        max-width: 900px;
        margin: 0 auto 3rem;
        color: var(--text-primary);
      }
      .lifestyle-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
      }
      .lifestyle-img {
        border-radius: 1.5rem;
        overflow: hidden;
        position: relative;
        aspect-ratio: 3/4;
        box-shadow: var(--shadow-md);
      }
      .lifestyle-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s;
      }
      .lifestyle-img:hover img {
        transform: scale(1.08);
      }
      .catalog-dl-section {
        padding: 5rem 0;
        background: var(--bg-secondary);
      }
      .catalog-dl-box {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 2rem;
        padding: 3.5rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s;
      }
      .catalog-dl-box:hover {
        border-color: rgba(255, 106, 0, 0.2);
        box-shadow: var(--shadow-md);
      }
      .catalog-dl-icon {
        width: 72px;
        height: 72px;
        background: linear-gradient(
          135deg,
          rgba(255, 106, 0, 0.1),
          rgba(229, 57, 53, 0.06)
        );
        border-radius: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c-orange);
        margin-bottom: 1.5rem;
      }
      .catalog-dl-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
      }
      .catalog-dl-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.55rem 1.2rem;
        border-radius: 50px;
        border: 1.5px solid var(--c-orange);
        background: transparent;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--c-orange);
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
      }
      .catalog-dl-chip:hover {
        background: var(--c-orange);
        color: #fff;
        box-shadow: 0 4px 15px rgba(255, 106, 0, 0.25);
      }
      .page-section {
        display: none;
        min-height: 100vh;
        padding-top: 100px;
      }
      .page-section.active {
        display: block;
      }
      .catalog-grid-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 1.5rem;
        overflow: hidden;
        transition: all 0.4s;
        cursor: pointer;
      }
      .catalog-grid-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(255, 106, 0, 0.15);
      }
      .catalog-grid-card .card-img {
        aspect-ratio: 4/3;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
      }
      .catalog-grid-card .card-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.5s;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
      }
      .catalog-grid-card:hover .card-img img {
        transform: scale(1.06);
      }
      .catalog-grid-card .card-body {
        padding: 1.5rem;
      }
      .catalog-grid-card .card-dl {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.55rem 1.2rem;
        border-radius: 50px;
        border: none;
        background: linear-gradient(135deg, var(--c-orange), var(--c-red));
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 0.75rem;
        box-shadow: 0 4px 15px rgba(255, 106, 0, 0.25);
      }
      .catalog-grid-card .card-dl:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 106, 0, 0.35);
      }
      .catalog-filter-btn {
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        border: 1px solid var(--border-color);
        background: var(--bg-card);
        color: var(--text-secondary);
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
      }
      .catalog-filter-btn:hover,
      .catalog-filter-btn.active {
        background: linear-gradient(135deg, var(--c-orange), var(--c-red));
        color: #fff;
        border-color: transparent;
      }
      .product-detail {
        padding: 4rem 0 8rem;
      }
      .detail-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.3rem 1rem;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .detail-can-wrap {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3rem;
        border-radius: 2rem;
        min-height: 500px;
        overflow: hidden;
      }
      .detail-can-glow {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.2;
      }
      .detail-product-img {
        width: 100%;
        max-width: 200px;
        height: auto;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.18));
        object-fit: contain;
      }
      .nutrition-table {
        width: 100%;
        border-collapse: collapse;
      }
      .nutrition-table tr {
        border-bottom: 1px solid var(--border-color);
      }
      .nutrition-table td {
        padding: 0.75rem 0;
        font-size: 0.85rem;
      }
      .nutrition-table td:first-child {
        color: var(--text-secondary);
      }
      .nutrition-table td:last-child {
        text-align: right;
        font-weight: 600;
        color: var(--text-primary);
      }
      [dir="rtl"] .nutrition-table td:last-child {
        text-align: left;
      }
      .detail-info-box {
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 1.25rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
      }
      .detail-info-box h5 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: var(--text-primary);
      }
      .related-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 1.5rem;
        overflow: hidden;
        transition: all 0.4s;
        cursor: pointer;
        width: 100%;
      }
      .related-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
      }
      .related-card .rc-img-wrap {
        width: 60px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 1rem;
      }
      [dir="rtl"] .related-card .rc-img-wrap {
        margin-right: 0;
        margin-left: 1rem;
      }
      .related-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
      }
      .related-card .rc-body {
        padding: 1.2rem 1.2rem 1.2rem 0;
      }
      [dir="rtl"] .related-card .rc-body {
        padding: 1.2rem 0 1.2rem 1.2rem;
      }
      .breadcrumb-cvit {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
      }
      .breadcrumb-cvit a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
      }
      .breadcrumb-cvit a:hover {
        color: var(--c-orange);
      }
      .breadcrumb-cvit .current {
        color: var(--c-orange);
        font-weight: 600;
      }
      .detail-catalog-dl {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1.75rem;
        background: linear-gradient(
          135deg,
          rgba(255, 106, 0, 0.08),
          rgba(229, 57, 53, 0.04)
        );
        border: 1.5px solid rgba(255, 106, 0, 0.15);
        border-radius: 1rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s;
        cursor: pointer;
      }
      .detail-catalog-dl:hover {
        border-color: rgba(255, 106, 0, 0.3);
        background: linear-gradient(
          135deg,
          rgba(255, 106, 0, 0.12),
          rgba(229, 57, 53, 0.06)
        );
      }
      .detail-catalog-dl-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--c-orange), var(--c-red));
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
      }
      .detail-catalog-dl-text h6 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--text-primary);
        margin-bottom: 0.15rem;
      }
      .detail-catalog-dl-text p {
        font-size: 0.78rem;
        color: var(--text-muted);
        margin: 0;
      }
      .toast-container {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 10000;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      [dir="rtl"] .toast-container {
        right: auto;
        left: 2rem;
      }
      .toast-msg {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-left: 4px solid var(--c-orange);
        border-radius: 0.75rem;
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        animation: toastIn 0.4s ease forwards;
        min-width: 280px;
      }
      [dir="rtl"] .toast-msg {
        border-left: none;
        border-right: 4px solid var(--c-orange);
      }
      .toast-msg.out {
        animation: toastOut 0.3s ease forwards;
      }
      @keyframes toastIn {
        from {
          transform: translateX(100%);
          opacity: 0;
        }
        to {
          transform: translateX(0);
          opacity: 1;
        }
      }
      @keyframes toastOut {
        from {
          transform: translateX(0);
          opacity: 1;
        }
        to {
          transform: translateX(100%);
          opacity: 0;
        }
      }
      [dir="rtl"] .toast-msg {
        animation-name: toastInRTL;
      }
      [dir="rtl"] .toast-msg.out {
        animation-name: toastOutRTL;
      }
      @keyframes toastInRTL {
        from {
          transform: translateX(-100%);
          opacity: 0;
        }
        to {
          transform: translateX(0);
          opacity: 1;
        }
      }
      @keyframes toastOutRTL {
        from {
          transform: translateX(0);
          opacity: 1;
        }
        to {
          transform: translateX(-100%);
          opacity: 0;
        }
      }
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-delay-1 {
        transition-delay: 0.1s;
      }
      .reveal-delay-2 {
        transition-delay: 0.2s;
      }
      .reveal-delay-3 {
        transition-delay: 0.3s;
      }
      .reveal-delay-4 {
        transition-delay: 0.4s;
      }
      .particle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        animation: floatParticle linear infinite;
      }
      @keyframes floatParticle {
        0% {
          transform: translateY(0);
          opacity: 0;
        }
        10% {
          opacity: 0.6;
        }
        90% {
          opacity: 0.6;
        }
        100% {
          transform: translateY(-100vh);
          opacity: 0;
        }
      }
      .footer {
        padding: 4rem 0 2rem;
        border-top: 1px solid var(--border-color);
        background: var(--bg-primary);
      }
      .footer-brand {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text-primary);
        cursor: pointer;
        user-select: none;
      }
      .footer-brand span {
        color: var(--c-orange);
      }
      .email-order-box {
        background: linear-gradient(
          135deg,
          rgba(255, 106, 0, 0.05),
          rgba(229, 57, 53, 0.03)
        );
        border: 1px solid rgba(255, 106, 0, 0.12);
        border-radius: 1.25rem;
        padding: 1.75rem;
        margin-top: 1.5rem;
      }
      .email-order-box .email-row {
        display: flex;
        gap: 0.75rem;
      }
      .email-order-box input[type="email"] {
        flex: 1;
        background: var(--bg-primary);
        border: 1.5px solid var(--border-color-strong);
        border-radius: 50px;
        padding: 0.75rem 1.5rem;
        color: var(--text-primary);
        font-size: 0.9rem;
        outline: none;
        transition: border-color 0.3s;
      }
      .email-order-box input[type="email"]:focus {
        border-color: var(--c-orange);
      }
      .email-order-box input[type="email"]::placeholder {
        color: var(--text-muted);
      }
      @media (max-width: 768px) {
        .hero-can-wrap {
          margin-top: 3rem;
        }
        .lifestyle-images {
          grid-template-columns: 1fr;
          gap: 1rem;
        }
        .catalog-dl-box {
          padding: 2rem 1.5rem;
        }
        .email-order-box .email-row {
          flex-direction: column;
        }
        .contact-fab-panel {
          min-width: 260px;
        }
      }
      .page-fade-in {
        animation: pageFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }
      @keyframes pageFadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .catalog-hero {
        padding: 2rem 0 0;
      }

      /* Admin Panel Styles */
      .admin-overlay {
        position: fixed;
        inset: 0;
        z-index: 10001;
        background: var(--bg-overlay);
        backdrop-filter: blur(20px);
        display: none;
        overflow-y: auto;
      }
      .admin-overlay.open {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem;
      }
      .admin-panel {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 2rem;
        width: 100%;
        max-width: 900px;
        padding: 2.5rem;
        box-shadow: var(--shadow-lg);
        margin-top: 2rem;
      }
      .admin-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
      }
      .admin-header h2 {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--text-primary);
      }
      .admin-close-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid var(--border-color-strong);
        background: var(--bg-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        color: var(--text-primary);
      }
      .admin-close-btn:hover {
        border-color: #dc3545;
        color: #dc3545;
      }
      .admin-table {
        width: 100%;
        border-collapse: collapse;
      }
      .admin-table thead th {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        padding: 0.75rem;
        border-bottom: 2px solid var(--border-color);
        text-align: left;
      }
      [dir="rtl"] .admin-table thead th {
        text-align: right;
      }
      .admin-table tbody td {
        padding: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        vertical-align: middle;
        font-size: 0.88rem;
        color: var(--text-primary);
      }
      .admin-table .prod-thumb {
        width: 40px;
        height: 60px;
        border-radius: 0.5rem;
        object-fit: contain;
        background: var(--bg-secondary);
      }
      .admin-badge {
        display: inline-block;
        padding: 0.2rem 0.7rem;
        border-radius: 50px;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      .admin-badge-energy {
        background: rgba(255, 106, 0, 0.1);
        color: var(--c-orange);
      }
      .admin-badge-immunity {
        background: rgba(0, 150, 136, 0.1);
        color: #009688;
      }
      .admin-actions {
        display: flex;
        gap: 0.5rem;
      }
      /* Admin Form Modal */
      .admin-form-overlay {
        position: fixed;
        inset: 0;
        z-index: 10002;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1rem;
      }
      .admin-form-overlay.open {
        display: flex;
      }
      .admin-form-box {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 1.5rem;
        width: 100%;
        max-width: 600px;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        max-height: 90vh;
        overflow-y: auto;
      }
      .admin-form-box h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
      }
      .admin-form-group {
        margin-bottom: 1rem;
      }
      .admin-form-group label {
        display: block;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 0.4rem;
      }
      .admin-form-group input,
      .admin-form-group select,
      .admin-form-group textarea {
        width: 100%;
        background: var(--bg-secondary);
        border: 1.5px solid var(--border-color-strong);
        border-radius: 0.75rem;
        padding: 0.7rem 1rem;
        color: var(--text-primary);
        font-size: 0.88rem;
        outline: none;
        transition: border-color 0.3s;
        font-family: inherit;
      }
      .admin-form-group input:focus,
      .admin-form-group select:focus,
      .admin-form-group textarea:focus {
        border-color: var(--c-orange);
      }
      .admin-form-group textarea {
        resize: vertical;
        min-height: 80px;
      }
      .admin-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }
      @media (max-width: 600px) {
        .admin-form-row {
          grid-template-columns: 1fr;
        }
      }
      .admin-wp-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        background: rgba(0, 150, 136, 0.1);
        color: #009688;
        font-size: 0.75rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid rgba(0, 150, 136, 0.2);
      }
      .admin-wp-badge:hover {
        background: rgba(0, 150, 136, 0.15);
      }