/* ============================================
   COMPATIBILITY INTELLIGENCE CATALOG
   Modern, Premium, Production-Ready Stylesheet
   ============================================ */

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


* {
  -webkit-user-select: none;
  -moz-user-select: none; 
  -ms-user-select: none;  
  user-select: none;
}


:root {
    --primary: #005ea0;
    --accent: #faa61a;
    --base: #ffffff;
    --dark: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

@font-face {
  font-family: 'Microgramma';
  src: url('fonts/Microgramma D Extended Bold/Microgramma D Extended Bold.otf') format('woff2'),
       url('fonts/Microgramma D Extended Bold/Microgramma D Extended Bold.otf') format('woff');
  font-style: normal;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--base);
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin-left: 0 ;
    margin-right: auto ;
    padding: 0 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,#1a1a1a , #faa61a, #1a1a1a);
  border-radius: 4px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display:grid;
    grid-auto-flow: column;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo {
    display: flex;             /* aligns children horizontally */
    white-space: nowrap;  
    align-items: center; 
    vertical-align: middle;       /* space between logo image and h1 */
}


.logo h3 {
    font-family: 'Microgramma', sans-serif;
    font-size: 1rem; /* instead of var(--fs-lg) */
    letter-spacing: 0.03em;
    margin: 0;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    word-spacing: 0.1em;
    display: inline-flex;
    line-height: 1.1;
    overflow: hidden;
}

.logo-image {
    width: 37px;
    height: auto;
    object-fit: contain;
    border-radius: 3px;
    display: inline-flex;
    vertical-align: middle;
}
.logo p {
    font-size: var(--fs-xs);
    opacity: 0.9;
    font-weight: 300;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
}




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



.nav-link {
    color: var(--base);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}


.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 7px;
    padding: 0.5rem;
}

.hamburger-menu span {
    width: 27px;
    height: 3px;
    background: var(--base);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HOME SECTION
   ============================================ */

.home-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f9fafb 100%);
    padding: 0;
    margin: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0;
}

.home-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.home-text h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-top: 1.5rem;
}

.home-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 94, 160, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 94, 160, 0.5), 0 0 20px rgba(250, 166, 26, 0.2);
    background: linear-gradient(135deg, #004080 0%, var(--primary) 100%);
}

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

.video-hero {
  position: relative;
  width: 100vw;
  height: 47vh;
  overflow: hidden;
  border-radius: 3px;
  order: -1;
  margin: 0;
  padding: 0;
  margin-left: calc(-50vw + 50%);
}

.video-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.35); /* optional overlay */
}


.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 1.5rem;

}

.image-card {
    background: var(--base);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}


.image-placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
    object-fit: contain;
    overflow: hidden;
}

.image-placeholder:nth-child(1) {
    animation-delay: 0s;
}

.image-placeholder:nth-child(2) {
    animation-delay: 0.2s;
}

.image-placeholder:nth-child(3) {
    animation-delay: 0.4s;
}

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

.image-card p {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* ============================================
   SEARCH & FILTER SECTION
   ============================================ */

.search-filter {
    padding: 3.5rem 0;
    background: var(--base);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.search-filter h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    font-size: 1rem;
    outline: none;
    background: var(--base);
}

.search-btn {
    padding: 1.2rem 2rem;
    background: var(--primary);
    color: var(--base);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.search-btn:hover {
    background: #004080;
}

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

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    padding: 0.9rem;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    background: var(--base);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
}

.filter-select:hover {
    border-color: var(--primary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 94, 160, 0.1);
}

.clear-btn {
    padding: 0.9rem 1.5rem;
    background: var(--light-gray);
    color: var(--dark);
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.clear-btn:hover {
    background: var(--accent);
    color: var(--base);
    border-color: var(--accent);
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results {
    padding: 3rem 0;
    background: var(--light-gray);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    font-size: 2rem;
    color: var(--primary);
}

.result-count {
    background: var(--accent);
    color: var(--base);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.product-card {
    background: var(--base);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-category {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.product-year {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-cta {
    margin-top: auto;
    padding: 0.9rem;
    background: var(--primary);
    color: var(--base);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
}

.product-cta:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   MODAL / DETAIL VIEW
   ============================================ */

.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--base);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--light-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent);
    color: var(--base);
}

.modal-body {
    padding: 3rem;
}

.detail-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-gray);
}

.detail-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary);
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.detail-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.detail-section {
    margin-top: 2.5rem;
}

.detail-section h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent);
}

.consumables-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.consumable-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.consumable-item:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.consumable-type {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.consumable-models {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-code {
    font-family: 'Courier New', monospace;
    background: var(--base);
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.alternatives-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.alternative-item {
    background: linear-gradient(135deg, rgba(250, 166, 26, 0.1) 0%, rgba(0, 94, 160, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--accent);
}

.alternative-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.alternative-brand {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.alternative-model {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.compatibility-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.buy-btn-main {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    margin-top: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.buy-btn-main:hover {
    background: #1fbb5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.buy-btn-alt {
    display: block;
    width: 100%;
    padding: 0.7rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.buy-btn-alt:hover {
    background: #1fbb5c;
    transform: translateY(-2px);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #999;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    color: var(--base);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--accent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--base);
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #bbb;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */

.footer-social {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social h3 {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--base);
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: rgba(250, 166, 26, 0.15);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(253, 29, 29, 0.2), rgba(168, 16, 189, 0.2));
    color: #fd1d1d;
}

.social-link.facebook:hover {
    background: rgba(66, 103, 178, 0.2);
    color: #4267b2;
}

.social-link.twitter:hover {
    background: rgba(29, 155, 240, 0.2);
    color: #1d9bf0;
}

.social-link.tiktok:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #25f4ee;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
        padding: 0 2rem;
        border-bottom: 1px solid #003d5c;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 2rem;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .home-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-text h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .detail-header {
        grid-template-columns: 1fr;
    }

    .detail-image {
        width: 100%;
        height: 250px;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .logo p {
        font-size: 0.65rem;
    }

    .home-text h1 {
        font-size: 1.5rem;
    }

    .home-text p {
        font-size: 1rem;
    }

    .search-filter h2 {
        font-size: 1.5rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .filters {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link svg {
        width: 22px;
        height: 22px;
    }

    .alternative-item,
    .consumable-item {
        font-size: 0.9rem;
    }
}
/* ============================================
   SHOPPING CART STYLES
   ============================================ */

.cart-button {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--base);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.cart-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.cart-icon {
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent);
    color: var(--dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--base);
}

.cart-modal-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-gray);
    flex-shrink: 0;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.cart-total {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    background-color: #fafafa;
    gap: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.cart-item-category {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.cart-item-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--base);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    padding: 0.25rem;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-weight: 700;
}

.qty-btn:hover {
    background-color: var(--light-gray);
}

.qty-display {
    font-weight: 600;
    color: var(--dark);
    min-width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.remove-btn {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
    white-space: nowrap;
}

.remove-btn:hover {
    background-color: #f59e0b;
    transform: scale(1.05);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-gray);
    flex-shrink: 0;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: #25d366;
    color: var(--base);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background-color: #1fbb5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Add to Cart button in detail modal */
#addToCartBtn {
    background-color: var(--accent) !important;
    color: var(--dark) !important;
    margin-top: 0.5rem !important;
}

#addToCartBtn:hover {
    background-color: #f59e0b !important;
}

@media (max-width: 768px) {
    .cart-button {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }

    .cart-modal-content {
        max-width: 100%;
        max-height: 90vh;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .cart-item-controls {
        width: 100%;
        gap: 0.5rem;
    }

    .qty-controls {
        flex: 1;
    }

    .remove-btn {
        flex: 1;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--base) 0%, rgba(0, 94, 160, 0.02) 100%);
    margin: 3rem 0;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    color: var(--dark);
    line-height: 1.8;
}

.about-text h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.about-text p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-text ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   CUSTOMER REVIEWS SECTION
   ============================================ */

.reviews-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(0, 94, 160, 0.05) 100%);
    padding: 4rem 1rem;
    margin: 3rem 0;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.reviews-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-box {
    background: var(--base);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.review-text {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    border-top: 1px solid var(--border-gray);
    padding-top: 1rem;
}

.review-author strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.review-author span {
    display: block;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reviews-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .reviews-section h2 {
        font-size: 1.8rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-box {
        padding: 1.5rem;
    }
}

.reviews-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-gray);
}

.reviews-action-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 94, 160, 0.2);
}

.reviews-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 94, 160, 0.3);
    background: linear-gradient(135deg, #004080 0%, #003060 100%);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f9fafb 100%);
    margin-top: 2rem;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: var(--base);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form-wrapper {
    display: flex;
    align-items: center;
}

.contact-form-card {
    background: var(--base);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
}

.contact-form-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 94, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 94, 160, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 94, 160, 0.3);
    background: linear-gradient(135deg, #004080 0%, #003060 100%);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 4rem 2rem;
    background: var(--base);
    margin-top: 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f9fafb 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        align-items: stretch;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-grid {
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1.5rem 1rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-form-card {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
    }

    .faq-section {
        padding: 1.5rem 1rem;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-grid {
        gap: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.products-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 0rem;
}

.products-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.products-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.products-section {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-category-card {
    background: var(--base);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent);
    position: relative;
}

.product-category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-category-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.category-description {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.category-features {
    margin-bottom: 1.5rem;
}

.category-features ul {
    list-style: none;
    padding: 0;
}

.category-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.category-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.category-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Consumables Breakdown */

.consumables-breakdown {
    padding: 4rem 2rem;
    background: var(--base);
}

.consumables-breakdown h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.consumables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.consumable-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f9fafb 100%);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.consumable-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.consumable-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.consumable-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.consumable-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Products Benefits */

.products-benefits {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f9fafb 100%);
}

.products-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--base);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #faa61a 100%);
    color: var(--base);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Supported Brands */

.supported-brands {
    padding: 4rem 2rem;
    background: var(--base);
}

.supported-brands h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.brand-item {
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.brand-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Products CTA Section */

.products-cta {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
    color: var(--base);
    text-align: center;
}

.products-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.products-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cat-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--accent);
}

.cat-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #cb8c1f 0%, #a27321 100%);
    color: var(--base);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 94, 160, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cat-button:hover::before {
    left: 100%;
}

.cat-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 94, 160, 0.5), 0 0 20px rgba(250, 166, 26, 0.2);
    background: linear-gradient(135deg, #004080 0%, var(--primary) 100%);
}




.contact-btn {
    background: var(--accent);
    color: var(--dark);
}

.contact-btn:hover {
    background: #f59c1a;
    box-shadow: 0 8px 35px rgba(250, 166, 26, 0.4);
}

/* Products Page Responsive */

@media (max-width: 768px) {
    .products-hero-content h1 {
        font-size: 2rem;
    }

    .products-hero-content p {
        font-size: 1rem;
    }

    .products-section,
    .consumables-breakdown,
    .products-benefits,
    .supported-brands {
        padding: 2rem 1rem;
    }

    .products-section h2,
    .consumables-breakdown h2,
    .products-benefits h2,
    .supported-brands h2 {
        font-size: 2rem;
    }

    .products-grid,
    .consumables-grid,
    .benefits-grid,
    .brands-showcase {
        gap: 1.5rem;
    }

    .product-category-card,
    .consumable-item,
    .benefit-card,
    .brand-item {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 2rem 1rem;
    }

    .products-hero-content h1 {
        font-size: 1.5rem;
    }

    .products-hero-content p {
        font-size: 0.95rem;
    }

    .products-section,
    .consumables-breakdown,
    .products-benefits,
    .supported-brands {
        padding: 1.5rem 1rem;
    }

    .products-section h2,
    .consumables-breakdown h2,
    .products-benefits h2,
    .supported-brands h2 {
        font-size: 1.5rem;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .products-grid,
    .consumables-grid,
    .benefits-grid,
    .brands-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-category-card,
    .consumable-item,
    .benefit-card,
    .brand-item {
        padding: 1rem;
    }

    .category-icon,
    .consumable-icon {
        font-size: 2rem;
    }

    .products-cta h2 {
        font-size: 1.5rem;
    }

    .products-cta p {
        font-size: 1rem;
    }
}