/* 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: 1rem 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;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    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: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-body {
    padding: 1.5rem;
    overflow-y: auto;
    height: calc(100vh - 70px);
}

.mobile-menu-search {
    position: relative;
    margin-bottom: 2rem;
}

.mobile-menu-search input {
    padding-right: 40px;
    border: 1px solid var(--border-color);
    border-radius: 0;
}

.mobile-menu-search i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-gray);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 0.5rem;
}

.mobile-menu-list a {
    display: block;
    padding: 1rem 0;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    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: 10px;
}

.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;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 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-size: 1.75rem;
    font-weight: 900;
    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-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-info {
    padding: 0.75rem 0;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category {
    font-size: 11px;
    color: var(--secondary-gray);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    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-size: 2rem;
    font-weight: 900;
    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-size: 1rem;
    margin-bottom: 0.75rem;
}

.promo-link {
    font-size: 12px;
    font-weight: 700;
    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;
}

.social-links a {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-blue);
    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.5rem 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);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 0;
}

.bottom-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.bottom-nav-item span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    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.1);
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 0 0 3px 3px;
}

.bottom-nav-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.75rem;
    background: var(--primary-black);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    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-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-price-large {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.size-selector {
    margin-bottom: 1.5rem;
}

.size-btn {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    background: white;
    font-size: 13px;
    font-weight: 700;
    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: 70px;
    }
    
    .footer {
        margin-bottom: 70px;
    }
    
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 992px) {
    .hero-main {
        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.5rem;
        letter-spacing: 1.5px;
    }
}

/* 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 {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    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 {
    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 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.product-price .current-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-black);
}

.product-price .original-price {
    font-size: 14px;
    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;
    }
}

/* 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-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary-gray);
    margin-bottom: 0.5rem;
}

.product-name-detail {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    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-size: 13px;
    color: var(--secondary-gray);
    font-weight: 600;
}

/* Price Section */
.product-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
}

.original-price-large {
    font-size: 18px;
    color: var(--secondary-gray);
    text-decoration: line-through;
}

.discount-badge {
    font-size: 14px;
    font-weight: 700;
    color: #ff5722;
}

.tax-info {
    font-size: 12px;
    color: #4caf50;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Variant Section */
.variant-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.variant-label {
    font-size: 13px;
    font-weight: 700;
    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 {
    display: block;
    font-size: 11px;
    margin-top: 0.25rem;
    color: var(--secondary-gray);
    font-weight: 600;
}

/* Size Buttons */
.size-chart-link {
    font-size: 12px;
    font-weight: 700;
    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 {
    min-width: 60px;
    height: 50px;
    padding: 0 1rem;
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--primary-black);
    font-weight: 700;
    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-size: 13px;
    color: #4caf50;
    font-weight: 600;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-wishlist {
    flex: 1;
    height: 55px;
    border: 2px solid var(--primary-black);
    background: white;
    color: var(--primary-black);
    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;
}

.btn-wishlist:hover {
    background: var(--primary-black);
    color: white;
}

.btn-wishlist i {
    font-size: 18px;
}

.btn-add-to-bag {
    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;
}

.btn-add-to-bag:hover {
    background: #e64a19;
}

.btn-add-to-bag i {
    font-size: 18px;
}

/* Product Details Section */
.details-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.details-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--secondary-gray);
}

.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-size: 13px;
    color: var(--secondary-gray);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.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;
    }
    
    .btn-wishlist,
    .btn-add-to-bag {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .color-swatch {
        width: 50px;
    }
    
    .color-swatch img {
        width: 50px;
        height: 65px;
    }
    
    .size-button {
        min-width: 50px;
        height: 45px;
        font-size: 13px;
    }
    
    .product-name-detail {
        font-size: 18px;
    }
    
    .current-price-large {
        font-size: 22px;
    }
}
