*{
   margin: 0;
   padding: 0;
   box-sizing: border-box; 
   font-family: 'Poppins', sans-serif;
}

body{
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: #333;
    overflow-x: hidden;
}

/* Navigation Styles */
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 2em;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
}

.logo i {
    margin-right: 10px;
    color: #3498db;
}

.logo-highlight {
    color: #e74c3c;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5em;
}

.nav-links li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #3498db;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3498db;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.search-container {
    position: relative;
}

.search-container input {
    padding: 10px 15px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 50px;
    width: 200px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.search-container input:focus {
    outline: none;
    border-color: #3498db;
    width: 250px;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.carticon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2c3e50;
    transition: color 0.3s;
}

.carticon:hover {
    color: #3498db;
}

.carticon::after {
    content: attr(data-count);
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #777;
    transition: color 0.3s;
}

.close-cart:hover {
    color: #e74c3c;
}

.cart-items {
    flex: 1;
    padding: 1.5em;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 3em 1em;
    color: #777;
}

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

.cart-item {
    display: flex;
    align-items: center;
    padding: 1em 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item img {
    width: 80px;
    height: auto;
    margin-right: 15px;
    border-radius: 8px;
}

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

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #e74c3c;
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    background-color: #f5f5f5;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.remove-item {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 10px;
}

.cart-summary {
    padding: 1.5em;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5em;
    color: #2c3e50;
}

.checkout-btn, .continue-shopping {
    width: 100%;
    padding: 1em;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.checkout-btn {
    background-color: #3498db;
    color: white;
}

.checkout-btn:hover {
    background-color: #2980b9;
}

.continue-shopping {
    background-color: white;
    color: #3498db;
    border: 1px solid #3498db;
}

.continue-shopping:hover {
    background-color: #f5f9fd;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* Introduction Section */
.introduction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4em 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content {
    flex: 1;
    padding-right: 3em;
}

.intro-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

.highlight {
    color: #3498db;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2em;
}

.intro-features {
    display: flex;
    gap: 2em;
    margin-bottom: 2.5em;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.feature i {
    color: #3498db;
    font-size: 1.2rem;
}

.intro-buttons {
    display: flex;
    gap: 1em;
}

.btn-primary, .btn-secondary {
    padding: 1em 2.5em;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(to right, #3498db, #2ecc71);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background-color: white;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #f5f9fd;
}

.intro-image {
    flex: 1;
    position: relative;
}

.main-shoe {
    width: 100%;
    max-width: 500px;
    transform: rotate(-10deg);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.shoe-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background-color: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(-5deg);
}

.floating-shoe {
    position: absolute;
    bottom: 40px;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

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

/* Products Section */
.products {
    padding: 4em 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3em;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.rating-display {
    text-align: right;
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f39c12;
    margin-bottom: 5px;
}

.rating-value {
    font-weight: 700;
    margin-left: 8px;
    color: #2c3e50;
}

.total-reviews {
    color: #777;
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2em;
    margin-bottom: 3em;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

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

.product-image {
    padding: 2em;
    text-align: center;
    background-color: #f9f9f9;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 150px;
    transition: transform 0.5s;
}

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

.product-details {
    padding: 1.5em;
}

.product-title {
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1em;
    font-size: 0.9rem;
}

.product-rating .stars {
    font-size: 0.9rem;
}

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

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.add-to-cart {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

.view-more {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 4em 2em;
    background-color: white;
    margin-top: 4em;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2em;
    color: #2c3e50;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 2em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5em;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.customer-info h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.testimonial p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3em 2em 1.5em;
    margin-top: 4em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3em;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section .logo {
    color: white;
    margin-bottom: 1em;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.social-icons {
    display: flex;
    gap: 1em;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 1.5em;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 1em;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.newsletter-form {
    display: flex;
    margin-top: 1em;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2980b9;
}

.footer-bottom {
    text-align: center;
    margin-top: 3em;
    padding-top: 1.5em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #3498db;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #2ecc71;
    color: white;
    padding: 1em 1.5em;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .introduction {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-content {
        padding-right: 0;
        margin-bottom: 3em;
    }
    
    .intro-features {
        justify-content: center;
    }
    
    .intro-image {
        order: -1;
    }
    
    .nav-links {
        gap: 1.5em;
    }
    
    .search-container input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2em 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        z-index: 99;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .search-container {
        display: none;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .intro-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
    
    .testimonial-container {
        grid-template-columns: 1fr;
    }
}


/* Payment & Delivery Pages */
.payment-container, .delivery-container {
    max-width: 800px;
    margin: 2em auto;
    padding: 2em;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.back-home {
    color: #3498db;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.back-home:hover {
    text-decoration: underline;
}

.order-summary {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 10px;
    margin-bottom: 2em;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8em 0;
    border-bottom: 1px solid #eee;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1em;
    padding-top: 1em;
    border-top: 2px solid #ddd;
}

.payment-form, .delivery-form {
    margin-top: 2em;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    color: #2c3e50;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 0.85rem;
}

.payment-options {
    margin: 2em 0;
}

.payment-methods {
    display: flex;
    gap: 1em;
    margin-top: 1em;
}

.payment-method {
    flex: 1;
    padding: 1em;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method.active {
    border-color: #3498db;
    background-color: #f0f8ff;
}

.payment-method i {
    font-size: 1.5rem;
    color: #3498db;
}

.secure-note, .whatsapp-note {
    text-align: center;
    color: #777;
    margin-top: 1em;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.delivery-header {
    text-align: center;
    margin-bottom: 2em;
}

.success-message {
    color: #27ae60;
    font-size: 1.1rem;
    margin-top: 0.5em;
}

.delivery-instructions {
    background: #f0f8ff;
    padding: 1.5em;
    border-radius: 10px;
    margin: 2em 0;
}

.delivery-instructions ul {
    list-style: none;
    margin-top: 1em;
}

.delivery-instructions li {
    padding: 0.5em 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-instructions li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
}
/* Search Results Styles */
.search-results-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1em 2em;
    border-radius: 10px;
    margin: 1.5em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results-message p {
    margin: 0;
    font-size: 1rem;
}

.search-results-message strong {
    font-weight: 700;
}

.search-results-message .clear-search {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 0.5em 1.5em;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.search-results-message .clear-search:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* No Results Styles */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4em 2em;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 1em;
}

.no-results h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5em;
}

.no-results p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0.5em 0;
    line-height: 1.6;
}

.no-results strong {
    color: #3498db;
}

.no-results .btn-primary {
    margin-top: 1.5em;
}

/* Search Input Active State */
.search-container input.searching {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Responsive styles for search */
@media (max-width: 768px) {
    .search-results-message {
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }
    
    .search-results-message p {
        font-size: 0.9rem;
    }
    
    .no-results {
        padding: 3em 1em;
    }
    
    .no-results i {
        font-size: 3rem;
    }
    
    .no-results h3 {
        font-size: 1.5rem;
    }
    
    .no-results p {
        font-size: 1rem;
    }
}
