/* ============================================
   COMPLETE STYLESHEET FOR LYFT APPAREL
   Version 6.0 - Enhanced Mobile Menu + Drawer Styling
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
    background: white;
    overflow-x: hidden;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* ============================================
   TOP BAR (Black background)
   ============================================ */
.top-bar {
    background: #000000;
    color: #ffffff;
    padding: 0.75rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 1001;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-left span,
.top-bar-right span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s;
}

.top-bar a:hover {
    border-bottom-color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: #ffffff;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    border-bottom: none;
}

.social-links a:hover {
    opacity: 0.7;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.main-nav {
    flex: 1;
}

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

.nav-menu > li > a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu > li > a:hover {
    color: #666;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

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

/* Search Wrapper */
.search-wrapper {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
}

.search-form:focus-within {
    border-color: #1a1a1a;
    background: white;
}

.search-input {
    padding: 0.6rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    width: 200px;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    color: #1a1a1a;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.action-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #1a1a1a;
    position: relative;
    transition: color 0.3s;
    padding: 0.4rem;
    text-decoration: none;
}

.action-icon:hover {
    color: #666;
}

/* Cart and Wishlist Badges - Green with White Text */
.cart-count,
.wishlist-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #10b981;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
    padding: 0.5rem;
    order: 3;
}

/* ============================================
   MOBILE NAVIGATION - ENHANCED
   ============================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    z-index: 1002;
    padding: 0;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 20px rgba(0,0,0,0.15);
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #1a1a1a;
    color: white;
    margin-bottom: 1rem;
}

.mobile-nav-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-mobile-nav {
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    border-radius: 0;
}

.mobile-nav-menu li a:hover {
    background: #f5f5f5;
    padding-left: 2rem;
}

/* Add icons to mobile menu items */
.mobile-nav-menu a[href="/blog.php"]::before {
    content: '\f15c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 0.75rem;
    color: #666;
    width: 24px;
}

.mobile-nav-menu a[href="/account.php"]::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 0.75rem;
    color: #666;
    width: 24px;
}

.mobile-nav-menu a[href="/wishlist.php"]::before {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 0.75rem;
    color: #666;
    width: 24px;
}

.mobile-nav-menu a[href="/orders.php"]::before {
    content: '\f291';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 0.75rem;
    color: #666;
    width: 24px;
}

.mobile-nav-menu a[href="/shop.php"]::before {
    content: '\f07a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 0.75rem;
    color: #666;
    width: 24px;
}

/* Mobile Dropdown Toggle */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
}

.mobile-dropdown-toggle:hover {
    background: #f5f5f5;
}

.mobile-dropdown-toggle span {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
    color: #999;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
    color: #1a1a1a;
}

.mobile-dropdown-menu {
    display: none;
    padding: 0;
    list-style: none;
    background: #fafafa;
    margin: 0;
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 0.875rem 1.5rem 0.875rem 2.5rem;
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.mobile-dropdown-menu li a:hover {
    color: #1a1a1a;
    background: #f0f0f0;
}

/* Mobile Navigation Footer / User Section */
.mobile-nav-footer {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
    border-radius: 16px;
    margin: 2rem 1rem 1rem;
}

.mobile-user-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-user-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.9rem;
    padding: 0.75rem 0;
    transition: all 0.3s;
    border-radius: 12px;
}

.mobile-user-links a i {
    width: 24px;
    color: #666;
    font-size: 1.1rem;
}

.mobile-user-links a:hover {
    color: #1a1a1a;
    background: #f0f0f0;
    padding-left: 0.5rem;
}

.mobile-user-links a:hover i {
    color: #1a1a1a;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    cursor: pointer;
}

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

body.menu-open {
    overflow: hidden;
}

/* ============================================
   CART DRAWER STYLES
   ============================================ */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1002;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

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

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

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

.cart-drawer-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1a1a1a;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Empty Cart Styling */
.cart-drawer-body .empty-cart,
.cart-drawer-body > div:first-child {
    text-align: center;
    padding: 2rem;
}

.cart-drawer-body .btn-primary,
.cart-drawer-body a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 1rem;
    width: auto;
    display: inline-flex;
}

.cart-drawer-body .btn-primary:hover,
.cart-drawer-body a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #333, #444);
}

.cart-drawer-body i.fa-shopping-bag {
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 1rem;
    animation: floatBounce 2s ease-in-out infinite;
}

.cart-drawer-body p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cart-drawer-items {
    padding: 0 1rem;
}

.cart-drawer-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.cart-drawer-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-drawer-item-details h4 {
    font-size: 0.85rem;
    margin: 0 0 0.25rem;
}

.cart-drawer-item-details small {
    font-size: 0.7rem;
    color: #666;
}

.cart-drawer-item-price {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-drawer-item-quantity {
    color: #666;
    font-weight: normal;
}

.cart-drawer-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s;
    padding: 0.25rem;
}

.cart-drawer-remove:hover {
    color: #e63946;
}

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

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-view-cart,
.btn-checkout-drawer {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-view-cart {
    background: #f5f5f5;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
}

.btn-checkout-drawer {
    background: #1a1a1a;
    color: white;
}

.btn-view-cart:hover {
    background: #e5e5e5;
}

.btn-checkout-drawer:hover {
    background: #333;
}

/* ============================================
   WISHLIST DRAWER STYLES
   ============================================ */
.wishlist-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1002;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.wishlist-drawer.open {
    right: 0;
}

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

.wishlist-drawer-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.wishlist-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Empty Wishlist Styling */
.wishlist-drawer-body .empty-wishlist,
.wishlist-drawer-body > div:first-child {
    text-align: center;
    padding: 2rem;
}

.wishlist-drawer-body .btn-primary,
.wishlist-drawer-body a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 1rem;
    width: auto;
    display: inline-flex;
}

.wishlist-drawer-body .btn-primary:hover,
.wishlist-drawer-body a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #333, #444);
}

.wishlist-drawer-body i.fa-heart,
.wishlist-drawer-body i.far.fa-heart {
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 1rem;
    animation: floatBounce 2s ease-in-out infinite;
}

.wishlist-drawer-body p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.wishlist-drawer-items {
    padding: 0 1rem;
}

.wishlist-drawer-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.wishlist-drawer-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.wishlist-drawer-item-details {
    flex: 1;
}

.wishlist-drawer-item-details h4 {
    font-size: 0.85rem;
    margin: 0 0 0.25rem;
}

.wishlist-drawer-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wishlist-drawer-add-to-cart {
    padding: 0.4rem 0.8rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 500;
}

.wishlist-drawer-add-to-cart:hover {
    background: #333;
}

.wishlist-drawer-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s;
    padding: 0.25rem;
}

.wishlist-drawer-remove:hover {
    color: #e63946;
}

.wishlist-drawer-footer {
    padding: 1rem;
    border-top: 1px solid #e5e5e5;
    background: white;
}

.btn-view-wishlist {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    background: #f5f5f5;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
}

.btn-view-wishlist:hover {
    background: #e5e5e5;
}

/* Floating Animation for Empty State Icons */
@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
    position: relative;
    height: calc(100vh - 121px);
    min-height: 550px;
    max-height: 900px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 650px;
    width: 90%;
    padding: 2rem;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content.align-left {
    left: 8%;
    right: auto;
    text-align: left;
    transform: translateY(-50%);
}

.slide-content.align-center {
    left: 50%;
    right: auto;
    text-align: center;
    transform: translate(-50%, -50%);
}

.slide-content.align-right {
    left: auto;
    right: 8%;
    text-align: right;
    transform: translateY(-50%);
}

.slide-tagline {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.4);
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.carousel-slide h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.carousel-slide p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: white;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.carousel-slide p:last-of-type {
    margin-bottom: 1.75rem;
}

.btn-slide {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 0.5rem;
}

.btn-slide:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.slide-brand {
    position: absolute;
    bottom: 25px;
    right: 30px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    z-index: 2;
    font-weight: 500;
    background: rgba(0,0,0,0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 10px;
}

.dot:hover {
    background: white;
}

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

/* ============================================
   CATEGORY TILES
   ============================================ */
.categories {
    max-width: 1440px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    border-radius: 12px;
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-tile:hover img {
    transform: scale(1.05);
}

.category-tile .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    text-align: center;
}

.category-tile h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-category:hover {
    background: white;
    color: #1a1a1a;
}

/* ============================================
   PRODUCT SECTIONS
   ============================================ */
.featured-products,
.new-arrivals {
    max-width: 1440px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.section-header .section-title {
    margin-bottom: 0;
}

.view-all {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.view-all:hover {
    color: #666;
}

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

.product-card {
    position: relative;
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
    border-radius: 8px;
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
}

.product-badge.sale {
    background: #e63946;
    color: white;
}

.product-badge.new {
    background: #10b981;
    color: white;
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: none;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: bottom 0.3s ease;
}

.product-card:hover .quick-view {
    bottom: 0;
}

.product-info {
    padding: 1rem;
    text-align: center;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.product-price {
    margin-bottom: 0.5rem;
}

.sale-price {
    color: #e63946;
    font-weight: 600;
    margin-right: 0.5rem;
}

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

.product-sizes {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.size-option {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-option:hover,
.size-option.selected {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.add-to-cart {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #333, #444);
    transform: translateY(-1px);
}

/* ============================================
   BRAND STORY
   ============================================ */
.brand-story {
    background: #f9f9f9;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.brand-story-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-story-content {
    padding-right: 2rem;
}

.story-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    display: inline-block;
}

.brand-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand-story-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-story {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 1rem;
    border-radius: 40px;
}

.btn-story:hover {
    background: #333;
    transform: translateY(-2px);
}

.brand-story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.brand-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-story-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-container i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.newsletter p {
    color: #999;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #2a2a2a;
    color: white;
}

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

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: white;
    color: #1a1a1a;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 40px;
}

.newsletter-form button:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.7rem;
    color: #666;
    margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-section a:hover {
    color: white;
}

.payment-methods {
    margin-top: 1.5rem;
}

.payment-methods h4 {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 1.2rem;
    color: #999;
    transition: color 0.3s;
}

.payment-icons i:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.75rem;
}

.footer-credit {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.5rem;
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
    font-weight: 500;
}

.notification-success {
    background: #10b981;
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: #3b82f6;
    color: white;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (768px - 1024px) - Search bar visible */
@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    
    .header-actions {
        order: 2;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .search-wrapper {
        display: block;
    }
    
    .search-input {
        width: 160px;
    }
    
    .hero-carousel {
        height: calc(100vh - 80px);
        min-height: 500px;
    }
    
    .carousel-slide h1 {
        font-size: 3rem;
    }
    
    .carousel-slide p {
        font-size: 1rem;
    }
    
    .slide-tagline {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-slide {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
    }
    
    .slide-content {
        width: 85%;
    }
    
    .slide-content.align-left {
        left: 5%;
    }
    
    .slide-content.align-right {
        right: 5%;
    }
}

/* Mobile (up to 768px) - Search bar HIDDEN */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .search-wrapper {
        display: none;
    }
    
    .hero-carousel {
        height: calc(100vh - 70px);
        min-height: 450px;
    }
    
    .carousel-slide {
        background-position: center 40% !important;
    }
    
    .slide-content {
        width: 90%;
        padding: 1rem;
    }
    
    .slide-content.align-left,
    .slide-content.align-right,
    .slide-content.align-center {
        left: 5%;
        right: 5%;
        transform: translateY(-50%);
        text-align: center;
    }
    
    .slide-content.align-center {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .carousel-slide h1 {
        font-size: 2.2rem;
    }
    
    .carousel-slide p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .carousel-slide p:last-of-type {
        margin-bottom: 1.5rem;
    }
    
    .slide-tagline {
        font-size: 0.7rem;
        letter-spacing: 3px;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .btn-slide {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .slide-brand {
        bottom: 15px;
        right: 15px;
        font-size: 0.55rem;
    }
    
    .carousel-dots {
        bottom: 15px;
    }
    
    .action-icons {
        gap: 0.5rem;
    }
    
    .action-icon {
        font-size: 1rem;
    }
    
    .categories {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .featured-products,
    .new-arrivals {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brand-story {
        padding: 3rem 1rem;
        margin: 2rem 0;
    }
    
    .brand-story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand-story-content {
        padding-right: 0;
        text-align: center;
    }
    
    .brand-story-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter {
        padding: 3rem 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .cart-drawer,
    .wishlist-drawer {
        width: 100%;
        right: -100%;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero-carousel {
        height: calc(100vh - 65px);
        min-height: 400px;
    }
    
    .carousel-slide {
        background-position: center 35% !important;
    }
    
    .carousel-slide h1 {
        font-size: 1.8rem;
    }
    
    .carousel-slide p {
        font-size: 0.85rem;
    }
    
    .slide-tagline {
        font-size: 0.65rem;
    }
    
    .btn-slide {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

/* Very Short Screens - Prevent Content Cutoff */
@media (max-height: 700px) {
    .hero-carousel {
        min-height: 500px;
        height: 500px;
    }
    
    .carousel-slide h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-slide p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .slide-content {
        padding: 0.8rem;
    }
    
    .slide-tagline {
        margin-bottom: 0.5rem;
        padding: 0.3rem 0.8rem;
    }
    
    .btn-slide {
        padding: 0.5rem 1.2rem;
    }
}

@media (max-height: 550px) {
    .hero-carousel {
        min-height: 450px;
        height: 450px;
    }
    
    .slide-brand {
        display: none;
    }
}