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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.seo-keywords-hidden {
    color: #fff;
    background-color: #fff;
    font-size: 1px;
    line-height: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    left: -9999px;
    width: 1px;
}

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

.navbar {
    background: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-img-second {
    max-width: 150px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4CAF50;
}

.order-now-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.8); }
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

/* Products Slider Section */
.products-slider-section {
    padding: 3rem 0;
    background: #f9f9f9;
}

.slider-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.products-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9f9f9;
    padding: 20px;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.slide-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.product-info, .benefits, .product-features {
    padding: 3rem 0;
}

.product-info-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

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

.benefit-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.benefit-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

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

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: block;
}

.product-hero-wrapper {
    padding: 2rem 0;
}

.product-hero-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.enostim-hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.enostim-video {
    width: 50%;
    max-width: 400px;
    height: auto;
}

.enostim-text {
    flex: 1;
}

.order-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.order-package-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.order-package-card img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.package-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1rem auto;
    max-width: 100%;
    justify-items: center;
    align-items: center;
}

.package-image-top {
    grid-column: span 1;
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    display: block;
}

.package-image-bottom {
    grid-column: span 2;
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0.5rem auto 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin: 1rem 0;
}

.whatsapp-order-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s;
}

.whatsapp-order-btn:hover {
    background: #20ba5a;
}

.blog-section {
    padding: 3rem 0;
}

.blog-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.sources-section {
    padding: 3rem 0;
}

.sources-section ol {
    margin: 2rem 0;
    padding-left: 2rem;
}

.disclaimer {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.gmp-section, .about-section, .enostim-info {
    padding: 3rem 0;
}

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

.awards-recognition-panel {
    padding: 3rem 0;
    background: #f9f9f9;
}

.award-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.award-main-image {
    flex: 1;
    min-width: 300px;
}

.award-main-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.award-description {
    flex: 1;
    min-width: 300px;
}

.application-section {
    padding: 3rem 0;
}

/* Scientific Evidence Section */
.scientific-evidence {
    padding: 3rem 0;
    background: #f9f9f9;
}

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

.evidence-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.evidence-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.evidence-link {
    text-align: center;
    margin-top: 2rem;
}

.evidence-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.evidence-button:hover {
    background: #45a049;
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.works-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.works-card:hover {
    transform: translateY(-5px);
}

.works-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.works-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.works-card p {
    opacity: 0.9;
}

/* Ingredients Section */
.ingredients-section {
    padding: 3rem 0;
    background: #f9f9f9;
}

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

.ingredient-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ingredient-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.ingredient-card p {
    margin: 0.5rem 0;
}

/* Usage Instructions Section */
.usage-instructions {
    padding: 3rem 0;
}

.instructions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.instruction-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.instruction-item h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-card h2 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.about-card ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.about-card li {
    margin: 0.5rem 0;
}

.contact-section {
    padding: 3rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #45a049;
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background: #4CAF50;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #45a049;
}

/* Product Info Styles */
.product-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.product-info-img {
    max-width: 60%;
    width: 60%;
    height: auto;
    border-radius: 10px;
}

.formulation-image {
    max-width: 200px;
    width: 200px;
    margin: 1rem auto;
    display: block;
}

/* Sexual Health Section */
.sexual-health {
    background: #f5f5f5;
}

.benefit-images {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.benefit-img-first,
.benefit-img-second {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Products Grid Section */
.products-grid-section {
    padding: 3rem 0;
    background: #f9f9f9;
}

.products-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.product-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.product-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.product-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.product-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-main-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s;
    background: white;
    padding: 0.5rem;
}

.product-main-image:hover {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.product-content h4:first-child {
    margin-top: 0;
}

.product-content h5 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.product-content .features-list {
    list-style: none;
    padding: 0;
}

.product-content .features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.product-content .features-list li:last-child {
    border-bottom: none;
}

.product-content .features-list li a {
    color: #4CAF50;
    text-decoration: none;
}

.product-content .features-list li a:hover {
    text-decoration: underline;
}

.product-content .ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-content .ingredient-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.product-content .formulation-image {
    max-width: 100%;
    height: auto;
    margin-top: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-content .instructions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-content .instruction-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
}

.product-content .evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-content .evidence-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.product-content .evidence-link {
    margin-top: 1.5rem;
    text-align: center;
}

.product-content .evidence-button {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.product-content .evidence-button:hover {
    transform: scale(1.05);
}

.product-content .product-order-panels {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.product-content .order-panels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Product Order Section for Hepure */
.product-order-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.product-additional-image {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.product-extra-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-extra-image:hover {
    transform: scale(1.05);
}

.product-extra-image-small {
    max-width: 60%;
    width: 60%;
}

.product-pricing-order {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.whatsapp-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #25D366, #20ba5a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.whatsapp-order-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-order-button svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* Product WhatsApp Info Section */
.product-whatsapp-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.whatsapp-info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #25D366, #20ba5a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.whatsapp-info-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-info-button svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* Product Order Panels */
.product-order-panels {
    padding: 0;
    background: transparent;
}

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

.product-order-panel {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-order-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.product-order-img {
    max-width: 200px;
    height: auto;
    margin: 1rem 0;
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
    margin: 1rem 0;
}

.package-offer {
    color: #ff6b6b;
    font-weight: bold;
    margin: 1rem 0;
}

.order-button {
    display: inline-block;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    margin-top: 1rem;
}

.order-button:hover {
    transform: scale(1.05);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.features-list li a {
    color: #4CAF50;
    text-decoration: none;
}

.features-list li a:hover {
    text-decoration: underline;
}

/* WhatsApp Panel */
.whatsapp-panel {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

.whatsapp-panel.active {
    display: block;
}

.whatsapp-panel-header {
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-panel-header h4 {
    margin: 0;
}

.close-panel {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-panel-content {
    padding: 1.5rem;
}

.whatsapp-link-btn {
    display: block;
    background: #25D366;
    color: white;
    padding: 0.75rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    margin-top: 1rem;
    transition: background 0.3s;
}

.whatsapp-link-btn:hover {
    background: #20ba5a;
}

.whatsapp-btn {
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Footer */
.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    margin: 0 1rem;
}

/* Visibility for animated elements */
.product-info-single,
.product-order-panel,
.video-container,
.slider-section,
.info-card,
.application-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-img {
        max-height: 45px;
        max-width: 150px;
    }
    
    .logo-img-second {
        max-width: 100px;
    }
    
    .nav-logo a {
        gap: 5px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slide-link {
        height: 280px;
    }
    
    .slide-image {
        padding: 15px;
    }
    
    .slide-overlay {
        padding: 1.5rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.5rem;
    }
    
    .slide-overlay p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .order-panels-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-panel {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
    
    .enostim-hero-content {
        flex-direction: column;
    }
    
    .enostim-video {
        width: 100%;
    }
    
    .package-images-grid {
        gap: 0.3rem;
    }
    
    .package-image-top,
    .package-image-bottom {
        max-width: 100px;
    }
    
    .product-order-img {
        max-width: 150px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .product-main-image {
        max-width: 120px;
    }
    
    .product-header h3 {
        font-size: 1.5rem;
    }
    
    .product-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-content h4 {
        font-size: 1.3rem;
    }
    
    .product-content .ingredients-grid,
    .product-content .instructions-content,
    .product-content .evidence-grid,
    .product-content .order-panels-grid {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        max-width: 150px;
    }
    
    .whatsapp-order-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .whatsapp-order-button svg {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    
    .whatsapp-info-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .whatsapp-info-button svg {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
}

