/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: #111;
    box-shadow: 0 2px 10px rgba(255,79,163,0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
    height: auto;
    z-index: 1001;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff4fa3;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4fa3;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ff4fa3;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: radial-gradient(circle at 20% 50%, rgba(255,79,163,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0,212,255,0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255,79,163,0.1);
    color: #ff4fa3;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255,79,163,0.2);
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text span {
    color: #ff4fa3;
}

.hero-text p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,79,163,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ff4fa3;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    border-color: transparent;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ff4fa3;
}

.stat-label {
    font-size: 14px;
    color: #aaa;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* PRODUCTS SECTION */
.products {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.section-title span {
    color: #ff4fa3;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #222;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #ff4fa3;
    box-shadow: 0 10px 30px rgba(255,79,163,0.2);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Category Cards */
.category-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.category-card img {
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card:hover .card-overlay h3 {
    transform: translateY(0);
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ff4fa3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transform: translateX(-10px);
    transition: transform 0.3s ease;
}

.category-card:hover .btn-small {
    transform: translateX(0);
}

/* Product Cards */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.ai-badge {
    background: #00d4ff;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.rating {
    color: #ff4fa3;
    margin-bottom: 10px;
    font-size: 14px;
}

.rating span {
    color: #aaa;
    margin-left: 5px;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current {
    font-size: 20px;
    font-weight: 700;
    color: #ff4fa3;
}

.original {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

.product-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #aaa;
    flex-wrap: wrap;
}

.product-features i {
    color: #ff4fa3;
    margin-right: 5px;
}

.add-to-cart {
    width: 100%;
    justify-content: center;
    background: transparent;
    border: 1px solid #ff4fa3;
}

.add-to-cart:hover {
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    border-color: transparent;
}

.view-all {
    text-align: center;
    margin-top: 20px;
}

/* AI SERVICE SECTION */
.ai-service {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,79,163,0.05), rgba(0,212,255,0.05));
}

.ai-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ai-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.ai-text p {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 28px;
    color: #ff4fa3;
    min-width: 40px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
    color: #aaa;
}

.ai-showcase {
    position: relative;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-radius: 15px;
    overflow: hidden;
}

.before, .after {
    position: relative;
}

.before img, .after img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.showcase-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(255,79,163,0.3);
    font-size: 16px;
}

/* FEATURES GRID */
.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,79,163,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ff4fa3;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: #0a0a0a;
}

.testimonial-card {
    padding: 35px;
}

.testimonial-rating {
    color: #ff4fa3;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-card p {
    color: #aaa;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff4fa3;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 13px;
    color: #aaa;
}

/* STATS SECTION */
.stats {
    padding: 80px 0;
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    color: white;
}

/* NEWSLETTER */
.newsletter {
    padding: 80px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 25px;
    background: #111;
    border: 1px solid #222;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #ff4fa3;
    box-shadow: 0 0 0 3px rgba(255,79,163,0.1);
}

.form-group input::placeholder {
    color: #666;
}

.form-group .btn {
    padding: 15px 35px;
}

.checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
}

.checkbox input {
    accent-color: #ff4fa3;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    z-index: 100;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(37,211,102,0.3);
    font-size: 16px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.whatsapp-float i {
    font-size: 24px;
}

/* FOOTER */
footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.social-links a:hover {
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    color: white;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ff4fa3;
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-info li i {
    color: #ff4fa3;
    width: 20px;
    margin-top: 3px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 30px;
    background: white;
    border-radius: 5px;
    padding: 5px 8px;
    object-fit: contain;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ff4fa3;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff4fa3, #00d4ff);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(255,79,163,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255,79,163,0.4);
}

/* NOTIFICATION */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #111;
    border-left: 4px solid #ff4fa3;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
    width: calc(100% - 60px);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #00d4ff;
}

.notification-success i {
    color: #00d4ff;
}

.notification i {
    font-size: 24px;
}

.notification span {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

/* RESPONSIVE DESIGN */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .grid {
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: span 3;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        transition: right 0.3s ease;
        border-left: 1px solid #222;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-text {
        text-align: center;
    }
    
    .ai-text h2 {
        text-align: center;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-section:first-child {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
    
    .notification {
        top: 80px;
        right: 20px;
        left: 20px;
        width: auto;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .nav-container {
        padding: 12px 15px;
    }
    
    .logo {
        width: 100px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group .btn {
        width: 100%;
    }
    
    .whatsapp-float {
        padding: 10px;
        border-radius: 50px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float i {
        font-size: 28px;
        margin: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: auto;
    }
    
    .footer-section h4::after {
        left: 0;
        transform: none;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .card-overlay h3 {
        font-size: 20px;
    }
    
    .product-features {
        justify-content: center;
    }
    
    .price {
        justify-content: center;
    }
    
    .rating {
        text-align: center;
    }
    
    .product-info h3 {
        text-align: center;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin: 0 auto;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .card img {
        height: 200px;
    }
    
    .product-info h3 {
        font-size: 16px;
    }
    
    .current {
        font-size: 18px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-section ul li a,
    .contact-info li {
        font-size: 13px;
    }
    
    .payment-methods img {
        height: 25px;
    }
}