/* =============== Suplementy - specifické styly =============== */

/* Hero sekce pro suplementy */
.supplements-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-gradient);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.hero-badge i {
  font-size: 1.1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffac00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle-main {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.subtitle-secondary {
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 400;
}

/* Úvod sekce */
.intro-section {
  position: relative;
}

.intro-content {
  text-align: center;
  margin-bottom: 1rem;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
}

.intro-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color), #ffac00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.intro-text h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color-muted);
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--glass-border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #ffac00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
}

.benefit-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.benefit-item p {
  color: var(--text-color-muted);
  line-height: 1.6;
}

/* Produkty grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--bg-dark-3);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

.product-badge span {
  background: linear-gradient(135deg, var(--primary-color), #ffac00);
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.new span {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: #f8f9fa;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-view-btn:hover {
  background: #ffac00;
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--text-color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.feature-tag i {
  font-size: 0.7rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.price-old {
  color: var(--text-color-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.price-current {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
}

.product-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), #ffac00);
  color: #000;
  border: none;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-btn:hover {
  background: linear-gradient(135deg, #ffac00, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Video sekce */
.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.video-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 2rem;
  transition: all var(--transition-fast);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.video-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-indicator {
  height: 100%;
  width: 30%;
  background: var(--primary-color);
  border-radius: 2px;
}

.video-info {
  padding: 2rem;
}

.video-info h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.video-info p {
  color: var(--text-color-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.video-stats {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-color-muted);
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* CTA sekce */
.cta-section {
  background: var(--bg-dark-1);
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color), #ffac00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 2.5rem;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-color-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.cta-button-secondary:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Responzivní úpravy */
@media (max-width: 768px) {
  .supplements-hero .hero-title-line {
    font-size: 3rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  .subtitle-main {
    font-size: 1.2rem;
  }
  
  .subtitle-secondary {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .video-placeholder {
    height: 300px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .intro-text {
    padding: 2rem 1.5rem;
  }
  
  .intro-text h2 {
    font-size: 1.8rem;
  }
  
  .benefit-item {
    padding: 1.5rem;
  }
  
  .product-info {
    padding: 1rem;
  }
  
  .video-info {
    padding: 1.5rem;
  }
  
  .cta-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

/* Dodatečný JavaScript pro interaktivitu */
.product-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-btn.added {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
}

.product-btn.added:after {
  content: " ✓";
}

/* Animace pro scroll efekty */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Hover efekty pro lepší UX */
.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.feature-tag:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
}

/* Loading stavy */
.product-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.product-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* =============== Aktualizace původního CSS pro lepší responsive chování =============== */

/* Produkty grid - základní nastavení */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-dark-3);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
    width: 100%; /* Zajistí, že karta vyplní celý grid item */
    min-height: 450px; /* Minimální výška pro konzistenci */
    display: flex;
    flex-direction: column;
}

.product-info {
    padding: 1.5rem;
    flex: 1; /* Zajistí, že info sekce vyplní zbývající prostor */
    display: flex;
    flex-direction: column;
}

.product-description {
    flex: 1; /* Popis se roztáhne podle potřeby */
    margin-bottom: 1rem;
}

.product-btn {
    margin-top: auto; /* Tlačítko se přilepí na dno */
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #ffac00);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responzivní breakpointy */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px; /* Menší padding na mobilech */
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .product-card {
        min-height: 380px;
        font-size: 0.9rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .product-description {
        font-size: 0.85rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-features {
        margin-bottom: 1rem;
        gap: 4px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .product-price {
        margin-bottom: 1rem;
    }
    
    .price-current {
        font-size: 1.2rem;
    }
    
    .product-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 0.5rem;
        margin: 2rem 0 0;
    }
    
    .product-card {
        min-height: 350px;
        font-size: 0.85rem;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .product-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0.75rem;
    }
    
    .product-features {
        margin-bottom: 0.75rem;
        gap: 3px;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 2px 5px;
    }
    
    .product-price {
        margin-bottom: 0.75rem;
    }
    
    .price-old {
        font-size: 0.8rem;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .product-btn {
        padding: 8px;
        font-size: 0.8rem;
        gap: 4px;
    }
}

/* Landscape orientace na mobilech */
@media (max-width: 896px) and (orientation: landscape) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .product-card {
        min-height: 300px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-description {
        -webkit-line-clamp: 1;
    }
}

/* Speciální optimalizace pro touch zařízení */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .product-overlay {
        opacity: 0;
        pointer-events: none;
    }
    
    .quick-view-btn {
        display: none;
    }
    
    /* Větší touch targets na mobilech */
    .product-btn {
        min-height: 44px; /* Apple doporučuje minimálně 44px pro touch targets */
    }
}



.py-5 {
    padding-top: 6rem;
    padding-bottom: 1rem;
}



/* FAQ sekce */
.faq-section {
    background: var(--bg-dark-1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--bg-dark-3);
    color: var(--text-color);
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--primary-color);
    color: #000;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-color-muted);
    line-height: 1.6;
    margin: 0;
}





.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    height: 100%;
    width: 100%;
}

.product-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Zajistí, že tlačítka zůstanou funkční */
.quick-view-btn,
.product-btn {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* Předejde výchozímu chování odkazů v tlačítkách */
.quick-view-btn:hover,
.product-btn:hover {
    text-decoration: none;
}

/* Pokud chcete zabránit dvojitému kliku na tlačítka */
.product-btn,
.quick-view-btn {
    cursor: pointer;
}

/* Oprava zarovnání produktových karet - 4x4 grid bez zoom efektů */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 sloupce místo auto-fit */
    gap: 1.5rem; /* Menší mezera jako původně */
    margin-top: 3rem; /* Původní hodnota */
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* KLÍČOVÉ - stejná výška všech karet */
    
    /* Původní styly z supplements-hero.css */
    background: var(--bg-dark-3);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
    min-height: 450px;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-image {
    flex-shrink: 0;
    height: 250px; /* Původní výška */
    overflow: hidden;
    position: relative;
    background: #f8f9fa; /* Původní pozadí */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium); /* Původní transition */
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Roztáhne se na zbývající prostor */
    padding: 1.5rem; /* Původní padding */
    position: relative;
}

.product-name {
    color: var(--primary-color);
    font-size: 1.3rem; /* Původní velikost */
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    min-height: 2.4em; /* Pro konzistenci */
}

.product-description {
    color: var(--text-color-muted);
    font-size: 0.95rem; /* Původní velikost */
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1; /* Roztáhne se na dostupný prostor */
    min-height: 3em;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    margin-top: auto; /* Tlačí cenu dolů */
}

.price-current {
    color: var(--primary-color);
    font-size: 1.4rem; /* Původní velikost */
    font-weight: 700;
}

.product-btn {
    margin-top: auto; /* KLÍČOVÉ - tlačí tlačítko na spodek karty */
    width: 100%;
    
    /* Původní styly tlačítka */
    background: linear-gradient(135deg, var(--primary-color), #ffac00);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Původní hover efekty - BEZ zoom efektů na kartu */
.product-card:hover {
    transform: translateY(-10px); /* Původní hover */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.product-btn:hover {
    background: linear-gradient(135deg, #ffac00, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* ODSTRANĚNO - zoom efekt na obrázek */
/* .product-card:hover .product-image img {
    transform: scale(1.1);
} */

/* Zachování původní responzivity */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.1rem;
        min-height: 2.4em;
    }
    
    .product-description {
        font-size: 0.85rem;
        min-height: 2.5em;
    }
    
    .product-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-name {
        font-size: 1rem;
        min-height: 2rem;
    }
    
    .product-description {
        font-size: 0.8rem;
        min-height: 2.5em;
    }
    
    .price-current {
        font-size: 1.2rem;
    }
    
    .product-btn {
        padding: 8px;
        font-size: 0.8rem;
    }
}

/* Posunutí hero tlačítka dolů */
.supplements-hero .hero-buttons {
    margin-top: 3rem; /* Přidá více prostoru nad tlačítkem */
}

/* Nebo alternativně můžete použít padding */
.supplements-hero .hero-buttons {
    padding-top: 2rem;
}

/* Oprava centrování textu v CTA tlačítku */
.cta-button.btn-glow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    line-height: 1.2; /* Optimální výška řádku */
}

.cta-button.btn-glow span {
    display: inline-block;
    vertical-align: middle;
}

.cta-button.btn-glow i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px; /* Mezera mezi textem a ikonou */
}

/* Alternativní řešení pokud předchozí nefunguje */
.cta-buttons .cta-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.8rem 2rem; /* Zajistí dostatečný padding */
    line-height: normal;
}