:root {
    --primary-color: #6366f1;
    --primary-light: #8b5cf6;
    --primary-dark: #5558d9;
}

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

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

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

/* Header Styles Placeholder */
/* Header Minimal Modern */
.header-minimal {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-tools {
    display: flex;
    gap: 20px;
}

.search-btn, .cart-btn, .menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4444;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
}

/* Hero Minimal */
.hero-minimal {
    padding: 100px 0;
    text-align: center;
    background: #f8f9fa;
	background-image: url(/header.jpg);
}

.hero-minimal h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-minimal p {
    font-size: 1.2rem;
    color: #000;;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.cart-content {
    background: white;
    margin: 50px auto;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cart-header {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-cart {
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.cart-body {
    padding: 20px;
}

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

.cart-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.cart-footer {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    gap: 10px;
}

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

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-minimal h1 {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Features */
.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, #6366f1, #8b5cf6);
    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 Section */
.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;
}

/* Cards Styles Placeholder */
/* Product Cards Large Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

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

.product-card-large {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.product-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-large-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-large-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}

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

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

.product-large-quick-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card-large:hover .product-large-quick-actions {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.quick-action-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #6b7280;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-large-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-large-category {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-large-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
    height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-large-title a {
    color: inherit;
    text-decoration: none;
}

.product-large-price-container {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-large-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-large-stock {
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    
    .product-large-image {
        height: 250px;
    }
    
    .product-large-details {
        padding: 20px;
    }
    
    .product-large-title {
        font-size: 18px;
    }
    
    .product-large-price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .products-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .product-large-quick-actions {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .quick-action-btn {
        position: relative;
    }
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    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;
    color: #6366f1;
    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 Styles Placeholder */

/* Footer Minimal Styles */
.footer-minimal {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 40px 0 20px;
}

.footer-minimal-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 40px;
}

.footer-minimal-brand {
    max-width: 350px;
}

.footer-minimal-logo img {
    height: 145px;
    margin-bottom: 12px;
}

.footer-minimal-tagline {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer-minimal-nav {
    display: flex;
    gap: 60px;
}

.footer-minimal-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

.footer-minimal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-minimal-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-minimal-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-minimal-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.footer-minimal-contact i {
    color: var(--primary-color);
    width: 14px;
}

.footer-minimal-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-minimal-copyright {
    color: #9ca3af;
    font-size: 13px;
}

.footer-minimal-social {
    display: flex;
    gap: 12px;
}

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

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

.back-to-top-minimal {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.back-to-top-minimal:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
    .footer-minimal-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-minimal-nav {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-minimal-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-minimal-social {
        justify-content: center;
    }
}


/* Utilities */
.text-center {
    text-align: center;
}

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

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

/* Button Styles Placeholder */

/* Button Styles - Flat Colored */

/* Main product buttons in cards */
.product-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Horizontal card buttons */
.product-horizontal-button {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 600;
}

.product-horizontal-button:hover {
    background: #059669;
}

/* Overlay card buttons */
.overlay-cart-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overlay-cart-btn:hover {
    background: #d97706;
}

/* Minimal card buttons */
.product-minimal-add {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
    color: white;
}

.product-minimal-add:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Large card quick action buttons */
.quick-action-btn {
    width: 45px;
    height: 45px;
    background: #ef4444;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: white;
}

.quick-action-btn:hover {
    background: #dc2626;
}

/* Main product page button */
.add-to-cart-main {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-main:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* Color Scheme Placeholder */
:root {
    --primary-color: #0A166A;
    --primary-vibrant: #191B33;
    --secondary-color: #D80AA8;
    --accent-color: #081E5D;
    --complementary: #CD17AA;
    --text-dark: #0a0f1c;
    --text-light: #64748b;
    --background: #0f172a;
    --background-light: #1e293b;
    --border-color: #334155;
}

.feature-icon,
.product-button,
.add-to-cart-main,
.newsletter-button,
.back-to-top {
    background: 
        linear-gradient(45deg, 
            transparent 30%, 
            rgba(10, 22, 106, 0.8) 50%, 
            transparent 70%),
        linear-gradient(135deg, 
            rgba(8, 30, 93, 0.9), 
            rgba(25, 27, 51, 0.9));
    color: #ffffff;
    border: 2px solid #0A166A;
    border-radius: 0;
    box-shadow: 
        0 0 5px #0A166A, 
        0 0 10px #0A166A, 
        0 0 20px #0A166A;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.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(205, 23, 170, 0.8), 
        transparent);
    transition: left 0.5s ease;
}

.feature-icon:after,
.product-button:after,
.add-to-cart-main:after,
.newsletter-button:after,
.back-to-top:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #0A166A, 
        #081E5D, 
        #CD17AA, 
        #0A166A);
    z-index: -1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.feature-icon:hover,
.product-button:hover,
.add-to-cart-main:hover,
.newsletter-button:hover,
.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 5px #0A166A, 
        0 0 10px #0A166A, 
        0 0 20px #0A166A,
        0 0 5px #081E5D, 
        0 0 10px #081E5D, 
        0 0 20px #081E5D,
        0 15px 50px rgba(10, 22, 106, 0.6);
    border-color: #081E5D;
}

.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(30, 41, 59, 0.8);
    border: 1px solid rgba(10, 22, 106, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(10, 22, 106, 0.03) 0px,
        rgba(10, 22, 106, 0.03) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.5;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 30px rgba(10, 22, 106, 0.6),
        0 20px 60px rgba(8, 30, 93, 0.3);
    border-color: #081E5D;
}

.hero {
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(10, 22, 106, 0.03) 0px,
            rgba(10, 22, 106, 0.03) 1px,
            transparent 1px,
            transparent 20px
        ),
        radial-gradient(ellipse at center, rgba(10, 22, 106, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    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;
    }
}