/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #F9FAFB;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    min-height: 44px; /* Minimum touch target size */
    min-width: 44px; /* Minimum touch target size */
}

.btn-primary {
    background-color: #E11D48;
    color: white;
}

.btn-primary:hover {
    background-color: #BE123C;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #111827;
    color: white;
}

.btn-secondary:hover {
    background-color: #1F2937;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.3);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid #F3F4F6;
    border-top: 3px solid #E11D48;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E11D48;
    text-decoration: none;
    z-index: 1001;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #E11D48;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #E11D48;
}

.cart-icon {
    position: relative;
    font-size: 1.25rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #E11D48;
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background-color: #111827;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #E11D48;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #BE123C;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(225, 29, 72, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Featured Collection */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    min-height: 300px;
}

/* Filter Loading State */
.collection-section.filtering .products-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.collection-section.filtering .products-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #F3F4F6;
    border-top: 3px solid #E11D48;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 11;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #E11D48;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.product-desc {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E11D48;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.875rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #111827;
    color: #111827;
}

.btn-outline:hover {
    background-color: #111827;
    color: white;
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    color: #6B7280;
}

.no-products i {
    font-size: 3rem;
    color: #D1D5DB;
    margin-bottom: 1rem;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.no-products p {
    font-size: 1rem;
    color: #6B7280;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background-color: white;
    border-radius: 12px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.category-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover,
.category-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #E11D48;
    outline: none;
}

.category-icon {
    font-size: 2.5rem;
    color: #E11D48;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.category-desc {
    color: #6B7280;
    font-size: 0.875rem;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #E11D48;
    color: white;
    border-color: #E11D48;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #111827;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #6B7280;
    margin-bottom: 1rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E11D48;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #F3F4F6;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    font-style: italic;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.125rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: #E5E7EB;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid #F3F4F6;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: #6B7280;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #E5E7EB;
    color: #111827;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #E11D48;
    color: white;
    border-color: #E11D48;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #E11D48;
    transform: scale(1.2);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #111827;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E11D48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.error-message {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-success {
    background-color: #10B981;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    display: none;
}

.contact-info {
    padding: 1rem 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    background-color: #FEE2E2;
    color: #E11D48;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.contact-details p {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.social-links {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F3F4F6;
    color: #111827;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #E11D48;
    color: white;
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter-section {
    background-color: #111827;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.newsletter-input-group .btn {
    padding: 0.875rem 2rem;
}

.newsletter-success {
    background-color: #10B981;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    display: none;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo p {
    color: #9CA3AF;
    max-width: 250px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

.footer-payment h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.payment-info {
    color: #9CA3AF;
    font-size: 0.75rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-bottom .social-icons {
    margin-top: 0;
}

/* Cart Side Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-panel.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    color: #111827;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #9CA3AF;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.cart-items {
    display: none;
}

.cart-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
    font-size: 0.875rem;
}

.cart-item-size,
.cart-item-color {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-weight: 600;
    color: #E11D48;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.quantity-btn {
    background-color: #F3F4F6;
    border-right: 1px solid #D1D5DB;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.quantity-btn:last-child {
    border-right: none;
}

.quantity-display {
    width: 40px;
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
}

.remove-item {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    flex-shrink: 0;
    display: none;
}

.cart-totals {
    margin-bottom: 1.5rem;
}

.cart-subtotal,
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cart-total {
    font-weight: 700;
    font-size: 1.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid #E5E7EB;
}

.checkout-btn,
.continue-btn {
    width: 100%;
    margin-bottom: 0.75rem;
}

.continue-btn {
    background-color: transparent;
    border: 2px solid #111827;
    color: #111827;
}

.continue-btn:hover {
    background-color: #111827;
    color: white;
}

/* Checkout / Delivery Address Panel */
.checkout-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.checkout-panel.open {
    right: 0;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    flex-shrink: 0;
    background-color: #111827;
    color: white;
}

.checkout-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.close-checkout {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-checkout:hover {
    color: #E11D48;
}

.checkout-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-body .form-group {
    margin-bottom: 0;
}

.checkout-body label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #111827;
    font-size: 0.875rem;
}

.checkout-body input,
.checkout-body textarea,
.checkout-body select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.checkout-body input:focus,
.checkout-body textarea:focus,
.checkout-body select:focus {
    outline: none;
    border-color: #E11D48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6B7280;
}

.address-type {
    margin-top: 1rem;
}

.address-type label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.address-type-buttons {
    display: flex;
    gap: 0.5rem;
}

.address-type-btn {
    flex: 1;
    padding: 0.5rem;
    background-color: #F3F4F6;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    color: #6B7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.address-type-btn:hover,
.address-type-btn.active {
    background-color: #E11D48;
    color: white;
    border-color: #E11D48;
}

.order-summary {
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.order-summary h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #E5E7EB;
    margin-top: 0.75rem;
}

.checkout-footer {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    background-color: #F9FAFB;
}

.checkout-footer .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.back-to-cart {
    background-color: white;
    border: 2px solid #111827;
    color: #111827;
}

.back-to-cart:hover {
    background-color: #111827;
    color: white;
}

/* Payment Panel - Updated */
.payment-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 600px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.payment-panel.open {
    right: 0;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    flex-shrink: 0;
    background-color: #111827;
    color: white;
}

.payment-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.close-payment {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-payment:hover {
    color: #E11D48;
}

.payment-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.payment-methods h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #F9FAFB;
}

.payment-option:hover {
    border-color: #D1D5DB;
    background-color: white;
}

.payment-option.active {
    border-color: #E11D48;
    background-color: #FEF2F2;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background-color: #E11D48;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.payment-details h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.payment-details p {
    font-size: 0.75rem;
    color: #6B7280;
}

.payment-method-details {
    display: none;
}

.payment-method-details.active {
    display: block;
}

/* QR Code Section - Updated */
.qr-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.qr-header {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.qr-sub {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.qr-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 25px auto;
    max-width: 400px;
    border: 3px dashed #E5E7EB;
    position: relative;
    overflow: hidden;
}

.qr-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(225, 29, 71, 0.11) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.qr-box img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.receiver {
    color: #555;
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
    padding: 8px 0;
}

.receiver strong {
    color: #111827;
    font-size: 16px;
    font-weight: 600;
}

.upi-id {
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    padding: 14px 18px;
    margin: 12px 0;
    border-radius: 12px;
    font-family: 'Inter', 'Courier New', monospace;
    font-size: 15px;
    color: #1f2937;
    border: 1px solid rgba(0, 123, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.12);
    position: relative;
    overflow: hidden;
    word-break: break-all;
}

.upi-id:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}


.quick-pay {
    margin: 20px 0;
    padding: 15px;
    background: #F8FAFC;
    border-radius: 10px;
}

.quick-pay .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    background: #E11D48;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-pay .btn:hover {
    background: #BE123C;
    transform: translateY(-2px);
}

.qr-amount {
    background: #E8F5E9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #2e7d32;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qr-amount span:first-child {
    color: #555;
    font-weight: normal;
}

/* COD Section */
.cod-info {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.cod-icon {
    font-size: 3rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.cod-info h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.cod-info p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.cod-terms {
    text-align: left;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.cod-terms p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.cod-terms i {
    color: #10B981;
}

.confirm-cod-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: #E11D48;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-cod-btn:hover {
    background: #BE123C;
}

/* Order Summary in Payment */
.order-summary-payment {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    margin-top: 1rem;
}

.order-summary-payment h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F3F4F6;
}

.order-summary-payment .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.order-summary-payment .summary-item.total {
    font-weight: 700;
    font-size: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #E5E7EB;
    margin-top: 0.75rem;
}

/* Payment Footer */
.payment-footer {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F9FAFB;
}

.back-to-address {
    background-color: white;
    border: 2px solid #111827;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-address:hover {
    background-color: #111827;
    color: white;
}

.payment-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10B981;
    font-size: 0.875rem;
    font-weight: 500;
}

.payment-security i {
    font-size: 1rem;
}

/* Order Items in Checkout Panel */
.order-items {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    margin-bottom: 1.5rem;
}

.order-items h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F3F4F6;
}

.order-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 1px solid #E5E7EB;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
    font-size: 0.875rem;
    line-height: 1.4;
}

.order-item-variants {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.order-item-price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.order-item-price {
    font-weight: 600;
    color: #E11D48;
}

.order-item-qty {
    color: #6B7280;
    background-color: #F3F4F6;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.order-items-summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.items-count {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.items-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
    padding-top: 0.5rem;
    border-top: 1px solid #E5E7EB;
}

/* Payment Processing Overlay */
.payment-processing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.processing-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.processing-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #F3F4F6;
    border-top: 4px solid #E11D48;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.processing-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.processing-content p {
    color: #6B7280;
    margin-bottom: 0.5rem;
}

.processing-note {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-style: italic;
}

/* Product Detail Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1200;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background-color: white;
    border-radius: 12px;
    z-index: 1300;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #111827;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: calc(90vh - 70px);
    overflow-y: auto;
    padding: 0;
}

.modal-image {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.modal-details {
    padding: 2rem;
    border-left: 1px solid #E5E7EB;
    overflow-y: auto;
}

.modal-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E11D48;
    margin-bottom: 1rem;
}

.modal-description {
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-options {
    margin-bottom: 2rem;
}

.size-options,
.color-options,
.quantity-selector {
    margin-bottom: 1.5rem;
}

.size-options h4,
.color-options h4,
.quantity-selector h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.size-buttons,
.color-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    background-color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover,
.size-btn.selected {
    background-color: #111827;
    color: white;
    border-color: #111827;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-btn.selected {
    border-color: #111827;
}

.quantity-control {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: #F9FAFB;
    border: 1px solid #D1D5DB;
    cursor: pointer;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: 1px solid #D1D5DB;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-actions .btn {
    width: 100%;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: none;
    justify-content: space-around;
    padding: 0.75rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6B7280;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: #E11D48;
}

.mobile-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mobile-cart-count {
    position: absolute;
    top: 0;
    right: 5px;
    background-color: #E11D48;
    color: white;
    font-size: 0.625rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #10B981;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    max-width: 300px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        max-height: 80vh;
    }
    
    .modal-details {
        border-left: none;
        border-top: 1px solid #E5E7EB;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Header & Navigation */
    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transition: left 0.4s ease;
        z-index: 999;
        gap: 2rem;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 0.5rem 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cart-icon {
        position: static;
    }
    
    .cart-count {
        top: -5px;
        right: -5px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Checkout Panel */
    .checkout-panel,
    .payment-panel {
        max-width: 100%;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    /* Stats */
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: none;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    /* Cart Panel */
    .cart-panel {
        max-width: 100%;
    }
    
    /* Checkout Footer */
    .checkout-footer,
    .payment-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .checkout-footer .btn,
    .payment-footer .btn {
        width: 100%;
    }
    
    .order-item {
        padding: 0.75rem 0;
    }
    
    .order-item-image {
        width: 50px;
        height: 50px;
    }
    
    /* Notification */
    .notification {
        bottom: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Mobile Bottom Navigation */
    .mobile-bottom-nav {
        display: flex;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    /* Header */
    .logo {
        font-size: 1.5rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 400px;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Categories Grid */
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filter {
        gap: 0.25rem;
    }
    
    .filter-btn {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Testimonials */
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Contact Form */
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group input,
    .newsletter-input-group .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Modal */
    .modal {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-body {
        max-height: calc(85vh - 70px);
    }
    
    .modal-image {
        padding: 1rem;
    }
    
    .modal-details {
        padding: 1.5rem;
    }
    
    /* Mobile Bottom Navigation */
    .mobile-nav-item span {
        font-size: 0.625rem;
    }
    
    .mobile-nav-item i {
        font-size: 1rem;
    }
    
    /* Payment */
    .address-type-buttons {
        flex-direction: column;
    }
    
    /* QR Card */
    .qr-box {
        padding: 15px;
    }
    
    .qr-box img {
        max-width: 250px;
    }
    
    .upi-id {
        font-size: 12px;
        padding: 10px;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .size-buttons,
    .color-buttons {
        justify-content: center;
    }
    
    .payment-body .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .qr-card {
        padding: 15px;
    }
    
    .qr-header {
        font-size: 20px;
    }
    
    .qr-box img {
        max-width: 200px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-bottom-nav,
    .back-to-top,
    .cart-panel,
    .checkout-panel,
    .payment-panel,
    .modal-overlay,
    .modal,
    .hero-scroll-indicator,
    .notification {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .btn {
        display: none;
    }
}

/* Animation delays for product cards */
.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }
.product-card:nth-child(5) { transition-delay: 0.5s; }
.product-card:nth-child(6) { transition-delay: 0.6s; }
.product-card:nth-child(7) { transition-delay: 0.7s; }
.product-card:nth-child(8) { transition-delay: 0.8s; }
.product-card:nth-child(9) { transition-delay: 0.9s; }
.product-card:nth-child(10) { transition-delay: 1.0s; }

/* Animation delays for category cards */
.category-card:nth-child(1) { transition-delay: 0.1s; }
.category-card:nth-child(2) { transition-delay: 0.2s; }
.category-card:nth-child(3) { transition-delay: 0.3s; }
.category-card:nth-child(4) { transition-delay: 0.4s; }
.category-card:nth-child(5) { transition-delay: 0.5s; }
.category-card:nth-child(6) { transition-delay: 0.6s; }