/* IT'Z ME - Men's Fashion E-Commerce Styles */
/* Reusing exact styles from itzme frontend folder */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --accent-blue: #000000;
    --secondary-gray: #767677;
    --light-gray: #eceff1;
    --border-color: #d3d7da;
    --white: #ffffff;
    --red-accent: #000000;
    --primary-color: #000000;
    --btn-primary-bg: #000000;
    --btn-primary-hover: #1a1a1a;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Top Banner */
.top-banner {
    background: var(--accent-blue);
    color: white;
    text-align: center;
    padding: 0.6rem;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-banner a {
    color: white;
}

/* Navbar */
.navbar {
    padding: 0.5rem 0;
    border-bottom: none;
    z-index: 1000;
    background: var(--white) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.navbar-brand img {
    transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 0.7;
}

.nav-link {
    color: var(--primary-black) !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem !important;
    transition: all 0.2s ease;
    text-transform: uppercase;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.btn-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-link:hover {
    opacity: 0.6;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary-black);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    display: inline-block;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    flex: 1;
}

.mobile-menu-logo img {
    display: block;
    max-height: 30px;
    width: auto;
}

.mobile-menu-body {
    padding: 1rem;
    overflow-y: auto;
    height: calc(100vh - 60px);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 0;
}

.mobile-menu-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.mobile-menu-list a:hover {
    color: var(--accent-blue);
    padding-left: 8px;
}

.mobile-menu-section-title {
    padding: 1rem 0 0.5rem 0;
    color: var(--secondary-gray);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-main {
    position: relative;
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
    background: var(--primary-black);
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    padding: 1rem;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Carousel Slider Styles */
.carousel-item {
    position: relative;
    height: 75vh;
    min-height: 550px;
}

/* .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.carousel-inner {
    height: 100%;
}

.carousel {
    height: 75vh;
    min-height: 550px;
    margin-bottom: 0 !important;
}

#heroSlider {
    margin-bottom: 0 !important;
   
}

/* Buttons */
.btn {
    border-radius: 0;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.btn-dark {
    background: var(--primary-black);
    color: white;
    border: 2px solid var(--primary-black);
}

.btn-dark:hover {
    background: var(--white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-light {
    background: white;
    color: var(--primary-black);
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-outline-dark:hover {
    background: var(--primary-black);
    color: white;
}

/* Category Banners */
.category-banner {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-banner:hover img {
    transform: scale(1.05);
}

.category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.category-banner:hover::before {
    opacity: 0.8;
}

.category-banner-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: white;
    z-index: 2;
}

.category-banner-content h3 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-banner-content span {
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    display: inline-block;
}

/* Section Title */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
}

/* Product Cards */
.product-card {
    position: relative;
    text-decoration: none;
    color: var(--primary-black);
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.4s ease;
}

.product-image img.active {
    opacity: 1;
    z-index: 1;
}

.product-card:hover .product-image img.active {
    transform: scale(1.08);
}

/* Image slide indicators */
.product-image-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image-indicators {
    opacity: 1;
}

.product-image-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-image-indicator.active {
    background: rgba(255, 255, 255, 0.9);
    width: 20px;
    border-radius: 3px;
}

.product-info {
    padding: 0.75rem 0;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: var(--secondary-gray);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-black);
}



/* Promo Cards */
.promo-card {
    display: block;
    position: relative;
    overflow: hidden;
    height: 400px;
    text-decoration: none;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover img {
    transform: scale(1.05);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.promo-card:hover::before {
    opacity: 0.9;
}

.promo-card-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    z-index: 2;
}

.promo-card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.promo-card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.promo-link {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 2px solid white;
    padding-bottom: 3px;
    display: inline-block;
}

/* Promo Section */
.promo-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin: 2rem 0;
}

.promo-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
}

.promo-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.promo-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Style Cards */
.style-card {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-card:hover img {
    transform: scale(1.05);
}

.style-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
    padding: 1.5rem;
    color: white;
}

.style-card-overlay h5 {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer h6 {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    color: var(--white);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    font-size: 1.4rem;
    transition: all 0.3s ease;
    color: var(--white);
    text-decoration: none;
}

.social-links a:hover {
    color: #1DA1F2 !important;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #767677;
    margin: 0;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    padding: 0.35rem 0;
    border-top: 1px solid var(--border-color);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--secondary-gray);
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 0;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
    transition: all 0.3s ease;
}

.bottom-nav-item span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover {
    color: var(--primary-black);
}

.bottom-nav-item.active {
    color: var(--primary-black);
}

.bottom-nav-item.active i {
    transform: scale(1.05);
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 0 0 2px 2px;
}

.bottom-nav-badge {
    position: absolute;
    top: 0.15rem;
    right: 0.5rem;
    background: var(--primary-black);
    color: white;
    font-size: 8px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 8px;
    min-width: 14px;
    text-align: center;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    padding: 2rem 1rem;
}

.auth-card {
    background: white;
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
}

.auth-card h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-card p {
    color: var(--secondary-gray);
    margin-bottom: 2rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 0.85rem 1rem;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: none;
    transform: translateY(-2px);
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Product Detail */
.product-detail-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--light-gray);
    margin-bottom: 0.5rem;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    position: sticky;
    top: 100px;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-price-large {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.size-selector {
    margin-bottom: 1.5rem;
}

.size-btn {
    font-family: 'Poppins', sans-serif;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    background: white;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-btn:hover,
.size-btn.active {
    background: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
    transform: scale(1.05);
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--light-gray);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    font-weight: 600;
}

/* Cart */
.cart-item-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 100px;
    height: 130px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-summary {
    background: var(--light-gray);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

/* Profile Page */
.profile-sidebar {
    background: var(--light-gray);
    padding: 1.5rem;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu li {
    margin-bottom: 0.5rem;
}

.profile-menu a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: var(--primary-black);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-menu a:hover,
.profile-menu a.active {
    background: var(--primary-black);
    color: white;
    transform: translateX(5px);
}

.order-card {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-status {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 11px;
    font-weight: 900;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.order-status.delivered {
    background: #d4edda;
    color: #155724;
}

.order-status.processing {
    background: #fff3cd;
    color: #856404;
}

.order-status.shipped {
    background: #d1ecf1;
    color: #0c5460;
}

/* Checkout Page */
.checkout-section {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.checkout-section h5 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Wishlist */
.wishlist-item {
    position: relative;
}

.wishlist-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.wishlist-remove:hover {
    background: var(--red-accent);
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 55px;
    }
    
    .footer {
        margin-bottom: 55px;
    }
    
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 992px) {
    .hero-main {
        height: 90vh;
        min-height: 650px;
    }
    
    .carousel,
    .carousel-item {
        height: 90vh;
        min-height: 650px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .cart-item-image {
        width: 80px;
        height: 100px;
    }
    
    .promo-card {
        height: 300px;
    }
    
    .promo-card-content {
        bottom: 1rem;
        left: 1rem;
    }
    
    .promo-card-content h3 {
        font-size: 1.25rem;
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .product-detail-info {
        position: static;
    }
    
    .section-title {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
    
    /* Mobile Slider Fixes */
    .hero-main,
    .carousel,
    .carousel-item {
        height: 40vh;
        min-height: 300px;
        margin-bottom: 0 !important;
    }
    
    #heroSlider {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Remove gap between slider and next section */
    #heroSlider + section,
    .carousel + section {
        margin-top: 0 !important;
        padding-top: 0.5rem !important;
    }
    
    /* Reduce spacing for New Arrivals section on mobile */
    section.pb-3,
    section.pt-3 {
        padding-bottom: 0.5rem !important;
        padding-top: 0.5rem !important;
    }
    
    section.pb-lg-4,
    section.pt-lg-4 {
        padding-bottom: 0.5rem !important;
        padding-top: 0.5rem !important;
    }
    
    /* Reduce margin between section title and products */
    .mb-3.mb-lg-4 {
        margin-bottom: 0.5rem !important;
    }
    
    .hero-content {
        width: 85%;
        padding: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .hero-content p {
        font-size: clamp(0.75rem, 2vw, 1rem);
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero-content .btn {
        padding: 0.75rem 1.75rem;
        font-size: 11px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin: 0 4px;
    }
    
    /* Footer Mobile Fixes */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer h6 {
        font-size: 11px;
        margin-bottom: 1rem;
    }
    
    .footer a {
        font-size: 12px;
    }
    
    .social-links {
        gap: 0.75rem;
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
    
    .social-links a {
        font-size: 1.25rem;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white) !important;
        text-decoration: none;
    }
    
    .social-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #1DA1F2 !important;
    }
}

@media (max-width: 576px) {
    /* Extra small mobile devices */
    .hero-main,
    .carousel,
    .carousel-item {
        height: 35vh;
        min-height: 280px;
    }
    
    /* Further reduce spacing for very small screens */
    section.pb-3,
    section.pt-3,
    section.pb-lg-4,
    section.pt-lg-4 {
        padding-bottom: 0.5rem !important;
        padding-top: 0.5rem !important;
    }
    
    .hero-content h1 {
        font-size: clamp(1.25rem, 4vw, 2rem);
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: clamp(0.7rem, 1.5vw, 0.9rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-content .btn {
        padding: 0.65rem 1.5rem;
        font-size: 10px;
    }
    
    .footer .col-6 {
        margin-bottom: 1.5rem;
    }
    
    .social-links a {
        font-size: 1.15rem;
        width: 32px;
        height: 32px;
        color: var(--white) !important;
    }
    
    .social-links a:hover {
        color: #1DA1F2 !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpNav {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

.bottom-nav {
    animation: slideUpNav 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Product Badges */
.product-badge {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2px;
    z-index: 10;
    text-transform: uppercase;
}

.product-badge.sale {
    background: var(--red-accent);
    color: white;
}

.product-badge.new {
    background: var(--primary-black);
    color: white;
}

/* View All Link */
.view-all-link {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-black);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-link:hover {
    color: var(--accent-blue);
}

/* Product Price Styling */
.product-price {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.product-price .current-price {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-black);
}

.product-price .original-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-gray);
    text-decoration: line-through;
}

/* Promo Card Improvements */
.promo-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0;
    height: 400px;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover img {
    transform: scale(1.05);
}

.promo-card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 10;
}

.promo-card-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.promo-card-content p {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.promo-link {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    color: var(--primary-black);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.promo-link:hover {
    background: var(--primary-black);
    color: white;
}

/* Category Banner Improvements */
.category-banner {
    position: relative;
    display: block;
    overflow: hidden;
    height: 300px;
    border-radius: 0;
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-banner:hover img {
    transform: scale(1.05);
}

.category-banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 10;
}

.category-banner-content h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.category-banner-content span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .promo-card {
        height: 300px;
    }
    
    .promo-card-content h3 {
        font-size: 24px;
    }
    
    .promo-card-content {
        bottom: 20px;
        left: 20px;
    }
    
    .category-banner {
        height: 200px;
    }
    
    .category-banner-content h3 {
        font-size: 18px;
    }

    /* Mobile Profile Sidebar - Complete Redesign */
    .profile-sidebar {
        background: white;
        padding: 0;
        margin-bottom: 1rem;
        border: none;
    }

    .profile-sidebar .text-center {
        padding: 1rem !important;
        background: var(--light-gray);
        border-bottom: 2px solid var(--border-color);
    }

    .profile-sidebar .bi-person-circle {
        font-size: 2.5rem !important;
    }

    .profile-sidebar h5 {
        font-size: 1rem;
        margin-top: 0.5rem !important;
        font-weight: 700;
    }

    .profile-sidebar .text-muted {
        font-size: 0.8rem !important;
    }

    /* Horizontal Scrollable Menu for Mobile */
    .profile-menu {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0.75rem;
        background: white;
        border-bottom: 1px solid var(--border-color);
        gap: 0.5rem;
        position: relative;
    }

    .profile-menu::-webkit-scrollbar {
        display: none;
    }

    /* Scroll indicator shadow */
    .profile-menu::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
        pointer-events: none;
    }

    .profile-menu li {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .profile-menu a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 10px;
        letter-spacing: 0.5px;
        border: 1px solid var(--border-color);
        background: white;
        min-width: 85px;
        text-align: center;
        transform: none;
        transition: all 0.2s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .profile-menu a i {
        font-size: 1.25rem;
        margin-right: 0 !important;
        margin-bottom: 0.35rem;
        display: block;
    }

    .profile-menu a:hover {
        transform: translateY(-2px);
        background: var(--light-gray);
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .profile-menu a.active {
        background: var(--primary-black);
        color: white;
        border-color: var(--primary-black);
        transform: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .checkout-section {
        padding: 1rem;
    }

    .order-card {
        padding: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .profile-sidebar .text-center {
        padding: 0.75rem !important;
    }

    .profile-sidebar .bi-person-circle {
        font-size: 2rem !important;
    }

    .profile-sidebar h5 {
        font-size: 0.95rem;
    }

    .profile-sidebar .text-muted {
        font-size: 0.75rem !important;
    }

    .profile-menu {
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
    }

    .profile-menu::after {
        width: 25px;
    }

    .profile-menu a {
        padding: 0.6rem 0.75rem;
        font-size: 9px;
        min-width: 75px;
    }

    .profile-menu a i {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .profile-menu a:hover {
        transform: none;
    }

    .checkout-section {
        padding: 0.75rem;
    }

    .checkout-section h5 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .order-card {
        padding: 0.85rem;
    }
}

/* Product Detail - Color and Size Selectors */
.color-selector,
.size-selector {
    margin-bottom: 1.5rem;
}

.color-selector .form-label,
.size-selector .form-label {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.color-btn,
.size-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.color-btn:hover,
.size-btn:hover {
    border-color: var(--primary-black);
    background: var(--light-gray);
}

.color-btn.active,
.size-btn.active {
    border-color: var(--primary-black);
    background: var(--primary-black);
    color: white;
}

.color-btn {
    min-width: 80px;
}

.size-btn {
    min-width: 60px;
}

/* Product Video */
.product-video {
    margin-bottom: 1.5rem;
    border-radius: 0;
    overflow: hidden;
    background: #000;
}

.product-video video {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-video iframe {
    width: 100%;
    height: 500px;
}

/* Product Detail Images */
.product-detail-image {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    aspect-ratio: 1;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-detail-image:hover img {
    transform: scale(1.05);
}

/* Product Detail Info */
.product-detail-info {
    padding: 0 0 0 2rem;
}

.product-category {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary-gray);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price-large {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 2rem;
}

.quantity-selector .form-label {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--primary-black);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    border-color: var(--primary-black);
    background: var(--light-gray);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: 2px solid var(--border-color);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-black);
}

/* Responsive */
@media (max-width: 991px) {
    .product-detail-info {
        padding: 2rem 0 0 0;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-video iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .color-btn,
    .size-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-price-large {
        font-size: 20px;
    }
}

/* ========================================
   PRODUCT DETAIL PAGE - NEW DESIGN
   ======================================== */

/* Main Media Container */
.main-media-container {
    position: relative;
    width: 100%;
    background: var(--light-gray);
    border-radius: 0;
    overflow: hidden;
}

.main-media-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Thumbnail with Play Button */
.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Player */
.video-player {
    position: relative;
    width: 100%;
    background: #000;
}

.close-video-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-video-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    margin-top: 1rem;
}

.thumbnail-item {
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    aspect-ratio: 1;
    transition: border-color 0.3s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--primary-black);
}

/* Product Info Section */
.product-info-section {
    padding-left: 2rem;
}

.product-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary-gray);
    margin-bottom: 0.5rem;
}

.product-name-detail {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-black);
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #ffa500;
    font-size: 14px;
}

.rating-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--secondary-gray);
    font-weight: 400;
}

/* Price Section */
.product-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price-large {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-black);
}

.original-price-large {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-gray);
    text-decoration: line-through;
}

.discount-badge {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff5722;
}

.tax-info {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #4caf50;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

/* Variant Section */
.variant-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.variant-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-swatch {
    width: 60px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: translateY(-2px);
}

.color-swatch img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.color-swatch.active img {
    border-color: var(--primary-black);
    border-width: 3px;
}

.color-swatch .color-name {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 11px;
    margin-top: 0.25rem;
    color: var(--secondary-gray);
    font-weight: 600;
}

/* Size Buttons */
.size-chart-link {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ff5722;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.size-chart-link:hover {
    text-decoration: underline;
}

.size-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-button {
    font-family: 'Poppins', sans-serif;
    min-width: 60px;
    height: 50px;
    padding: 0 1rem;
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.size-button:hover {
    border-color: var(--primary-black);
    background: var(--light-gray);
}

.size-button.active {
    border-color: #ff5722;
    background: #ff5722;
    color: white;
}

/* Stock Info */
.stock-info {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #4caf50;
    font-weight: 400;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.btn-wishlist {
    font-family: 'Poppins', sans-serif;
    flex: 1;
    height: 55px;
    border: 2px solid var(--primary-black);
    background: white;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-wishlist:hover {
    background: var(--primary-black);
    color: white;
}

.btn-wishlist i {
    font-size: 18px;
}

.btn-add-to-bag {
    font-family: 'Poppins', sans-serif;
    flex: 2;
    height: 55px;
    border: none;
    background: #ff5722;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0;
    text-transform: uppercase;
    padding: 0;
    line-height: 1;
}

.btn-add-to-bag:hover {
    background: #e64a19;
}

.btn-add-to-bag i {
    font-size: 18px;
}

/* Product Details Section */
.details-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.details-content {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--secondary-gray);
    font-weight: 400;
}

.details-content p {
    margin-bottom: 0.5rem;
}

/* Delivery Section */
.delivery-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-list li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--secondary-gray);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.delivery-list i {
    font-size: 16px;
    color: var(--primary-black);
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--secondary-gray);
}

/* Responsive */
@media (max-width: 991px) {
    .product-info-section {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .product-name-detail {
        font-size: 20px;
    }
    
    .current-price-large {
        font-size: 24px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-wishlist,
    .btn-add-to-bag {
        flex: 1 !important;
        width: 100% !important;
        height: 56px !important;
        font-size: 14px !important;
        letter-spacing: 1px !important;
        font-weight: 700 !important;
        padding: 0 !important;
        line-height: 56px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .btn-add-to-bag {
        border-radius: 0 !important;
    }
    
    .btn-wishlist {
        border-radius: 0 !important;
    }
}

@media (max-width: 576px) {
    .color-swatch {
        width: 50px;
    }
    
    .color-swatch img {
        width: 50px;
        height: 65px;
    }
    
    .action-buttons {
        gap: 0.75rem;
    }
    
    .btn-add-to-bag,
    .btn-wishlist {
        height: 54px !important;
        font-size: 13px !important;
        letter-spacing: 0.8px !important;
        font-weight: 700 !important;
        line-height: 54px !important;
    }
    
    .btn-add-to-bag i,
    .btn-wishlist i {
        font-size: 18px;
    }
    
    .size-button {
        min-width: 50px;
        height: 45px;
        font-size: 13px;
    }
    
    .product-name-detail {
        font-size: 18px;
    }
    
    .current-price-large {
        font-size: 22px;
    }
}



/* ============================================
   IT'Z ME BANNER - MOVING TEXT (BLACK & WHITE)
   ============================================ */

/* ============================================
   IT'Z ME BANNER - STATIC CENTERED
   ============================================ */

.itz-me-banner-static {
    background: #1a1a1a;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 20px;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.itz-me-static-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.itz-me-static-content span {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Responsive Design for Static Banner */
@media (max-width: 1024px) {
    .itz-me-banner-static {
        height: 65px;
    }
    
    .itz-me-static-content span {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .itz-me-banner-static {
        height: 60px;
    }
    
    .itz-me-static-content span {
        font-size: 16px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    .itz-me-banner-static {
        height: auto;
        min-height: 60px;
        padding: 15px 20px;
    }
    
    .itz-me-static-content span {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}



/* ============================================
   MODERN SHOP BY CATEGORY SECTION
   ============================================ */

.shop-by-category-section {
    background: #fafafa;
    position: relative;
}

.section-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--secondary-gray);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* New Category Grid System */
.category-grid {
    display: grid;
    gap: 0;
    width: 100%;
}

/* Dynamic grid based on category count */
.category-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.category-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.category-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.category-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* New Category Card Design */
.category-card-new {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4/5;
}

.category-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-new:hover .category-card-image-wrapper img {
    transform: scale(1.1);
}

/* Black overlay - always visible */
.category-card-black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.4s ease;
    z-index: 1;
}

.category-card-new:hover .category-card-black-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Hover content - hidden by default */
.category-card-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    width: 80%;
}

.category-card-new:hover .category-card-hover-content {
    opacity: 1;
}

.category-card-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-card-shop-now {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: white;
    padding: 0.75rem 2rem;
    border: 2px solid white;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.category-card-new:hover .category-card-shop-now {
    background: white;
    color: var(--primary-black);
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title-modern {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .category-grid-4,
    .category-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card-name {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
    }
    
    .category-card-shop-now {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 575px) {
    .shop-by-category-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .section-title-modern {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .category-grid-2,
    .category-grid-3,
    .category-grid-4,
    .category-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card-name {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
    
    .category-card-shop-now {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        letter-spacing: 0.8px;
    }
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card-new {
    animation: fadeInUp 0.6s ease-out forwards;
}

.category-card-new:nth-child(1) { animation-delay: 0.1s; }
.category-card-new:nth-child(2) { animation-delay: 0.2s; }
.category-card-new:nth-child(3) { animation-delay: 0.3s; }
.category-card-new:nth-child(4) { animation-delay: 0.4s; }
.category-card-new:nth-child(5) { animation-delay: 0.5s; }


/* ============================================
   MOBILE FILTER BUTTON & MODAL
   ============================================ */

/* Mobile Filter Button */
.btn-filter-mobile {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--primary-black);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-filter-mobile:hover {
    background: var(--secondary-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-filter-mobile:active {
    transform: translateY(0);
}

.btn-filter-mobile i {
    font-size: 1.1rem;
}

.filter-active-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid white;
}

/* Filter Modal Styling */
#filterModal .modal-header {
    background: var(--primary-black);
    color: white;
    padding: 1.25rem 1.5rem;
    border-bottom: none;
}

#filterModal .modal-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

#filterModal .btn-close {
    filter: invert(1);
    opacity: 1;
}

#filterModal .modal-body {
    padding: 1.5rem;
    background: #fafafa;
}

#filterModal .modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e0e0e0;
    background: white;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 1.5rem;
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-label i {
    color: var(--secondary-gray);
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--primary-black);
    background: white;
    transition: all 0.3s ease;
}

.filter-select:focus,
.filter-input:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.filter-input::placeholder {
    color: var(--secondary-gray);
}

/* Modal Footer Buttons */
#filterModal .modal-footer .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#filterModal .modal-footer .btn-outline-secondary {
    border: 2px solid #e0e0e0;
    color: var(--secondary-gray);
}

#filterModal .modal-footer .btn-outline-secondary:hover {
    background: #f5f5f5;
    border-color: var(--secondary-gray);
    color: var(--primary-black);
}

#filterModal .modal-footer .btn-dark {
    background: var(--primary-black);
    border: 2px solid var(--primary-black);
    flex: 1;
}

#filterModal .modal-footer .btn-dark:hover {
    background: var(--secondary-black);
    border-color: var(--secondary-black);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .btn-filter-mobile {
        display: none;
    }
}

@media (max-width: 575px) {
    #filterModal .modal-body {
        padding: 1rem;
    }
    
    .filter-group {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .filter-label {
        font-size: 0.85rem;
    }
    
    .filter-select,
    .filter-input {
        padding: 0.65rem 0.875rem;
        font-size: 0.9rem;
    }
    
    #filterModal .modal-footer {
        padding: 0.875rem 1rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    #filterModal .modal-footer .btn {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animation for modal */
#filterModal.show .modal-dialog {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
    cursor: pointer;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.whatsapp-float i {
    line-height: 1;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

/* Pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1), 0 0 0 20px rgba(37, 211, 102, 0.05);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
