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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #f5f5f5;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

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

/* Logo */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 60%;
    object-fit: cover;    
}

/* Header & Navigation */
.header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.navbar a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, #8B0000 0%, #B22222 100%); */
    /* background: linear-gradient(135deg, #D2691E 0%, #FF8C00 100%); */
    /* background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%); */
    /* background: linear-gradient(135deg, #2a2a2a 0%, #404040 100%); */
    /* background: linear-gradient(135deg, #4a0e4e 0%, #7a2c52 100%); */
    /* background: linear-gradient(135deg, #004d4d 0%, #007a7a 100%); */
    /* background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%); */
    /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */
    background: linear-gradient(135deg, #800020 0%, #a71930 100%);
    color: var(--secondary-color);
    text-align: center;
    position: sticky;
    top: 60px;
    padding: 15px 20px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    width: 100%;
}

/* .hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
} */

.hero-content p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
    max-width: 900px;
    line-height: 1.4;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: var(--accent-color);
    border-top: 2px solid var(--border-color);
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    font-weight: bold;
}

.about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--light-text);
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.products h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    font-weight: bold;
}

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

.product-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Product Image Wrapper with Navigation */
.product-image-wrapper {
    position: relative;
    width: 100%;
    background-color: #f9f9f9;
}

.product-image {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background-color: #fafafa;
}

/* Navigation Buttons */
.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.image-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.image-nav-btn i {
    pointer-events: none;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Image Counter */
.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.product-card h3 {
    font-size: 20px;
    margin: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.product-card .discount {
    font-size: 18px;
    color: rgb(80, 73, 73);
    margin: 0 20px;
    text-decoration: line-through;
}

.product-card .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 20px;
    margin-bottom: 10px;
}

.product-card .description {
    font-size: 14px;
    color: var(--light-text);
    margin: 0 20px 20px 20px;
    line-height: 1.5;
}

.product-details {
    padding: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 20px 30px 20px;
    border-top: 2px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cccccc;
    gap: 8px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999999;
}

/* Social Links Styling */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-weight: 500;
}

.social-link i {
    font-size: 18px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 20px;
    }

    .navbar a {
        font-size: 12px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero {
        padding: 12px 15px;
        top: 50px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .products h2,
    .about h2 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .image-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .image-counter {
        font-size: 11px;
        padding: 5px 10px;
    }

    .about {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .logo-img {
        height: 32px;
        width: 32px;
    }

    .navbar a {
        font-size: 12px;
    }

    .hero {
        padding: 10px 10px;
        top: 50px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }
}
