/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #000000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #007bff;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 80px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #ff0000;
    padding: 8px;
    border: 2px solid #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.5rem;
    color: #ffffff;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff0000;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search bar styles removed */

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon, .user-icon {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon:hover, .user-icon:hover {
    color: #ff0000;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hero-logo-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Introduction Section */
.introduction-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.introduction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gears" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="8" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23gears)"/></svg>');
    opacity: 0.2;
}

.intro-content {
    text-align: center;
}

.intro-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-text {
    margin-bottom: 50px;
}

.intro-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #bdc3c7;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ecf0f1;
    font-weight: 600;
}

.feature-item p {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.6;
}

/* About KSM Enterprise Section */
.about-ksm-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-ksm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="automotive" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="12" fill="none" stroke="rgba(0,123,255,0.1)" stroke-width="1"/><circle cx="30" cy="30" r="6" fill="rgba(0,123,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23automotive)"/></svg>');
    opacity: 0.3;
}

.about-ksm-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.about-ksm-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-ksm-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff0000;
    margin-top: 40px;
}

.about-ksm-text h3:first-child {
    margin-top: 0;
}

.about-ksm-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-ksm-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-ksm-text ul li {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 25px;
    position: relative;
}

.about-ksm-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(0,123,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact)"/></svg>');
    opacity: 0.2;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff0000;
    text-align: center;
}

.contact-info p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #007bff;
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 2rem;
    color: #007bff;
    min-width: 40px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #007bff;
    font-weight: 600;
}

.contact-item p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #ff0000;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

/* Remove cart-related styles and update action buttons for portfolio */
.action-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: #ff0000;
    color: white;
    transform: scale(1.1);
}

.view-btn:hover {
    background: #ff0000;
}

/* Remove cart count styles */
.cart-count {
    display: none;
}

/* Update product counter for portfolio */
.product-counter {
    text-align: center;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Update modal styles for portfolio (if needed) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #007bff;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    color: #ffffff;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #007bff;
}

.cart-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.checkout-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

.checkout-btn:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }
    
    .nav ul {
        margin: 15px 0;
        gap: 20px;
    }
    
    /* Search bar mobile styles removed */
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .products-section h2,
    .categories h2,
    .about-section h2,
    .introduction-section h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .intro-header h2 {
        font-size: 2.5rem;
    }
    
    .intro-header h3 {
        font-size: 1.5rem;
    }
    
    .intro-text p {
        font-size: 1.1rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .products-section,
    .categories {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
} 

/* About Us Section */
.about-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    color: #ffffff;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff0000;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.about-features i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.about-features strong {
    color: #333;
}

.director-info {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #007bff;
}

.director-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-image {
    text-align: center;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 3px solid #ff0000;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.director-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #ff0000;
    background: transparent;
    padding: 0;
}

.director-photo:hover {
    transform: scale(1.02);
}

.image-caption {
    color: #bdc3c7;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Brands Section */
.brands-section {
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 15px;
    border: 2px solid #ff0000;
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brands-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-section p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-items: center;
}

.brand-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    border: 2px solid #ff0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.brand-logo {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
    background: transparent;
    padding: 10px;
}

.brand-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-description {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 8px 0 0 0;
    font-style: italic;
}

.product-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    background: rgba(255, 0, 0, 0.1);
    border-top: 1px solid #ff0000;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* E-commerce Styles */
.shop-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.shop-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
}

.shop-filters select,
.shop-filters input {
    padding: 10px 15px;
    border: 2px solid #ff0000;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
}

.shop-filters input {
    min-width: 250px;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-description {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-price {
    color: #ff0000;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.cart-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 60vh;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.cart-items {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #ff0000;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

.cart-item-price {
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    background: #ff0000;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-controls span {
    color: #ffffff;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total p {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.remove-btn {
    background: #ff0000;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.cart-summary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #ff0000;
    height: fit-content;
}

.cart-summary h3 {
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.cart-total {
    margin-bottom: 30px;
}

.cart-total p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cart-total span {
    color: #ff0000;
    font-weight: bold;
}

.checkout-btn,
.continue-shopping {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.checkout-btn {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
}

.continue-shopping {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff0000;
}

.checkout-btn:hover,
.continue-shopping:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.empty-cart {
    text-align: center;
    color: #cccccc;
    font-size: 1.2rem;
    padding: 40px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ff0000;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #ff0000;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Customer Form Styles */
.customer-form {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 10px;
    border: 1px solid #ff0000;
}

.customer-form h4 {
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ff0000;
    border-radius: 5px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6666;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

/* Footer */
.footer {
    background-color: #000000;
    color: white;
    padding: 40px 0 20px;
    border-top: 2px solid #007bff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #007bff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Payment Method Styles */
.payment-method {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-method h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.2);
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

.payment-option label i {
    color: #007bff;
    font-size: 1.1rem;
}

.payment-option input[type="radio"]:checked + label {
    color: #007bff;
}

.payment-option input[type="radio"]:checked + label i {
    color: #007bff;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 6px;
    margin-top: 15px;
}

.info-box i {
    color: #007bff;
    font-size: 1.2rem;
    margin-top: 2px;
}

.info-box p {
    margin: 0;
    color: #0056b3;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bank-details {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    border-left: 3px solid #007bff;
}

.bank-details p {
    margin: 5px 0;
    color: #333;
    font-size: 0.9rem;
}

.bank-details strong {
    color: #007bff;
}

.jazzcash-details {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    border-left: 3px solid #007bff;
}

.jazzcash-details p {
    margin: 5px 0;
    color: #333;
    font-size: 0.9rem;
}

.jazzcash-details strong {
    color: #007bff;
}

.jazzcash-form .form-group {
    margin-bottom: 15px;
}

.jazzcash-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.jazzcash-form .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.jazzcash-form .form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Responsive styles for payment method */
@media (max-width: 768px) {
    .payment-options {
        gap: 8px;
    }
    
    .payment-option {
        padding: 10px;
    }
    
    .payment-option label {
        font-size: 0.95rem;
    }
    
    .info-box {
        padding: 12px;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
} 
