/* assets/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Syncopate:wght@700&display=swap');
@media (max-width: 640px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}


:root {
    --brand-red: #cc0000;
    --unbrako-black: #111111;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--unbrako-black);
    scroll-behavior: smooth;
}

.heading-tech {
    font-family: 'Syncopate', sans-serif;
}

.product-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-red);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.hero-pattern {
    background-color: #000;
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Custom Table Design */
.tech-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-table th {
    background: #111;
    color: white;
    padding: 15px;
    text-transform: uppercase;
    font-size: 12px;
}

.tech-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}