/* General Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    background: rgba(44, 62, 80, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
    letter-spacing: 0.5px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('https://images.unsplash.com/photo-1524592094714-0f0654e20314?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.2), rgba(52, 152, 219, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    animation: slideInRight 1s ease;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    margin-bottom: 2.5rem;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    background: var(--accent-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    position: absolute;
    top: 3rem;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: slideInRight 1s ease;
}

.badge-text {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.badge-price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 6rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-badge {
        top: 2rem;
        right: 1rem;
    }
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card .card-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-card .card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.product-card .btn {
    background: var(--accent-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
}

.product-card .btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    background: var(--light-bg);
}

.features i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.features .col-md-3:hover i {
    transform: translateY(-10px);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000000"/></svg>');
    opacity: 0.03;
}

.testimonial-slider {
    position: relative;
    padding: 0 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    margin-right: 1rem;
}

.author-info {
    flex: 1;
}

.author-info h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.purchase-info {
    font-size: 0.85rem;
    color: #28a745;
    margin-top: 0.3rem;
}

.purchase-info i {
    margin-right: 0.3rem;
}

.rating {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.rating i {
    margin-right: 0.2rem;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #666;
}

.testimonial-date i {
    margin-right: 0.3rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-slider:hover .carousel-control-prev,
.testimonial-slider:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.5;
    transition: var(--transition);
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--accent-color);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonial-slider {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .carousel-indicators {
        bottom: -30px;
    }
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 5rem 0;
}

.newsletter .form-control {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    border: none;
}

.newsletter .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    border: none;
    transition: all 0.3s ease;
}

.newsletter .btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e9ecef"/></svg>');
    opacity: 0.1;
}

.contact-info-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-card {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(10px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 1.2rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.info-content p {
    margin: 0;
    color: #666;
}

.social-links-wrapper {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-links-wrapper h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.input-group {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.input-group-text {
    background: white;
    border: none;
    color: var(--accent-color);
    padding: 0.8rem 1rem;
}

.form-control {
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    box-shadow: none;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.submit-btn i {
    margin-right: 0.5rem;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }
    
    .contact-info-item {
        padding: 0.8rem;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .info-content h4 {
        font-size: 1rem;
    }
    
    .form-control {
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23ffffff"/></svg>');
    opacity: 0.05;
}

.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
}

.footer-widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.widget-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.footer-newsletter .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.footer-newsletter .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.8rem 1.5rem;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .btn {
    background: var(--accent-color);
    border: none;
    padding: 0.8rem 1.5rem;
    color: #fff;
    transition: var(--transition);
}

.footer-newsletter .btn:hover {
    background: var(--primary-color);
    transform: translateX(3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-widget {
        margin-bottom: 2.5rem;
    }
    
    .widget-title {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .footer-newsletter .input-group {
        flex-direction: column;
    }
    
    .footer-newsletter .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .product-card .card-title {
        font-size: 1rem;
    }
    
    .product-card .card-text {
        font-size: 0.8rem;
    }
    
    .product-card .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

/* Cart Modal Styles */
.cart-item {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.quantity-controls button:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.quantity-controls span {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
}

.remove-item {
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.remove-item:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Toast Notification */
.toast {
    z-index: 1050;
}

.toast-body {
    padding: 0.75rem 1rem;
}

/* Cart Modal Header */
.modal-header {
    background: var(--primary-color);
    color: white;
    border-bottom: none;
}

.modal-header .btn-close {
    color: white;
    filter: brightness(0) invert(1);
}

/* Cart Modal Body */
.modal-body {
    padding: 1.5rem;
}

/* Cart Total */
.cart-total {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Checkout Button */
.modal-body .btn-primary {
    width: 100%;
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 1rem;
    transition: var(--transition);
}

.modal-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Empty Cart Message */
.cart-empty {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.cart-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.cart-empty p {
    margin-bottom: 1rem;
}

.cart-empty .btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
}

/* Responsive Cart */
@media (max-width: 576px) {
    .cart-item {
        padding: 0.8rem;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-details h6 {
        font-size: 0.9rem;
    }
    
    .quantity-controls button,
    .remove-item {
        width: 25px;
        height: 25px;
    }
    
    .modal-body {
        padding: 1rem;
    }
}

/* Checkout Modal Styles */
#checkoutModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

#checkoutModal .modal-header {
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

#checkoutModal .modal-body {
    padding: 2rem;
}

#checkoutModal .form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

#checkoutModal .form-control,
#checkoutModal .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: var(--transition);
}

#checkoutModal .form-control:focus,
#checkoutModal .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

#checkoutModal textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

#checkoutModal .order-items {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

#checkoutModal .order-items > div {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

#checkoutModal .order-items > div:last-child {
    border-bottom: none;
}

#checkoutModal hr {
    margin: 1.5rem 0;
    border-color: #eee;
}

#checkoutModal .btn-primary {
    padding: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

#checkoutModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Responsive Checkout */
@media (max-width: 768px) {
    #checkoutModal .modal-body {
        padding: 1.5rem;
    }
    
    #checkoutModal .order-items {
        margin-top: 1.5rem;
    }
    
    #checkoutModal .btn-primary {
        margin-top: 1rem;
    }
}

/* Form Validation Styles */
#checkoutModal .form-control.is-invalid,
#checkoutModal .form-select.is-invalid {
    border-color: var(--secondary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linecap='round' d='M6 3.75v1.5m0 4.5h1.5m-1.5 0L8.25 7.5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

#checkoutModal .invalid-feedback {
    display: none;
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

#checkoutModal .form-control.is-invalid ~ .invalid-feedback,
#checkoutModal .form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

/* New Products Section */
.new-products {
    background: #f8f9fa;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

/* Special Offers Section */
.special-offers {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

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

.offer-content h3 {
    color: var(--primary-color);
    margin: 1rem 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

/* Social Media Follow Section */
.social-follow {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.social-follow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000000"/></svg>');
    opacity: 0.03;
}

.social-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    height: 400px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.social-card:hover .social-overlay {
    opacity: 1;
}

.social-card:hover img {
    transform: scale(1.1);
}

.social-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.social-card:hover .social-content {
    transform: translateY(0);
}

.social-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

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

.social-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.social-content .btn {
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.social-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Social Stats */
.social-stats {
    margin-top: 4rem;
}

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    margin: 0;
}

/* Contact Options Section */
.contact-options {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000000"/></svg>');
    opacity: 0.03;
}

.contact-options-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-option-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.contact-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.contact-option-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-option-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.contact-option-card .icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.contact-option-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-option-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-info {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.contact-option-card .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
}

.contact-option-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .social-card {
        height: 300px;
    }
    
    .social-content {
        padding: 1.5rem;
    }
    
    .social-content i {
        font-size: 2.5rem;
    }
    
    .social-content h4 {
        font-size: 1.2rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .contact-options-wrapper {
        padding: 2rem;
    }
    
    .contact-option-card {
        margin-bottom: 1.5rem;
    }
} 