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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fafafa;
    color: #262626;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    color: #d97706;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #171717;
}

.tagline {
    font-size: 0.75rem;
    color: #737373;
}

.search-bar {
    position: relative;
    flex: 1;
    max-width: 28rem;
}

.desktop-search {
    display: none;
}

.mobile-search {
    margin-top: 1rem;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #a3a3a3;
}

.search-bar input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid #d4d4d4;
    border-radius: 9999px;
    outline: none;
    transition: all 0.3s;
}

.search-bar input:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-btn {
    position: relative;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.3s;
}

.icon-btn:hover {
    background: #f5f5f5;
}

.icon-btn svg {
    width: 24px;
    height: 24px;
    color: #404040;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cart-btn:hover {
    background: #b45309;
}

.cart-btn svg {
    width: 20px;
    height: 20px;
}

.cart-text {
    display: none;
}

.badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #dc2626;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0 0.25rem;
}

.icon-btn .badge {
    background: #ec4899;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fecaca 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #171717;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #404040;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #525252;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.green {
    background: #22c55e;
}

.dot.blue {
    background: #3b82f6;
}

.dot.orange {
    background: #f59e0b;
}

/* Sections */
.featured-section,
.products-section,
.about-section {
    background: white;
    padding: 4rem 0;
}

.testimonials-section,
.delivery-section {
    background: #fafafa;
    padding: 4rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #171717;
}

.section-icon {
    width: 24px;
    height: 24px;
    color: #d97706;
}

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

.section-center h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #171717;
    margin-bottom: 0.75rem;
}

.section-center p {
    color: #525252;
    max-width: 42rem;
    margin: 0 auto;
}

/* Products Header */
.products-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.products-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #171717;
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.sort-control label {
    color: #525252;
}

.sort-control select {
    padding: 0.5rem 1rem;
    border: 1px solid #d4d4d4;
    border-radius: 0.5rem;
    outline: none;
    cursor: pointer;
}

.sort-control select:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* Categories */
.categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.categories::-webkit-scrollbar {
    height: 4px;
}

.categories::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 2px;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 9999px;
    background: white;
    color: #404040;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover {
    background: #fef3c7;
}

.category-btn.active {
    background: #d97706;
    color: white;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: white;
    transform: scale(1.1);
}

.action-btn svg {
    width: 20px;
    height: 20px;
    color: #404040;
}

.action-btn.active {
    background: #ec4899;
}

.action-btn.active svg {
    color: white;
    fill: white;
}

.featured-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1rem;
}

.product-category {
    font-size: 0.75rem;
    color: #d97706;
    font-weight: 500;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #171717;
    margin: 0.25rem 0 0.5rem;
}

.product-description {
    font-size: 0.875rem;
    color: #525252;
    margin-bottom: 0.75rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f59e0b;
}

.rating-text {
    font-weight: 500;
    color: #171717;
}

.reviews-text {
    color: #737373;
    font-size: 0.75rem;
}

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

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #171717;
}

.add-to-cart-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d97706;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: #b45309;
}

.add-to-cart-btn svg {
    width: 20px;
    height: 20px;
    color: white;
}

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

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    color: #404040;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #d4d4d4;
}

.author-name {
    font-weight: 600;
    color: #171717;
    margin-bottom: 0.25rem;
}

.rating {
    color: #f59e0b;
    font-size: 0.875rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-item {
    text-align: center;
}

.about-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.about-icon.green {
    background: #dcfce7;
}

.about-icon.blue {
    background: #dbeafe;
}

.about-icon.pink {
    background: #fce7f3;
}

.about-icon.purple {
    background: #f3e8ff;
}

.about-item h3 {
    font-weight: 600;
    color: #171717;
    margin-bottom: 0.5rem;
}

.about-item p {
    font-size: 0.875rem;
    color: #525252;
}

/* Delivery Section */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.delivery-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
}

.delivery-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.delivery-card h3 {
    font-weight: 600;
    color: #171717;
    margin-bottom: 0.5rem;
}

.delivery-card p {
    font-size: 0.875rem;
    color: #525252;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-content h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.newsletter-content > p {
    color: #fed7aa;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 28rem;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
    background: white;
    color: #d97706;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #fef3c7;
}

.newsletter-note {
    color: #fed7aa;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #171717;
    color: white;
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
}

.footer-logo p {
    font-size: 0.75rem;
    color: #a3a3a3;
}

.footer-col p {
    color: #a3a3a3;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f59e0b;
}

.contact-list li {
    color: #a3a3a3;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #262626;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn:hover {
    background: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #a3a3a3;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

.footer-links a:hover {
    color: #f59e0b;
}

/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cart-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 28rem;
    background: white;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 201;
    display: flex;
    flex-direction: column;
}

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

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s;
    color: #404040;
}

.close-btn:hover {
    background: #f5f5f5;
}

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

.empty-cart {
    text-align: center;
    padding: 3rem 0;
    color: #737373;
}

.cart-item {
    display: flex;
    gap: 1rem;
    background: #fafafa;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

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

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

.cart-item-name {
    font-weight: 600;
    color: #171717;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.875rem;
    color: #525252;
    margin-bottom: 0.5rem;
}

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

.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: #e5e5e5;
}

.quantity-text {
    width: 32px;
    text-align: center;
    font-weight: 500;
}

.remove-btn {
    margin-left: auto;
    padding: 0.25rem;
    background: transparent;
    border: none;
    color: #dc2626;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 0.25rem;
}

.remove-btn:hover {
    background: #fee2e2;
}

.remove-btn svg {
    width: 16px;
    height: 16px;
}

.cart-footer {
    border-top: 1px solid #e5e5e5;
    padding: 1.5rem;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cart-total span:first-child {
    font-weight: 600;
    color: #404040;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #171717;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #b45309;
}

/* Product Detail Modal */
.product-detail-modal {
    position: relative;
    background: white;
    border-radius: 1rem;
    max-width: 56rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 201;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
}

.product-detail-image {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f5f5f5;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.detail-category {
    font-size: 0.875rem;
    color: #d97706;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.detail-name {
    font-size: 1.875rem;
    font-weight: bold;
    color: #171717;
    margin-bottom: 0.75rem;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-rating .stars {
    font-size: 1.125rem;
}

.detail-rating-text {
    font-size: 0.875rem;
    color: #525252;
}

.detail-price {
    font-size: 2.25rem;
    font-weight: bold;
    color: #171717;
    margin-bottom: 1.5rem;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h3 {
    font-weight: 600;
    color: #171717;
    margin-bottom: 0.5rem;
}

.detail-section p {
    color: #525252;
    line-height: 1.6;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #404040;
    margin-bottom: 0.5rem;
}

.feature-check {
    color: #22c55e;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.detail-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.detail-add-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.detail-add-btn:hover {
    background: #b45309;
}

.detail-wishlist-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.detail-wishlist-btn:hover {
    background: #fce7f3;
    color: #ec4899;
}

.detail-wishlist-btn.active {
    background: #ec4899;
    color: white;
}

.detail-wishlist-btn svg {
    width: 24px;
    height: 24px;
}

/* MTN MoMo Modal */
.momo-modal {
    position: relative;
    background: white;
    border-radius: 1rem;
    max-width: 28rem;
    width: 90%;
    padding: 1.5rem;
    z-index: 201;
}

.momo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.momo-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.momo-icon {
    width: 48px;
    height: 48px;
    background: #fde047;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.momo-logo h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #171717;
}

.momo-logo p {
    font-size: 0.875rem;
    color: #525252;
}

.momo-amount {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.momo-amount p {
    font-size: 0.875rem;
    color: #525252;
    margin-bottom: 0.25rem;
}

.momo-amount h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #d97706;
}

#momoForm label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #404040;
    margin-bottom: 0.5rem;
}

#momoForm input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d4d4d4;
    border-radius: 0.75rem;
    outline: none;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

#momoForm input:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.momo-note {
    font-size: 0.75rem;
    color: #737373;
    margin-bottom: 1.5rem;
}

.momo-submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: #fde047;
    color: #78350f;
    border: none;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.momo-submit-btn:hover {
    background: #fcd34d;
}

.momo-powered {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #737373;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 300;
    display: none;
    align-items: center;
    gap: 0.5rem;
    min-width: 300px;
    animation: slideDown 0.3s ease;
}

.toast.show {
    display: flex;
}

.toast.success {
    border-left: 4px solid #22c55e;
}

.toast.error {
    border-left: 4px solid #dc2626;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-search {
        display: flex;
    }

    .mobile-search {
        display: none;
    }

    .cart-text {
        display: inline;
    }

    .products-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-title {
        font-size: 3rem;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

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

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .cart-panel {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
