/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.header-logo {
    height: 50px;
    width: auto;
    max-width: 60px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 80px 0;
    text-align: center;
}

.headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.subheadline {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars i {
    color: #ffc107;
    font-size: 20px;
}

.rating-text {
    margin-left: 10px;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
}

/* Hero image styles removed - using inline styles for performance */

/* Included Images */
.included-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.included-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 32px;
    color: #fff;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.benefit-item p {
    color: #6c757d;
    font-size: 16px;
}

/* Product Mockup */
.product-mockup {
    padding: 80px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
}

.mockup-content {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: center;
    flex-direction: column;
}

.product-video {
    width: 95%;
    max-width: 800px;
    height: 600px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
}

.mockup-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 600px;
}

/* Main Offer */
.main-offer {
    padding: 80px 10px;
    background: #fff;
    text-align: center;
}

.main-offer .container {
    padding: 0 10px;
}

.price-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
    flex-wrap: nowrap;
}

.original-price {
    font-size: 28px;
    color: #dc3545;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 48px;
    font-weight: 800;
    color: #212529;
}

.discount-badge {
    background: #dc3545;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.payment-options {
    margin: 0;
    padding: 0;
}

.installments {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin: 0;
    padding: 0;
}

.countdown-timer {
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 0;
}

.timer-element {
    background: transparent;
    color: #dc3545;
    padding: 15px 8px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 0;
}

.timer-element span {
    display: block;
    font-size: 42px !important;
    font-weight: 700;
    color: #dc3545 !important;
}

.timer-element label {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.8;
    color: #dc3545;
}

.limited-copies {
    font-size: 18px;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 40px;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

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

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

.main-cta {
    font-size: 24px;
    padding: 25px 50px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #212529;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #495057;
}

.testimonial-author strong {
    color: #28a745;
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    color: #6c757d;
    font-size: 14px;
}

.cta-section {
    text-align: center;
}

/* Recipe Categories */
.recipe-categories {
    padding: 60px 0;
    background: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
}

.category-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-item img:hover {
    transform: translateY(-5px);
}

.category-caption {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
}

/* Product Preview */
.product-preview {
    padding: 60px 0 0 0;
    background: #fff;
}

.preview-content {
    text-align: center;
}

.product-mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 500px;
    object-fit: contain;
}

/* What's Included */
.whats-included {
    padding: 80px 0;
    background: #fff;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.included-item i {
    font-size: 24px;
    color: #28a745;
    min-width: 30px;
}

.included-item span {
    font-weight: 500;
    color: #495057;
}

/* FAQs */
.faqs {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #28a745;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #495057;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.price-reminder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.strike-price {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.discount {
    background: #dc3545;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.final-cta-btn {
    margin-bottom: 20px;
    font-size: 22px;
    padding: 20px 40px;
}

.guarantee-text {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Terms Link */
.terms-link {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
    line-height: 1.6;
    color: #495057;
}

.modal-body h3 {
    color: #28a745;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body h4 {
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
}

.modal-body p {
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #212529;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .mockup-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .product-video {
        width: 95%;
        max-width: 600px;
        height: 450px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .timer-element {
        min-width: 50px;
        padding: 10px;
    }
    
    .timer-element span {
        font-size: 18px;
    }
    
    .timer-element label {
        font-size: 12px;
    }
    
    .price-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .current-price {
        font-size: 36px;
    }
    
    .cta-button {
        padding: 30px 25px;
        font-size: 20px;
        max-width: 95%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.3;
        min-height: 80px;
        word-wrap: break-word;
    }
    
    .main-cta {
        font-size: 22px;
        padding: 35px 30px;
        min-height: 90px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .header-logo {
        height: 40px;
        max-width: 50px;
    }
    
    .logo {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .hero, .benefits, .recipe-categories, .product-mockup, .main-offer, .testimonials, .whats-included, .faqs, .final-cta {
        padding: 60px 0;
    }
    
    .product-preview {
        padding: 60px 0 0 0;
    }
    
    .categories-grid {
        gap: 20px;
    }
    
    .category-item img {
        height: 150px;
    }
    
    .cta-highlight {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .header-logo {
        height: 35px;
        max-width: 45px;
    }
    
    .logo {
        gap: 6px;
    }
    
    .final-cta-content h2 {
        font-size: 28px;
    }
    
    .current-price {
        font-size: 32px;
    }
    
    .cta-button {
        padding: 25px 15px;
        font-size: 18px;
        max-width: 98%;
        line-height: 1.4;
        min-height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .main-cta {
        font-size: 20px;
        padding: 30px 20px;
        min-height: 95px;
    }
    
    .price-section {
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .original-price {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 32px;
    }
    
    .discount-badge {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .included-images {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }
    
    .included-image {
        max-width: 100%;
        height: auto;
    }
}

/* Animation for scroll effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}



/* Reviews Gallery Section */
.reviews-gallery {
    padding: 80px 0;
    background: #fff;
}

.reviews-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 50px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.reviews-rating .stars {
    display: flex;
    gap: 5px;
}

.reviews-rating .stars i {
    color: #ffc107;
    font-size: 20px;
}

.reviews-count {
    font-weight: 600;
    color: #212529;
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.review-content {
    padding: 20px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.review-stars i {
    color: #ffc107;
    font-size: 14px;
}

.review-stars .far {
    color: #e0e0e0;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    font-weight: 400;
}

/* Desktop - 4 columnas */
@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .review-image {
        height: 280px;
    }
    
    .review-content {
        padding: 25px;
    }
    
    .reviewer-name {
        font-size: 17px;
    }
    
    .review-text {
        font-size: 15px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .reviews-gallery {
        padding: 60px 0;
    }
    
    .reviews-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .reviews-rating {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .reviews-grid {
        gap: 15px;
    }
    
    .review-image {
        height: 200px;
    }
    
    .review-content {
        padding: 15px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .review-text {
        font-size: 13px;
    }
}


/* Instagram Reviews Section */
.instagram-reviews {
    padding: 80px 0;
    background: linear-gradient(180deg, #fef9f3 0%, #fff 100%);
    overflow: hidden;
}

.instagram-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
}

.instagram-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
}

.carousel-slide {
    min-width: calc(85% - 7.5px);
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: transparent;
    height: auto;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 700px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 0 20px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #212529;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: #ff9800;
    width: 30px;
    border-radius: 6px;
}

/* Desktop grande - 3 imágenes */
@media (min-width: 1200px) {
    .carousel-slide {
        min-width: calc(33.333% - 10px);
        height: auto;
    }
    
    .carousel-slide img {
        object-fit: contain;
        max-height: 500px;
    }
}

/* Tablet - 2 imágenes */
@media (min-width: 768px) and (max-width: 1199px) {
    .carousel-slide {
        min-width: calc(50% - 7.5px);
        height: auto;
    }
    
    .carousel-slide img {
        object-fit: contain;
        max-height: 500px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .instagram-reviews {
        padding: 60px 0;
    }
    
    .instagram-title {
        font-size: 32px;
        padding: 0 15px;
    }
    
    .instagram-subtitle {
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .carousel-wrapper {
        padding: 0;
    }
    
    .carousel-container {
        border-radius: 0;
    }
    
    .carousel-slide {
        min-width: calc(100% - 30px);
        height: auto;
        border-radius: 15px;
    }
    
    .carousel-slide img {
        object-fit: contain;
        max-height: 550px;
    }
    
    .carousel-controls {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .instagram-title {
        font-size: 28px;
    }
    
    .carousel-wrapper {
        padding: 0;
    }
    
    .carousel-container {
        border-radius: 0;
    }
    
    .carousel-slide {
        min-width: calc(100% - 20px);
        height: auto;
        border-radius: 15px;
    }
    
    .carousel-slide img {
        object-fit: contain;
        max-height: 500px;
    }
    
    .carousel-controls {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}