/* ==========================================
   BRAND COLOR PALETTE & VARIABLES
   ========================================== */
:root {
    --primary: #ff006f;
    --secondary: #ffda00;
    --bg-main: #FFFFFF;
    --bg-alt: #F8F8F8;
    --bg-dark: #050505;
    --bg-black: #000000;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-light: #888888;
    --footer-text: #aaaaaa;
    --white: #FFFFFF;
    --border: #EAEAEA;
    --shadow: rgba(0,0,0,0.06);
    --glass: rgba(255,255,255,0.92);
}

/* ==========================================
   GLOBAL STYLES & LAYOUT FIX
   ========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { 
    width: 100%; 
    max-width: 100%; 
    overflow-x: hidden !important; 
    font-family: 'Inter', sans-serif; 
    color: var(--text-primary); 
    background: var(--bg-main); 
    -webkit-font-smoothing: antialiased; 
}

h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; font-weight: 600; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1500px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; color: var(--text-primary); letter-spacing: -0.5px; font-weight: 700; }
.section-title span { color: var(--primary); font-weight: 700; font-style: normal; } 

.section-padding { padding-top: 80px; padding-bottom: 80px; }
.bg-alt { background-color: var(--bg-alt); }

.btn { display: inline-block; padding: 14px 30px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; border: 1px solid transparent; border-radius: 4px; text-align: center; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--bg-black); color: var(--white); box-shadow: 0 8px 15px rgba(0,0,0,0.1); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--text-primary); }
.btn-secondary:hover { background: var(--bg-black); color: var(--white); border-color: var(--bg-black); transform: translateY(-2px); }

/* ==========================================
   SLIDER CONTROLS & CONTINUOUS SCROLL UTILS
   ========================================== */
.swiper-continuous .swiper-wrapper {
    transition-timing-function: linear !important;
}

.slider-master-wrapper {
    position: relative;
    padding: 0 50px;
}
.slider-master-wrapper.no-arrows {
    padding: 0;
}

.custom-nav-btn { 
    position: absolute !important; 
    top: 50% !important; 
    transform: translateY(-50%) !important; 
    width: 45px !important; 
    height: 45px !important; 
    background: var(--white) !important; 
    color: var(--bg-black) !important; 
    border-radius: 50% !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important; 
    z-index: 20 !important; 
    transition: all 0.3s ease !important; 
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}
.custom-nav-btn:hover { 
    background: var(--primary) !important; 
    color: var(--white) !important; 
    transform: translateY(-50%) scale(1.1) !important; 
}
.custom-nav-btn::after { 
    font-size: 16px !important; 
    font-weight: bold; 
}
.nav-left { left: 0 !important; }
.nav-right { right: 0 !important; }
.swiper-button-disabled { opacity: 0.5 !important; cursor: not-allowed !important; pointer-events: none; }

.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.section-header-flex .section-title { margin-bottom: 0; text-align: left; }
.header-arrows { display: flex; gap: 15px; position: relative; z-index: 20; }
.header-arrows .custom-nav-btn { position: relative !important; top: auto !important; left: auto !important; right: auto !important; margin-top: 0 !important; transform: none !important; margin: 0 !important; }
.header-arrows .custom-nav-btn:hover { transform: translateY(-3px) scale(1.05) !important; }

/* ==========================================
   ANNOUNCEMENT BAR & HEADER
   ========================================== */
.announcement-bar { background: var(--bg-black); color: var(--white); padding: 10px 0; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; overflow: hidden; width: 100%; white-space: nowrap; }
.announcement-content { display: inline-block; animation: scrollLeft 25s linear infinite; }
.announcement-content span { margin: 0 40px; }
@keyframes scrollLeft { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

.header { position: sticky; top: 0; z-index: 1000; background: var(--glass); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-bottom: 1px solid rgba(0,0,0,0.05); transition: all 0.4s ease; width: 100%; padding: 10px 0; }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 80px; }
.nav-links { display: flex; gap: 35px; justify-content: flex-start; }
.nav-links a { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; position: relative; padding-bottom: 5px; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--primary); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.logo { font-size: 26px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-align: center; }
.header-icons { display: flex; gap: 20px; font-size: 18px; justify-content: flex-end; align-items: center; }
.header-icons i { cursor: pointer; transition: 0.3s; position: relative; }
.header-icons i:hover { color: var(--primary); transform: translateY(-2px); }
.cart-count { position: absolute; top: -8px; right: -8px; background: var(--primary); color: white; font-size: 10px; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 600; }
.mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; }

/* ==========================================
   HERO BANNER
   ========================================== */
.hero-slider { height: 80vh; width: 100%; position: relative; overflow: hidden; }
.hero-slider .swiper-slide { background-size: cover; background-position: center 20%; }
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { color: var(--white); background: rgba(0,0,0,0.2); width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); transition: 0.3s; }
.hero-slider .swiper-button-next:hover, .hero-slider .swiper-button-prev:hover { background: var(--primary); border-color: var(--primary); }
.hero-slider .swiper-button-next:after, .hero-slider .swiper-button-prev:after { font-size: 18px; }
.hero-slider .swiper-pagination-bullet { width: 10px; height: 10px; background: transparent; border: 1px solid var(--white); opacity: 1; }
.hero-slider .swiper-pagination-bullet-active { background: var(--white); }

/* ==========================================
   SHOP BY CATEGORY
   ========================================== */
.category-carousel { overflow: visible; padding: 15px 0; }
.category-carousel .swiper-slide { text-align: center; transition: all 0.4s ease; width: 170px; }
.category-img-wrapper { width: 150px; height: 150px; margin: 0 auto 15px; border-radius: 50%; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s ease; cursor: pointer; padding: 4px; }
.category-img-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; }
.category-img-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.category-carousel .swiper-slide:hover .category-img-wrapper { border-color: var(--primary); }
.category-carousel .swiper-slide:hover img { transform: scale(1.1); }
.category-name { font-size: 13px; font-weight: 600; text-transform: uppercase; }

/* ==========================================
   PRODUCT CARDS
   ========================================== */
.product-card { text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.product-img { position: relative; overflow: hidden; margin-bottom: 15px; border-radius: 6px; cursor: pointer; }
.product-img img.img-primary { width: 100%; height: 420px; object-fit: cover; transition: opacity 0.5s ease, transform 0.8s ease; opacity: 1; }
.product-img img.img-hover { position: absolute; top: 0; left: 0; width: 100%; height: 420px; object-fit: cover; opacity: 0; transition: opacity 0.5s ease, transform 0.8s ease; transform: scale(1.05); }

.product-card:hover .product-img img.img-primary { opacity: 0; transform: scale(1.05); }
.product-card:hover .product-img img.img-hover { opacity: 1; transform: scale(1); }

.product-actions { position: absolute; bottom: 15px; left: 0; width: 100%; display: flex; justify-content: center; gap: 10px; transition: all 0.4s ease; opacity: 0; transform: translateY(15px); z-index: 3; }
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.action-btn { width: 38px; height: 38px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); cursor: pointer; transition: 0.3s; font-size: 14px; }
.action-btn:hover { background: var(--primary); color: var(--white); }
.product-category { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; font-weight: 500; }
.product-name { font-size: 17px; margin: 0 0 8px; color: var(--text-primary); font-weight: 600; }
.product-price { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.product-rating { color: var(--secondary); font-size: 11px; margin-bottom: 15px; }

/* ==========================================
   TWO PROMOTIONAL BANNERS
   ========================================== */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.promo-banner { position: relative; overflow: hidden; height: 400px; cursor: pointer; border-radius: 6px; }
.promo-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.promo-banner:hover img { transform: scale(1.05); }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); z-index: 1; transition: 0.4s; }
.promo-banner:hover .promo-overlay { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%); }
.promo-content { position: absolute; bottom: 25px; left: 25px; z-index: 2; color: var(--white); }
.promo-content h3 { font-size: 24px; margin-bottom: 8px; font-weight: 700; }
.promo-content span { font-size: 13px; font-weight: 600; text-transform: uppercase; display: flex; align-items: center; gap: 6px; transition: 0.3s; }
.promo-banner:hover .promo-content span { color: var(--primary); gap: 10px; }

/* ==========================================
   FULL WIDTH PROMO BANNER
   ========================================== */
.parallax-banner { height: 50vh; width: 100%; background-image: url('https://images.unsplash.com/photo-1583391733958-d2597fffb8b9?auto=format&fit=crop&q=80'); background-size: cover; background-position: center; background-attachment: fixed; }

/* ==========================================
   FEATURED COLLECTION GRID
   ========================================== */
.masonry-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 15px; }
.masonry-item { position: relative; overflow: hidden; cursor: pointer; border-radius: 6px; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.masonry-item:hover img { transform: scale(1.05); }
.item-large { grid-column: span 2; grid-row: span 2; }
.item-wide { grid-column: span 2; }

/* ==========================================
   WHY SHOP WITH US
   ========================================== */
.dark-features-section { background: var(--bg-dark); color: var(--white); padding: 70px 0; width: 100%; }
.dark-features-section .section-title { color: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.feature-card { padding: 40px 20px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(255, 0, 111, 0.15); border-color: var(--primary); background: rgba(255, 255, 255, 0.08); }
.feature-icon { font-size: 32px; color: var(--primary); margin-bottom: 20px; transition: transform 0.3s; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-title { font-size: 15px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.feature-desc { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.5; }

/* ==========================================
   CUSTOMER REVIEWS
   ========================================== */
.reviews-section { background: var(--bg-alt); padding: 70px 0; width: 100%; }
.review-card { background: var(--white); padding: 35px 25px; text-align: center; margin: 10px 0; transition: transform 0.3s; box-shadow: 0 8px 20px var(--shadow); border-radius: 8px; }
.review-img { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 15px; object-fit: cover; border: 2px solid var(--border); padding: 3px; }
.review-stars { color: var(--secondary); margin-bottom: 10px; font-size: 11px; }
.review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; line-height: 1.6; } 
.review-name { font-size: 13px; font-weight: 700; text-transform: uppercase; }

/* ==========================================
   INSTAGRAM GALLERY
   ========================================== */
.gallery-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/5; border-radius: 6px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; z-index: 2; }
.gallery-overlay i { color: var(--white); font-size: 30px; transform: scale(0.5); transition: 0.3s; }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-card:hover .gallery-overlay i { transform: scale(1); }
.gallery-card:hover img { transform: scale(1.05); }

/* ==========================================
   CONTACT SECTION & FOOTER
   ========================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-info-icon { font-size: 22px; color: var(--primary); }
.contact-info-item h4 { font-size: 15px; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 18px; margin-bottom: 15px; border: 1px solid var(--border); background: var(--bg-alt); font-family: inherit; font-size: 14px; outline: none; transition: 0.3s; border-radius: 4px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); background: var(--white); }
.contact-form textarea { height: 140px; resize: none; }

.footer { background: var(--bg-dark); color: var(--footer-text); padding: 70px 0 25px; font-size: 13px; width: 100%; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { color: var(--white); font-size: 22px; font-weight: 700; letter-spacing: 1px; margin-bottom: 15px; display: inline-block; text-transform: uppercase; }
.footer-title { color: var(--white); font-size: 14px; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { position: relative; display: inline-block; }
.footer-links a:hover { color: var(--white); transform: translateX(4px); }
.footer-socials { display: flex; gap: 15px; margin-top: 20px; }
.footer-socials a { color: var(--white); font-size: 18px; transition: 0.3s; }
.footer-socials a:hover { color: var(--primary); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }

/* ==========================================
   NEW COMMON COMPONENTS (MOBILE MENU, SEARCH OVERLAY, ACCORDIONS, ETC.)
   ========================================== */
/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.mobile-drawer.active {
    right: 0;
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}
.drawer-logo {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.drawer-close {
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s;
}
.drawer-close:hover {
    color: var(--primary);
}
.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.drawer-links a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}
.drawer-links a:hover {
    color: var(--primary);
    border-color: var(--border);
}

/* Fullscreen Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}
.search-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--white);
    padding-bottom: 10px;
}
.search-input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    outline: none;
    padding: 0 10px;
}
.search-input::placeholder {
    color: rgba(255,255,255,0.4);
}
.search-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}
.search-btn:hover {
    color: var(--primary);
}
.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}
.search-close:hover {
    color: var(--primary);
}

/* Breadcrumbs navigation */
.breadcrumbs {
    padding: 25px 0 10px;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    gap: 8px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.breadcrumbs a {
    color: var(--text-secondary);
}
.breadcrumbs a:hover {
    color: var(--primary);
}
.breadcrumbs span.divider {
    color: var(--border);
}
.breadcrumbs span.current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ==========================================
   SHOP AND PRODUCTS LISTING LAYOUT
   ========================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}
.filters-sidebar {
    position: sticky;
    top: 100px;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 25px;
    background: var(--white);
}
.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}
.filter-group:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.filter-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}
.filter-option input[type="checkbox"] {
    accent-color: var(--primary);
    cursor: pointer;
}
.filter-color-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-color-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: 0.2s;
}
.filter-color-btn:hover, .filter-color-btn.active {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}
.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.catalog-info {
    font-size: 14px;
    color: var(--text-secondary);
}
.sort-select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    color: var(--text-secondary);
}
.sort-select:focus {
    border-color: var(--primary);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}
.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.page-link:hover, .page-link.active {
    background: var(--bg-black);
    color: var(--white);
    border-color: var(--bg-black);
}

/* ==========================================
   PRODUCT DETAILS LAYOUT
   ========================================== */
.details-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}
.gallery-container {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
}
.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.thumb-item {
    aspect-ratio: 4/5;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}
.thumb-item.active, .thumb-item:hover {
    border-color: var(--primary);
}
.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-image-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/5;
}
.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.main-image-wrapper:hover img {
    transform: scale(1.12);
}
.details-content {
    padding-top: 5px;
}
.details-category {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.details-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.details-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.details-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--text-secondary);
}
.details-rating .stars {
    color: var(--secondary);
    font-size: 11px;
}
.details-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}
.details-options-group {
    margin-bottom: 25px;
}
.options-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.size-btns {
    display: flex;
    gap: 10px;
}
.size-btn {
    width: 45px;
    height: 40px;
    border: 1px solid var(--border);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.3s;
}
.size-btn:hover {
    border-color: var(--text-primary);
}
.size-btn.active {
    background: var(--bg-black);
    color: var(--white);
    border-color: var(--bg-black);
}
.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 120px;
    height: 45px;
}
.qty-btn {
    width: 35px;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}
.buy-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.buy-actions .btn {
    flex: 1;
}
.wishlist-add-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}
.wishlist-add-btn:hover {
    background: var(--bg-alt);
    color: var(--primary);
}
.details-tab-section {
    margin-top: 50px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}
.tab-headers {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}
.tab-header {
    padding-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    color: var(--text-light);
    transition: 0.3s;
}
.tab-header.active, .tab-header:hover {
    color: var(--text-primary);
}
.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}
.tab-content {
    display: none;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.tab-content.active {
    display: block;
}
.spec-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.spec-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}
.spec-item:last-child {
    border: none;
}
.spec-label {
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================
   CART & CHECKOUT STYLES
   ========================================== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.cart-table-wrapper {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}
.cart-table th, .cart-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.cart-table th {
    background: var(--bg-alt);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border);
}
.cart-item-name {
    font-size: 14px;
    font-weight: 600;
}
.cart-item-meta {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
}
.coupon-box {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}
.coupon-box input {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    width: 220px;
}
.coupon-box input:focus {
    border-color: var(--primary);
}
.cart-summary {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid var(--border);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}
.summary-row.total {
    border-top: 1px solid var(--border);
    padding-top: 15px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 25px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: start;
}
.form-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 25px;
}
.form-section-title {
    font-size: 16px;
    font-weight: 650;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
}
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}
.payment-option {
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: 0.3s;
}
.payment-option:hover {
    background: var(--bg-alt);
}
.payment-option input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--primary);
}
.payment-option-details {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}
.payment-option-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

/* ==========================================
   PROFILE & DASHBOARD STYLES
   ========================================== */
.profile-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}
.profile-menu {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
}
.profile-menu-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    transition: 0.3s;
    cursor: pointer;
}
.profile-menu-item:last-child {
    border-bottom: none;
}
.profile-menu-item:hover, .profile-menu-item.active {
    background: var(--bg-alt);
    color: var(--primary);
}
.profile-content-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 30px;
    min-height: 400px;
}
.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.orders-table th, .orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.orders-table th {
    font-weight: 600;
    text-transform: uppercase;
    background: var(--bg-alt);
}
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.status-processing { background: #fff8db; color: #b78a00; }
.status-shipped { background: #e3f2fd; color: #0d47a1; }
.status-delivered { background: #e8f5e9; color: #1b5e20; }

/* Address Cards */
.addresses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.address-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    position: relative;
}
.address-card.default {
    border-color: var(--primary);
}
.address-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
}
.address-name {
    font-weight: 600;
    margin-bottom: 10px;
}
.address-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}
.address-actions {
    display: flex;
    gap: 15px;
    font-size: 12px;
    font-weight: 600;
}
.address-actions a {
    color: var(--text-secondary);
}
.address-actions a:hover {
    color: var(--primary);
}

/* Visual Order Tracker */
.tracking-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 50px 0;
    padding: 0 20px;
}
.tracking-flow::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: var(--border);
    z-index: 1;
}
.tracking-progress-bar {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 50%;
    height: 4px;
    background: var(--primary);
    z-index: 2;
}
.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100px;
}
.tracking-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-light);
    transition: 0.3s;
}
.tracking-step.active .tracking-icon {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 0, 111, 0.2);
}
.tracking-step.completed .tracking-icon {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}
.tracking-label {
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
}
.tracking-date {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 4px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 15px;
    background: var(--white);
    overflow: hidden;
}
.faq-header {
    padding: 20px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s;
    user-select: none;
}
.faq-header:hover {
    background: var(--bg-alt);
}
.faq-header i {
    transition: transform 0.3s;
}
.faq-item.active .faq-header i {
    transform: rotate(180deg);
}
.faq-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.faq-item.active .faq-content {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid var(--border);
}

/* Categories page grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}

/* Authentication centered forms */
.auth-container {
    max-width: 450px;
    margin: 50px auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.auth-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}
.auth-options a {
    color: var(--primary);
}
.auth-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
}
.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================== */
@media (max-width: 1200px) {
    .masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .header-inner { grid-template-columns: auto 1fr auto; }
    .logo { font-size: 20px; text-align: left; margin-left: 15px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .section-padding { padding-top: 50px; padding-bottom: 50px; }
    .slider-master-wrapper { padding: 0 40px; } 
    .section-header-flex { flex-direction: column; align-items: center; gap: 15px; text-align: center; }
    .section-header-flex .section-title { text-align: center; }
    .shop-layout, .details-layout, .cart-layout, .checkout-layout, .profile-layout { grid-template-columns: 1fr; gap: 30px; }
    .filters-sidebar { position: relative; top: 0; margin-bottom: 30px; }
    .product-grid, .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .gallery-container { grid-template-columns: 1fr; display: flex; flex-direction: column-reverse; }
    .gallery-thumbnails { flex-direction: row; justify-content: center; }
    .thumb-item { width: 70px; }
}
@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .section-title { font-size: 1.8rem; margin-bottom: 24px; }
    .hero-slider { height: 60vh; }
    .custom-nav-btn { width: 35px !important; height: 35px !important; } 
    .custom-nav-btn:after { font-size: 12px !important; }
    .slider-master-wrapper { padding: 0 35px; }
    .addresses-grid { grid-template-columns: 1fr; }
    .tracking-flow { flex-direction: column; gap: 30px; align-items: flex-start; margin: 30px 0; padding-left: 40px; }
    .tracking-flow::before { left: 40px; width: 4px; top: 0; bottom: 0; height: auto; }
    .tracking-progress-bar { left: 40px; width: 4px; top: 0; height: 50%; }
    .tracking-step { flex-direction: row; text-align: left; width: 100%; gap: 15px; }
    .tracking-label { margin-top: 0; }
}
@media (max-width: 576px) {
    .product-grid, .categories-grid { grid-template-columns: 1fr; }
}
