/* ========================================
   CSS Reset and Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #2c2c2c;
    background-color: #fafafa;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

h1 { font-size: 2rem; font-weight: 400; }
h2 { font-size: 1.5rem; font-weight: 400; }
h3 { font-size: 1.25rem; font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 500; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Header Styles
   ======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

/* Announcement Bar */
.announcement-bar {
    background: #d4a574;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.announcement-text {
    margin: 0;
}

/* Main Header */
.header-main {
    padding: 20px 0;
}

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

/* Logo */
.logo {
    flex: 1;
}

.logo-text {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 2;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2c2c2c;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d4a574;
    border-bottom-color: #d4a574;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.search-toggle,
.wishlist-link,
.cart-toggle {
    padding: 8px;
    color: #2c2c2c;
    transition: color 0.2s ease;
}

.search-toggle:hover,
.wishlist-link:hover,
.cart-toggle:hover {
    color: #d4a574;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #d4a574;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    transform: translate(50%, -50%);
    display: none;
}

.cart-count.show {
    display: block;
}

.cart-toggle {
    position: relative;
}

/* Search Bar */
.search-bar {
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
    padding: 20px 0;
    display: none;
}

.search-bar.active {
    display: block;
}

.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 14px;
    border-radius: 0;
}

.search-input:focus {
    outline: none;
    border-color: #d4a574;
}

.search-submit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px;
    color: #666;
}

/* Mobile Menu */
.hero-nav .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hero-nav .hamburger-line {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.2s ease;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('images/adolphus-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.hero-nav .logo-text {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 2;
    justify-content: center;
}

.hero-nav .nav-link {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-nav .nav-link:hover,
.hero-nav .nav-link.active {
    color: #d4a574;
    border-bottom-color: #d4a574;
}

.hero-nav .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.hero-nav .search-toggle,
.hero-nav .wishlist-link,
.hero-nav .cart-toggle {
    padding: 8px;
    color: #fff;
    transition: color 0.2s ease;
}

.hero-nav .search-toggle:hover,
.hero-nav .wishlist-link:hover,
.hero-nav .cart-toggle:hover {
    color: #d4a574;
}

.hero-nav .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #d4a574;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    transform: translate(50%, -50%);
    display: none;
}

.hero-nav .cart-count.show {
    display: block;
}

.hero-nav .cart-toggle {
    position: relative;
}

/* Hero Search Bar in Hero */
.hero .search-bar {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    padding: 20px 0;
    display: none;
    z-index: 4;
}

.hero .search-bar.active {
    display: block;
}

.hero .search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero .search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    border-radius: 4px;
}

.hero .search-input:focus {
    outline: none;
    border-color: #d4a574;
}

.hero .search-submit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px;
    color: #666;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    margin-top: 80px;
    min-height: 60vh;
}

.construction-notice {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
}

.construction-notice h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.construction-notice p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.construction-notice p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #2c2c2c;
}

.hero-text {
    max-width: 500px;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid #1a1a1a;
}

.cta-button:hover {
    background: #d4a574;
    color: #fff;
    border-color: #d4a574;
}


/* ========================================
   Featured Categories
   ======================================== */

.featured-categories {
    padding: 80px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.category-card {
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 24px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.category-card:hover img {
    filter: grayscale(0%);
}

.category-title {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-description {
    font-size: 14px;
    color: #666;
}

/* ========================================
   Products Section
   ======================================== */

.products-section {
    padding: 80px 0;
    background: #fff;
}

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

.filter-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2c2c2c;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: #d4a574;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 60px 0;
    display: none;
}

.loading-state.show {
    display: block;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #e8e8e8;
    border-top: 2px solid #d4a574;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #d4a574;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge.sold-out {
    background: #999;
}

.product-info {
    padding: 0 4px;
}

.product-brand {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.product-name {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.current-price {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    border: 1px solid #1a1a1a;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover:not(:disabled) {
    background: transparent;
    color: #1a1a1a;
}

.add-to-cart-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 0;
    color: #666;
}

.no-products h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

/* Load More Button */
.load-more-container {
    text-align: center;
}

.load-more-btn {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 14px 32px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.load-more-btn:hover:not(:disabled) {
    background: #1a1a1a;
    color: #fff;
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   Newsletter Section
   ======================================== */

.newsletter {
    background: #f5f1eb;
    padding: 80px 0;
}

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

.newsletter-title {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsletter-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 14px;
    border-right: none;
}

.newsletter-input:focus {
    outline: none;
    border-color: #d4a574;
}

.newsletter-submit {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    padding: 14px 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-submit:hover {
    background: #d4a574;
    border-color: #d4a574;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-description {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #ccc;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #d4a574;
}

.footer-section-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    font-size: 12px;
    color: #ccc;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #d4a574;
}

.contact-info {
    font-style: normal;
}

.contact-info p {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-info a {
    color: #ccc;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
}

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

.copyright {
    font-size: 11px;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links .footer-link {
    font-size: 11px;
}

/* ========================================
   Cart Sidebar
   ======================================== */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

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

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

.cart-title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-close {
    padding: 4px;
    color: #666;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.continue-shopping {
    color: #d4a574;
    text-decoration: underline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 16px;
    display: inline-block;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-name {
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cart-item-brand {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #e8e8e8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

.quantity-btn:hover {
    border-color: #d4a574;
    color: #d4a574;
}

.quantity {
    font-size: 12px;
    color: #1a1a1a;
    min-width: 20px;
    text-align: center;
}

.cart-item-price {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
}

.remove-item {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px;
    color: #999;
    cursor: pointer;
}

.remove-item:hover {
    color: #d4a574;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid #e8e8e8;
    background: #fafafa;
}

.cart-total {
    margin-bottom: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.total-amount {
    font-weight: 500;
}

.checkout-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

/* ========================================
   Product Modal
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.product-modal {
    background: #fff;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 1;
    color: #1a1a1a;
}

.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-product-image {
    background: #f5f5f5;
}

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

.modal-product-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-product-brand {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.modal-product-name {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.modal-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-product-price .current-price {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
}

.modal-product-price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: #d4a574;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-product-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.modal-product-stock {
    margin-bottom: 32px;
}

.stock-status {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.stock-status.in-stock {
    color: #4a9eff;
}

.stock-status.out-of-stock {
    color: #999;
}

.modal-add-to-cart {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    padding: 16px 32px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.modal-add-to-cart:hover:not(:disabled) {
    background: transparent;
    color: #1a1a1a;
}

.modal-add-to-cart:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

/* ========================================
   Notifications
   ======================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid #4a9eff;
}

.notification.success { border-left-color: #4a9eff; }
.notification.error { border-left-color: #ff4a4a; }
.notification.warning { border-left-color: #d4a574; }
.notification.show { transform: translateX(0); }

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.notification-message {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
    color: #1a1a1a;
}

.notification-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #1a1a1a;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        justify-content: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-nav .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 40px 40px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        gap: 30px;
        z-index: 1000;
    }
    
    .hero-nav .nav-menu .nav-link {
        color: #1a1a1a;
        text-shadow: none;
    }
    
    .hero-nav .nav-menu.active {
        right: 0;
    }
    
    .hero-nav .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-nav .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hero-nav .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hero-nav .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    
    .featured-categories,
    .products-section {
        padding: 60px 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        margin-bottom: 40px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-input {
        border-right: 1px solid #e8e8e8;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .modal-product-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-product-details {
        padding: 30px;
    }
    
    .modal-product-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-main {
        padding: 16px 0;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image img {
        height: 280px;
    }
    
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
}