/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* Product Details Page Styles */
.product-details-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.placeholder-image {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.placeholder-thumbnail {
    width: 80px;
    height: 80px;
    background-color: #ddd;
    border-radius: 8px;
    cursor: pointer;
}

.product-info {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-info h1 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.product-info .price {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
    font-weight: bold;
}

.product-info .category {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-info .description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-info .button {
    padding: 1rem 2rem;
    border-radius: 30px;
    display: inline-block;
}

/* About Page Styles */
.about-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-header p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.mission-vision, .product-range, .customer-value {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-vision h2, .product-range h2, .customer-value h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
}

.mission-vision p, .product-range p, .customer-value p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.product-range ul {
    list-style: none;
    padding: 0;
}

.product-range li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.product-range li:last-child {
    border-bottom: none;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
}

.logo img {
    height: 150px;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links a:hover {
    color: #ff0000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-bar button {
    padding: 0.5rem 1rem;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #cc0000;
}

.cart-icon a {
    position: relative;
    display: inline-block;
}

.cart-icon a {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
}

.cart-icon a::before {
    content: "🛒";
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
}

.follow-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#follow-button-header {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

#follow-button-header:hover {
    background-color: #cc0000;
}

#follower-count-header {
    font-size: 0.9rem;
}

/* Hero Banner Styles */
.hero-banner {
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-banner .shop-now-btn {
    padding: 1rem 2rem;
    background-color: #fff;
    color: #ff0000;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-banner .shop-now-btn:hover {
    background-color: #ffcc00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Categories Page Styles */
.categories-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.categories-header {
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.categories-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.categories-header p {
    font-size: 1.3rem;
}

/* Category Grid Styles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

@media (max-width: 480px) {
    .category-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 2rem;
}

.category-card {
    border: none;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: #ff6b35;
}

.category-card h3 {
    margin-top: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0;
    padding: 0.5rem;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.category-card h3 {
    margin-top: 0.5rem;
    color: #ff0000;
    font-weight: bold;
    padding: 0.5rem 0;
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    border: none;
    border-radius: 0;
    padding: 1rem;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card.out-of-stock {
    opacity: 0.6;
}

.product-image {
    position: relative;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

.product-badges {
    position: absolute;
    top: 10px;
    width: 100%;
    pointer-events: none;
}

.product-badges .badge.new {
    position: absolute;
    top: 0;
    left: 10px;
}

.product-badges .badge.sale {
    position: absolute;
    top: 0;
    right: 10px;
}

.product-info {
    /* Removed padding to eliminate square card appearance */
}

.product-name {
    margin: 0.5rem 0;
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.4;
}

.product-price {
    font-weight: bold;
    color: #ff0000;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.product-price .original-price {
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.product-price .discount-price {
    color: #e74c3c;
    font-weight: bold;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-card .button {
    width: 100%;
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

.add-to-cart-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.view-details-btn {
    background-color: #ffcc00;
    color: #333;
}

.view-details-btn:hover {
    background-color: #e6b800;
}

/* Button Styles */
.button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.button:hover {
    background-color: #cc0000;
}

/* Follow Section Styles */
.follow-buysmart {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promotional-banner {
    background: linear-gradient(135deg, #ff0000, #ff6b35);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 2rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

.promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.promo-button {
    background-color: white;
    color: #ff0000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border-radius: 12px;
    margin: 0 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.follow-buysmart h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.follow-buysmart p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.follow-buysmart .button {
    margin-top: 1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
}

/* Trust Badges Styles */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.badge {
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.badge h3 {
    margin-top: 0.5rem;
    color: #ff0000;
    font-weight: bold;
    padding: 2rem 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    font-size: 1.3rem;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border-radius: 12px;
    margin: 0 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-header h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    border-radius: 3px;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.modern-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.2);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.full-width {
    grid-column: 1 / -1;
}

.submit-button {
    background: linear-gradient(135deg, #ff0000, #ff6b35);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.2);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 82, 82, 0.3);
    background: linear-gradient(135deg, #ff6b35, #ff0000);
}

/* Responsive Form Layout */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-form {
        padding: 2rem 1.5rem;
    }
    
    .form-input,
    .form-textarea {
        padding-left: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-info-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-info-header h2 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.contact-info-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    border-radius: 3px;
}

.contact-info-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    color: #ff6b35;
}

.contact-method h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail {
    font-size: 1.2rem;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-availability {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.contact-button {
    background: linear-gradient(135deg, #ff0000, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 82, 82, 0.3);
    background: linear-gradient(135deg, #ff6b35, #ff0000);
}

.contact-button i {
    font-size: 1.1rem;
}

.social-media-links {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.social-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.social-header h2 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.social-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    border-radius: 3px;
}

.social-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background-color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.facebook .social-icon {
    color: #3b5998;
}

.twitter .social-icon {
    color: #1da1f2;
}

.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.linkedin .social-icon {
    color: #0077b5;
}

.social-card:hover .social-icon {
    transform: scale(1.2);
}

.social-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.social-link {
    background: linear-gradient(135deg, #ff0000, #ff6b35);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 82, 82, 0.3);
    background: linear-gradient(135deg, #ff6b35, #ff0000);
}

.social-link i {
    font-size: 1.1rem;
}

.facebook .social-link {
    background: linear-gradient(135deg, #3b5998, #4267b2);
}

.facebook .social-link:hover {
    background: linear-gradient(135deg, #4267b2, #3b5998);
}

.twitter .social-link {
    background: linear-gradient(135deg, #1da1f2, #14171a);
}

.twitter .social-link:hover {
    background: linear-gradient(135deg, #14171a, #1da1f2);
}

.instagram .social-link {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.instagram .social-link:hover {
    filter: brightness(1.1);
}

.linkedin .social-link {
    background: linear-gradient(135deg, #0077b5, #006699);
}

.linkedin .social-link:hover {
    background: linear-gradient(135deg, #006699, #0077b5);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

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

.quick-links h3,
.follow-section h3,
.social-media h3 {
    margin-bottom: 1rem;
}

.quick-links ul,
.social-media ul {
    list-style: none;
    padding: 0;
}

.quick-links li,
.social-media li {
    margin: 0.5rem 0;
}

.quick-links a,
.social-media a {
    color: #fff;
    text-decoration: none;
}

.quick-links a:hover,
.social-media a:hover {
    color: #ff0000;
}

.copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

/* Social Media Icons Styles */
.social-icons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.social-icons li {
    margin: 0;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #555;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff0000;
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.2rem;
}

/* Cart Page Styles */
.cart-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-header {
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cart-header p {
    font-size: 1.3rem;
}

#cart-items {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ff0000;
    transition: all 0.3s ease;
}

.cart-item-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.2);
}

.cart-item-info {
    flex: 1;
    margin-left: 1.5rem;
}

.cart-item-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    color: #333;
}

.cart-item-info p {
    margin: 0.5rem 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}

.quantity-value {
    font-size: 0.9rem;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}

.cart-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.clear-cart-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.2);
}

.continue-shopping-btn {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.2);
}

.cart-summary {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-summary h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
}

.cart-summary p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cart-summary .button {
    padding: 1rem 2rem;
    border-radius: 30px;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #ff0000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cart-summary .button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.2);
}

/* Responsive Cart Styles */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cart-item-info {
        margin-left: 0;
    }

    .cart-controls {
        flex-direction: column;
        align-items: center;
    }

    .cart-item-image img {
        width: 60px;
        height: 60px;
    }
}

/* Checkout Page Styles */
.checkout-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.checkout-header {
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    grid-column: 1 / -1;
}

.checkout-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.checkout-header p {
    font-size: 1.3rem;
}

.checkout-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.checkout-form h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 2px rgba(255, 82, 82, 0.2);
}

.checkout-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkout-form .button {
    padding: 1rem 2rem;
    border-radius: 30px;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #ff0000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.checkout-form .button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.2);
}

.order-summary {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-summary h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
}

.order-summary p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

#order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-summary .button {
    padding: 1rem 2rem;
    border-radius: 30px;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #ff0000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.order-summary .button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.2);
}

/* Responsive Checkout Styles */
@media (max-width: 768px) {
    .checkout-section {
        grid-template-columns: 1fr;
    }

    .checkout-form,
    .order-summary {
        margin-bottom: 1rem;
    }
}

/* Enhanced Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideUp 0.4s ease-out;
    border: 1px solid rgba(255, 82, 82, 0.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ffcc00;
}

.modal-header h2 {
    font-size: 2rem;
    color: #ff0000;
    margin: 0;
    font-weight: 700;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
}

.close:hover {
    color: #fff;
    background-color: #ff0000;
    transform: rotate(90deg);
}

.modal-body {
    padding: 1rem 0;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.merchant-details {
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid #ff0000;
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.1);
}

.merchant-details p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    color: #333;
}

.merchant-details p strong {
    color: #ff0000;
    font-weight: 600;
}

.upload-proof-btn {
    background: linear-gradient(135deg, #ffcc00, #ffb300);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin: 1.5rem auto;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.upload-proof-btn:hover {
    background: linear-gradient(135deg, #ffb300, #ff9900);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

.file-upload-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 2px dashed #ddd;
    transition: all 0.3s ease;
}

.file-upload-section:hover {
    border-color: #ff0000;
    background-color: #fff5f5;
}

.file-upload-section input[type="file"] {
    width: 100%;
    padding: 1rem;
    border: 2px dashed #ff0000;
    border-radius: 12px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-section input[type="file"]:hover {
    background-color: #fff0f0;
    border-color: #cc0000;
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.modal-footer button {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
}

.modal-footer button:hover {
    background: linear-gradient(135deg, #cc0000, #ff0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 82, 82, 0.4);
}

/* Modal Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo img {
        height: 100px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        order: 4;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        overflow: hidden;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a:hover {
        background-color: #f5f5f5;
        color: #ff0000;
    }
    
    .nav-actions {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .search-bar {
        display: none;
    }
    
    .nav-actions {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        order: 3;
    }
    
    .follow-icon {
        order: 2;
    }
    
    .cart-icon {
        order: 1;
    }
    
    .nav-actions {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        order: 3;
    }
    
    .follow-icon {
        order: 2;
    }
    
    .cart-icon {
        order: 1;
    }
}

    .hero-banner {
        padding: 2rem 1rem;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .hero-banner p {
        font-size: 1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .category-grid,
    .product-grid,
    .badges-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        flex-direction: column;
        align-items: center;
    }

    .image-carousel {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }

    .advert-container {
        grid-template-columns: 1fr;
    }

    .advert-content h3 {
        font-size: 1.2rem;
    }

    .advert-content p {
        font-size: 1rem;
    }


    .category-card {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        padding: 1rem;
        box-sizing: border-box;
        max-width: 200px;
        margin: 0 auto 1rem;
    }

    .category-card {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        padding: 1rem;
        box-sizing: border-box;
        max-width: 200px;
        margin: 0 auto 1rem;
    }

    .category-card img {
        height: 120px;
        object-fit: contain;
    }

    .hero-banner {
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .hero-content {
        padding: 0 1rem;
        box-sizing: border-box;
    }


/* Modern Enhancements for Buysmart Enterprise */

/* Call To Order Banner Styles */
.call-to-order-banner {
    background: linear-gradient(135deg, #ff6b35, #ff0000);
    color: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.call-banner-content h2 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.call-banner-content p {
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.call-button {
    background: white;
    color: #ff0000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.call-button:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Promotional Banner Styles */
.promo-banner {
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    color: white;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: slide 3s linear infinite;
}

/* WhatsApp Floating Icon Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    font-size: 2rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* WhatsApp icon tooltip */
.whatsapp-float::after {
    content: "Chat with us on WhatsApp";
    position: absolute;
    left: -180px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
}

/* Responsive WhatsApp icon */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .whatsapp-float::after {
        display: none;
    }
}

@keyframes slide {
    from { background-position: 0% 0%; }
    to { background-position: 100% 100%; }
}

.promo-banner h2 {
    margin: 0;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.promo-banner p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.promo-banner .btn-modern {
    margin-top: 1rem;
    background: white;
    color: #ff0000;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-banner .btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

/* Carousel and Advert Section Styles */
.carousel-advert-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carousel-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
}

.center-promo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
    flex: 1;
    max-width: 400px;
    align-self: flex-start;
    margin: 0 2rem;
    order: 1;
}

.image-carousel {
    width: 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: white;
    flex: 0 0 auto;
}

.left-carousel {
    order: 0;
}

.right-carousel {
    order: 2;
}

.left-carousel {
    border-top: 4px solid #ff0000;
}

.right-carousel {
    border-top: 4px solid #ffcc00;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.carousel-caption {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%);
}

.carousel-caption h4 {
    margin: 0 0 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.carousel-caption p {
    margin: 0 0 1rem;
    color: #ff0000;
    font-weight: bold;
}

.carousel-caption .button {
    margin-top: auto;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.advert-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advert-banner {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Developer Credits Styles */
.developer-credits {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.95rem;
    color: #ccc;
    border-top: 1px solid #555;
    margin-top: 1rem;
    background-color: rgba(0, 0, 0, 0.1);
}

.developer-credits a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.developer-credits a:hover {
    color: #ffcc00;
    text-decoration: underline;
    transform: translateY(-2px);
}

.developer-credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ff0000;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.developer-credits a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.developer-credits i {
    color: #ff0000;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Enhanced Footer with Developer Credits */
.footer-enhanced {
    background: linear-gradient(135deg, #333, #000);
    color: white;
    padding: 4rem 0 0;
}

.footer-bottom-enhanced {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom-enhanced p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

.developer-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

.developer-section p {
    margin: 0;
    color: #aaa;
    font-size: 0.85rem;
}

.developer-section a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
}

.developer-section a:hover {
    color: #ffcc00;
}

/* Hero Section Text Animations */
.hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: heroTitleAnimation 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: heroSubtitleAnimation 0.8s ease-out 0.4s forwards;
}

.shop-now-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: heroButtonAnimation 0.8s ease-out 0.6s forwards;
}

@keyframes heroTitleAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Hero Section Styles */
.hero-banner {
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: white;
    color: #ff0000;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    background: #ffcc00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: white;
    color: #ff0000;
    transform: translateY(-3px);
}

/* Hero Background Animation */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: heroBackgroundAnimation 10s linear infinite;
}

@keyframes heroBackgroundAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

/* Text Animation Classes */
.text-animate {
    display: inline-block;
    opacity: 0;
    animation: textFadeIn 0.6s ease-out forwards;
}

.text-animate:nth-child(1) { animation-delay: 0.1s; }
.text-animate:nth-child(2) { animation-delay: 0.2s; }
.text-animate:nth-child(3) { animation-delay: 0.3s; }
.text-animate:nth-child(4) { animation-delay: 0.4s; }
.text-animate:nth-child(5) { animation-delay: 0.5s; }
.text-animate:nth-child(6) { animation-delay: 0.6s; }
.text-animate:nth-child(7) { animation-delay: 0.7s; }
.text-animate:nth-child(8) { animation-delay: 0.8s; }
.text-animate:nth-child(9) { animation-delay: 0.9s; }
.text-animate:nth-child(10) { animation-delay: 1.0s; }

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Character Animation for Hero Titles */
.hero-title.char-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    animation: charFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes charFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #fff; }
}

/* Responsive Hero Animations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

.advert-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.top-advert {
    background: linear-gradient(135deg, #ff0000, #ff6b35);
    color: white;
}

.middle-advert {
    background: linear-gradient(135deg, #ffcc00, #ff9800);
    color: #333;
}

.bottom-advert {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.advert-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.advert-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: slide 3s linear infinite;
}

.advert-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advert-content p {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.advert-btn {
    background: white;
    color: #ff0000;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.advert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.middle-advert .advert-btn {
    background: #333;
    color: #ffcc00;
}

.bottom-advert .advert-btn {
    background: #ffcc00;
    color: #667eea;
}

.advert-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Center Promo Banner for Homepage */
.center-promo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 2rem auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
    max-width: 800px;
}

.center-promo-banner::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    border-radius: 12px;
    animation: slide 3s linear infinite;
}

.promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.promo-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promo-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
}

.promo-benefits i {
    color: #ffcc00;
    font-size: 1.1rem;
}

.promo-btn {
    background: white;
    color: #667eea;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    background: #f8f8f8;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes slide {
    from { background-position: 0% 0%; }
    to { background-position: 100% 100%; }
}

/* About Page Specific Styles */
.mission-vision {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 1rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.section-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.section-card:hover::before {
    transform: scaleX(1);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.mission-card .card-icon {
    color: #ff6b35;
}

.vision-card .card-icon {
    color: #ffcc00;
}

.card-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    border-radius: 3px;
}

.card-content {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.highlight-item i {
    color: #ff0000;
    font-size: 0.9rem;
}

.mission-card .highlight-item i {
    color: #ff6b35;
}

.vision-card .highlight-item i {
    color: #ffcc00;
}

/* Product Range Styles */
.product-range {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 1rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-category {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-category:hover::before {
    transform: scaleX(1);
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.product-category:hover .category-icon {
    transform: scale(1.1);
    color: #ff6b35;
}

.product-category h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-category p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Customer Value Proposition Styles */
.customer-value {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 1rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:nth-child(2) .value-icon {
    color: #ff6b35;
}

.value-card:nth-child(3) .value-icon {
    color: #ffcc00;
}

.value-card:nth-child(4) .value-icon {
    color: #4CAF50;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .mission-vision {
        padding: 2rem 0.5rem;
    }
    
    .section-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
    }
}

.advert-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: slide 3s linear infinite;
}

.advert-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advert-content p {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.countdown-timer {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.countdown-timer span {
    background: rgba(0,0,0,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin: 0 0.2rem;
}

.advert-btn {
    background: white;
    color: #ff0000;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.advert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: #ff0000;
    color: white;
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #ff0000;
}

/* Responsive Carousel and Advert Sections */
@media (max-width: 768px) {
    .carousel-container {
        flex-direction: column;
        align-items: center;
    }
    
    .image-carousel {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }
    
    .advert-container {
        grid-template-columns: 1fr;
    }
    
    .advert-content h3 {
        font-size: 1.2rem;
    }
    
    .advert-content p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .carousel-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .left-carousel {
        order: 0;
    }
    
    .right-carousel {
        order: 2;
    }
    
    .center-promo-banner {
        order: 1;
        flex: 1;
        max-width: 400px;
        align-self: flex-start;
        margin: 0 2rem;
    }
}

/* Animation for Carousel */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide {
    animation: fadeInSlide 1s ease-in-out;
}

/* Enhanced Product Card Styles */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

/* Enhanced Button Styles */
.button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.button:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Badge Styles */
.badge-sale, .badge-new, .badge-featured {
    position: absolute;
    top: 10px;
    z-index: 10;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.badge-sale {
    left: 10px;
    background: #ff0000;
    color: white;
}

.badge-new {
    left: 10px;
    background: #4CAF50;
    color: white;
    margin-top: 30px;
}

.badge-featured {
    right: 10px;
    background: #ffcc00;
    color: #333;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    left: -2rem;
    top: -1rem;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-role {
    font-size: 1rem;
    opacity: 0.8;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #ff0000, #ff6b35);
    color: white;
    padding: 3rem 0;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: white;
    color: #ff0000;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loading and Error Styles */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-style: italic;
    color: #666;
}

.loading-spinner::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.no-products {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.error-message {
    text-align: center;
    padding: 20px;
    color: #e74c3c;
    background-color: #fadbd8;
    border-radius: 4px;
}

/* Enhanced Product Card Hover Effects */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Category Carousel Styles */
.carousel-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carousel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.carousel-header h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.carousel-header p {
    font-size: 1.1rem;
    color: #666;
}

.category-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 1rem;
}

.carousel-slide {
    min-width: 250px;
    margin: 0 1rem;
    flex-shrink: 0;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #ff0000;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-indicator.active {
    background: #ff0000;
    border-color: #ff0000;
}

.carousel-indicator:hover {
    transform: scale(1.2);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-slide {
        min-width: 200px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Enhanced Button Styles */
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Badge Styles for Promotions */
.badge-sale {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #ff0000;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-new {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #4CAF50;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-featured {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #ffcc00;
    color: #333;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Product Badge Styles */
.product-badges .badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.product-badges .badge.featured {
    background: linear-gradient(135deg, #ffcc00, #ffb300);
    color: #333;
}

.product-badges .badge.new {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.product-badges .badge.sale {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.product-badges .badge.out-of-stock {
    position: absolute;
    top: 40px;
    left: 10px;
    background: linear-gradient(135deg, #666, #999);
    color: white;
}

/* Enhanced Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-banner p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.shop-now-btn {
    padding: 1rem 2rem;
    background-color: #fff;
    color: #ff0000;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.shop-now-btn:hover {
    background-color: #ffcc00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #333, #000);
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.quick-links h3, .follow-section h3, .social-media h3 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.quick-links h3::after, .follow-section h3::after, .social-media h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff0000;
}

.quick-links a, .social-media a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links a:hover, .social-media a:hover {
    color: #ff0000;
    transform: translateX(5px);
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff0000;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
    text-align: center;
    padding: 1.5rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .promo-banner h2 {
        font-size: 1.5rem;
    }
    
    .promo-banner p {
        font-size: 1rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}
