
:root {
    --primary-color: #43bfe8;
    --primary-color-rgb: 67, 191, 232;
    --primary-light: #93ffff;
    --primary-dark: #004770;
    --primary-vibrant: #6be7ff;
    --secondary-color: #b9c96e;
    --secondary-color-rgb: 185, 201, 110;
    --accent-color: #0ee417;
    --accent-color-rgb: 14, 228, 23;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-dark: #1a202c;
    --text-light: #718096;
    --background: #ffffff;
    --background-light: #f7fafc;
    --border-color: #e2e8f0;
    --footer-bg: #43bfe8;
    --footer-text: #ffffff;
}

.feature-icon,
.product-button,
.add-to-cart-main,
.newsletter-button,
.back-to-top {
    background: linear-gradient(135deg, 
        rgba(67, 191, 232, 0.9) 0%,
        rgba(107, 231, 255, 0.8) 25%,
        rgba(14, 228, 23, 0.9) 50%,
        rgba(185, 201, 110, 0.8) 75%,
        rgba(67, 191, 232, 0.9) 100%) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(67, 191, 232, 0.2) !important;
    border-radius: 20px !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.feature-icon:before,
.product-button:before,
.add-to-cart-main:before,
.newsletter-button:before,
.back-to-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon:hover,
.product-button:hover,
.add-to-cart-main:hover,
.newsletter-button:hover,
.back-to-top:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 
        0 20px 60px rgba(67, 191, 232, 0.4),
        0 0 80px rgba(107, 231, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.feature-icon:hover:before,
.product-button:hover:before,
.add-to-cart-main:hover:before,
.newsletter-button:hover:before,
.back-to-top:hover:before {
    left: 100%;
}

.product-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(67, 191, 232, 0.2) !important;
    border-radius: 24px !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.product-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, 
        rgba(67, 191, 232, 0.1), 
        transparent, 
        rgba(14, 228, 23, 0.1), 
        transparent);
    animation: rotate 8s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg) !important;
    box-shadow: 
        0 30px 80px rgba(67, 191, 232, 0.3),
        0 0 100px rgba(107, 231, 255, 0.2) !important;
    border-color: rgba(107, 231, 255, 0.5) !important;
}



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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

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


.header-minimal {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

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

.logo-minimal img {
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.logo-minimal img:hover {
    filter: grayscale(0);
}

.cart-button-minimal {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-button-minimal:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.minimal-nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.minimal-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    margin: 0;
}

.minimal-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.minimal-menu a:hover {
    color: var(--primary-color);
}


.hero-themed {
    position: relative;
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at top left, rgba(var(--primary-color-rgb), 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(var(--accent-color-rgb), 0.15) 0%, transparent 60%),
        linear-gradient(135deg, 
            rgba(var(--primary-color-rgb), 0.12) 0%, 
            rgba(var(--secondary-color-rgb), 0.08) 50%, 
            rgba(var(--primary-color-rgb), 0.12) 100%),
        rgba(255, 255, 255, 0.95);
    color: #1a202c;
}

.hero-themed .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-themed .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.15);
}

.hero-themed .hero-badge i {
    font-size: 1.1rem;
}

.hero-themed .hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-themed .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-themed .hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-themed .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-themed .feature-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(var(--primary-color-rgb), 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-color-rgb), 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-themed .feature-badge:hover {
    background: rgba(var(--primary-color-rgb), 0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-themed .feature-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.hero-themed .hero-cta {
    margin-bottom: 1rem;
}

.hero-themed .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.4rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.3);
}

.hero-themed .hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--primary-color-rgb), 0.4);
}

.hero-themed .hero-stats {
    display: grid;
    gap: 1.5rem;
}

.hero-themed .stat-card {
    background: rgba(var(--primary-color-rgb), 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.1);
}

.hero-themed .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(var(--primary-color-rgb), 0.2);
    border-color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.08);
}

.hero-themed .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.hero-themed .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 968px) {
    .hero-themed .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-themed .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-themed {
        padding: 80px 0;
    }
    
    .hero-themed .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-themed .hero-features {
        justify-content: center;
    }
    
    .hero-themed .hero-stats {
        grid-template-columns: 1fr;
    }
}

.cart-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cart-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.close-cart {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-cart:hover {
    color: #333;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-total {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: right;
}

.cart-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.cart-footer {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.cart-footer button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.clear-cart {
    background: #ef4444;
    color: white;
}

.order-btn {
    background: var(--primary-color);
    color: white;
}

.close-btn {
    background: #6b7280;
    color: white;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 40px;
}

.search-container {
    position: relative;
}

.search-input {
    padding: 10px 15px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 250px;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.cart-button {
    position: relative;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .search-input {
        width: 150px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.feature-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.products {
    padding: 80px 0;
    background: #f8fafc;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.product-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image:after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-info {
    padding: 22px;
    position: relative;
}

.product-info:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.product-card:hover .product-info:before {
    width: 80%;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.product-card:hover .product-title {
    transform: translateY(-2px);
}

.product-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover .product-description {
    color: var(--text-color);
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    transform: translateY(-2px);
    font-size: 22px;
}

.product-button {
    width: 100%;
    margin-top: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.product-card:hover .product-button {
    opacity: 1;
    transform: translateY(-2px);
}

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.newsletter-button {
    background: white !important;
    color: #333 !important;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}


.footer-minimal {
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid #e9ecef;
    padding: 40px 0 20px;
}

.minimal-footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.minimal-left .minimal-logo img {
    margin-bottom: 15px;
}

.minimal-desc {
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
}

.minimal-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.minimal-footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.minimal-footer-nav a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.minimal-contact p {
    color: #495057;
    margin-bottom: 8px;
    font-weight: 500;
}

.minimal-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.minimal-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #e9ecef;
    color: #6c757d;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.minimal-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.minimal-footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    text-align: center;
}

.minimal-footer-bottom p {
    color: #6c757d;
    font-size: 14px;
}

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

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}


.product-button, .add-to-cart {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.newsletter-button {
    background: white !important;
    color: #333 !important;
    border: 2px solid #333;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.product-button:hover, .add-to-cart:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.newsletter-button:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    transform: translateY(-1px);
}

.add-to-cart-main {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.add-to-cart-main:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-button i, .add-to-cart i, .add-to-cart-main i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

td>img{max-height:70px}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .products {
        padding: 60px 0;
    }
    
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}