/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Accessibility and Typography */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
    min-height: 100vh;
}

/* Focus Management for Accessibility */
*:focus {
    outline: 3px solid #e74c3c;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #e74c3c;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: bold;
}

.skip-link:focus {
    top: 6px;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ecf0f1;
    border-top-color: #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notification Bar - Enhanced with Close Button */
.notification-bar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    animation: slideDown 0.8s ease-out;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notification-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: rgba(255,255,255,0.2);
}

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

/* Enhanced Header with Better Navigation */
header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ecf0f1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e74c3c;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #c0392b;
    transform: translateY(-2px);
}

.logo::after {
    content: '🎸';
    font-size: 1.5rem;
    margin-left: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* Enhanced Navigation */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    font-size: 15px;
}

nav a:hover,
nav a:focus {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Current Page Indicator */
nav a.active {
    background: #e74c3c;
    color: white;
}

/* Enhanced Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-radius: 15px;
    min-width: 220px;
    z-index: 1000;
    border: 2px solid #ecf0f1;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateX(-50%) translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }
}

.dropdown-content a {
    display: block;
    padding: 1.2rem 1.5rem;
    color: #2c3e50;
    border-radius: 0;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
    background: #f8f9fa;
    color: #e74c3c;
    padding-left: 2rem;
    transform: none;
    box-shadow: none;
}

/* Enhanced Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-container {
    position: relative;
}

.search-bar {
    padding: 0.9rem 1.8rem;
    border: 2px solid #ecf0f1;
    border-radius: 30px;
    width: 280px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-bar:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.2);
    background: white;
    transform: translateY(-2px);
}

.search-bar::placeholder {
    color: #7f8c8d;
    font-style: italic;
}

.action-btn {
    background: #f8f9fa;
    border: 2px solid #ecf0f1;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #2c3e50;
    text-decoration: none;
    position: relative;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover,
.action-btn:focus {
    background: #e74c3c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Cart Counter Badge */
.action-btn[title="Shopping Cart"]::after {
    content: '2';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Enhanced Banner Section */
.banner {
    background: linear-gradient(135deg, #2c3e50 0%, #e74c3c 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.banner h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease-out;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.banner p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: slideUp 1s ease-out 0.2s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.cta-button {
    background: white;
    color: #e74c3c;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: slideUp 1s ease-out 0.4s both;
    border: 3px solid transparent;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: #f8f9fa;
    scale: 1.05;
}

/* Page Content */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 3px;
}

/* Enhanced Categories Section */
.categories {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 3px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #e74c3c;
}

/* Professional Guitar Images */
.category-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Electric Guitar - Fender Stratocaster Style */
.category-card:nth-child(1) .category-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #34495e 100%);
}



/* Accessories - Modern Tech Style */
.category-card:nth-child(3) .category-image {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    flex-direction: column;
    gap: 20px;
}



/* Shine Effect */
.category-image::before {
    z-index: 1;
}

.category-card:hover .category-image::before {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

.category-info {
    padding: 2.5rem;
    background: linear-gradient(to bottom, white 0%, #f8f9fa 100%);
}

.category-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.category-info p {
    color: #5d6d7e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.category-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link:focus {
    color: #c0392b;
    transform: translateX(5px);
}

.category-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.category-link:hover::after {
    transform: translateX(3px);
}

/* Enhanced Featured Products */
.featured {
    background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    padding: 5rem 2rem;
}

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

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(231, 76, 60, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 18px;
}

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #e74c3c;
}

/* Enhanced Product Images */
.product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-info {
    padding: 2rem;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.product-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

.product-btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-btn:hover,
.product-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

/* Enhanced Forms */
.form-container {
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid #ecf0f1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.2);
    background: white;
    transform: translateY(-2px);
}

.form-group input:valid,
.form-group textarea:valid,
.form-group select:valid {
    border-color: #27ae60;
}

/* Error States */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:focus) {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 48px;
    min-height: 48px;
}

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

.btn:hover::before,
.btn:focus::before {
    width: 300px;
    height: 300px;
}

.btn:hover,
.btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.btn-secondary:hover,
.btn-secondary:focus {
    box-shadow: 0 10px 30px rgba(52, 73, 94, 0.4);
}
.content-section.white-text p{
    color: #fff;
}
.content-section.white-text h2{
    color: #fff;
}
/* Enhanced Content Sections */
.content-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid #f8f9fa;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.content-section h3 {
    color: #34495e;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #5d6d7e;
    font-size: 1.05rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    color: #5d6d7e;
    line-height: 1.7;
}

/* Enhanced Store Cards */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.store-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: #e74c3c;
}

.store-card h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.store-card p {
    margin-bottom: 0.8rem;
    color: #5d6d7e;
    line-height: 1.7;
}

/* Product Listing Enhancements */
.filters-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    top: 120px;
    z-index: 100;
    border: 2px solid #f8f9fa;
}

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

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.filter-group select,
.filter-group input {
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.2);
    background: white;
    transform: translateY(-2px);
}

.filter-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.filter-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 48px;
    min-height: 48px;
}

.filter-btn.primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.filter-btn.primary:hover,
.filter-btn.primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.filter-btn.secondary {
    background: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #d5dbdb;
}

.filter-btn.secondary:hover,
.filter-btn.secondary:focus {
    background: #d5dbdb;
    transform: translateY(-2px);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    font-size: 1.4rem;
    font-weight: 700;
}
.footer-section nav{
    display: block;
}
.footer-section nav a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    width: 100%;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-radius: 4px;
}
.footer-section nav a:hover{
    background: none;
    box-shadow: none;
}
.product-list{
    display: grid;
    grid-template-columns: repeat(3, 360px);
    gap: 40px;
    margin-top: 40px;
}
.product-list .product-item{
    background-color: #fff;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 2px 10px #eee;
}
.product-list .product-image{
    border-radius: 20px 20px 0 0;
}
.product-list .product-item .product-content{
    padding: 20px 30px;
}
.product-list .product-item .product-badge{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: #2c2c2c;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.pagination{
    margin-top: 50px;
}
.pagination .prev{
    background: none;
    border: none;
    margin-right: 20px;
}
.pagination .next{
    background: none;
    border: none;
    margin-left: 20px;
    cursor: pointer;
    outline: none;
}
.pagination .number{
    margin: 0 5px;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}
.quantity-selector{
    margin-bottom: 10px;
}
.quantity-selector .increase,.quantity-selector .decrease{
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
}
.quantity-selector .quantity-input{
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #999;
}
.breadcrumb ol{
    display: flex; 
    list-style: none; 
    gap: 1rem; 
    font-size: 0.9rem; 
    color: #7f8c8d;
    align-items: center;
}
.breadcrumb .active-bc{
    color: #e74c3c; 
    text-decoration: none; 
    padding: 0;
}
.breadcrumb .active-bc:hover{
    background: none;
    box-shadow: none;
}
.social-links a img{
    height: 40px;
}

.social-links a:hover,
.social-links a:focus {

}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #34495e;
    color: #95a5a6;
    font-size: 1rem;
}

.footer-bottom a {
    color: #e74c3c;
    font-weight: 600;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    font-weight: 600;
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    nav a {
        padding: 0.6rem 1rem;
        font-size: 14px;
    }

    .search-bar {
        width: 220px;
    }

    .banner {
        padding: 4rem 1rem;
        min-height: 400px;
    }

    .banner h1 {
        font-size: 2.8rem;
    }

    .banner p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title,
    .page-title {
        font-size: 2.2rem;
    }

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

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

    .form-container {
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
    }

    .filters-section {
        position: static;
        padding: 2rem 1.5rem;
    }

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

    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .categories,
    .page-container {
        padding: 3rem 1rem;
    }

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

@media (max-width: 480px) {
    .banner h1 {
        font-size: 2.2rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title,
    .page-title {
        font-size: 1.8rem;
    }

    .category-image {
        height: 250px;
    }

    .product-image {
        height: 220px;
    }
}

/* Print Styles for Reports */
@media print {
    .notification-bar,
    .header-actions,
    .cta-button,
    .product-btn,
    .btn {
        display: none;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .banner {
        background: #f8f9fa !important;
        color: #2c3e50 !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .category-card,
    .product-card,
    .store-card {
        border: 3px solid #2c3e50;
    }
    
    .btn,
    .product-btn {
        border: 2px solid #2c3e50;
    }
}