/* --- 1. Variables & Reset --- */
:root {
    --primary-yellow: #f86a05;
    --primary-yellow-dark: #e6ac00;
    --primary-yellow-light: #ffd54f;
    --dark-text: #222222;
    --dark-text-light: #333333;
    --gray-text: #555555;
    --gray-light: #777777;
    --border-color: #e1e1e1;
    --bg-color: #f4f7f9;
    --bg-light: #f9f9f9;
    --sale-red: #f86a05;
    --sale-red-light: #ff4d4d;
    --success-green: #28a745;
    --info-blue: #17a2b8;
   
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Open Sans', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}


a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition); 
}
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input { outline: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- 2. Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 193, 7, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 193, 7, 0.8); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes countdown {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.fade-in { animation: fadeIn 0.8s ease-out; }
.slide-left { animation: slideInLeft 0.6s ease-out; }
.slide-right { animation: slideInRight 0.6s ease-out; }
.pulse-animation { animation: pulse 2s infinite; }
.float-animation { animation: float 3s ease-in-out infinite; }
.glow-animation { animation: glow 2s infinite; }

/* --- 3. Top Header (White) --- */
.top-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 13px;
    color: var(--gray-text);
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.5s ease-out;
}
.top-header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap;
}
.top-left .offer-pulse {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--sale-red);
    position: relative;
    padding-left: 10px;
}
.top-left .offer-pulse::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--sale-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.top-left .offer-pulse i {
    color: var(--primary-yellow);
}
.top-menu { 
    display: flex; 
    gap: 20px; 
}
.top-menu a { 
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: var(--transition);
}
.top-menu a:hover { 
    background: var(--primary-yellow); 
    color: #000; 
    transform: translateY(-2px);
}

/* --- 4. Main Header (Yellow) --- */
.main-header {
  
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    top: 0;
    z-index: 1000;
    animation: slideInDown 0.5s ease-out;
}

.header-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: #000;
    color: var(--primary-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: rotate 20s linear infinite;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-top {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
}
.logo-bottom {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    letter-spacing: 2px;
}

/* Search Box */
.search-section { 
    width: 100%; 
    position: relative;
}
.search-box {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    height: 50px;
    width: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}
.search-box:focus-within {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.search-icon {
    padding: 0 20px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
}
.search-box input {
    flex: 1;
    border: none;
    padding: 0 10px;
    outline: none;
    font-size: 15px;
    background: transparent;
}
.search-btn {
    background: var(--gradient-dark);
    color: #fff;
    border: none;
    padding: 0 30px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}


.icons-section {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.icon-group a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #222;
    padding: 5px;
    border-radius: 10px;
    transition: var(--transition);
}
.icon-group a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}
.icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.icon-group a:hover .icon-wrapper {
    background: #fff;
    transform: scale(1.1);
}
.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--sale-red);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: bounce 2s infinite;
}
.icon-label {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

/* --- 5. Navigation Bar --- */
.below-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
  
    top: 80px;
    z-index: 999;
}
.nav-wrap { 
    display: flex; 
    align-items: center; 
    position: relative; 
    padding: 10px 0;
}

/* Vertical Menu Toggle */
.vertical-menu-wrapper {
    width: 250px;
    position: relative;
    flex-shrink: 0;
}
.cat-toggle-btn {
    background: var(--gradient-primary);
    color: #000;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.cat-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.cat-toggle-btn i:first-child {
    margin-right: 10px;
    font-size: 18px;
}
.vertical-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: none;
    display: none; 
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.3s ease-out;
}
.vertical-menu.show { display: block; }
.vertical-menu li { 
    border-bottom: 1px solid #f1f1f1; 
    transition: var(--transition);
}
.vertical-menu li:hover { 
    background: var(--bg-color);
}
.vertical-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
}
.vertical-menu li a i {
    margin-right: 10px;
    color: var(--primary-yellow);
    width: 20px;
    text-align: center;
}
.vertical-menu li a:hover { 
    color: var(--primary-yellow); 
    padding-left: 25px; 
}

/* Horizontal Menu */
.main-nav { flex: 1; margin-left: 20px; }
.nav-list { 
    display: flex; 
    flex-wrap: wrap;
    gap: 5px;
}
.nav-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 15px;
    color: #222;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-list li a:hover, .nav-list li a.active { 
    background: var(--primary-yellow); 
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}
.mobile-menu-trigger { 
    display: none; 
    font-weight: 700; 
    cursor: pointer;
    padding: 15px;
    background: var(--primary-yellow);
    border-radius: 4px;
    transition: var(--transition);
}
.mobile-menu-trigger:hover {
    background: var(--primary-yellow-dark);
    transform: translateY(-2px);
}

/* Support */
.support-wrap { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-left: auto;
    padding: 10px 20px;
    background: var(--gradient-dark);
    border-radius: 10px;
    color: #fff;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.support-wrap:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.support-icon {
    width: 40px; 
    height: 40px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
    font-size: 18px;
}
.support-text { 
    display: flex; 
    flex-direction: column; 
}
.support-text span { 
    font-size: 11px; 
    color: rgba(255,255,255,0.8); 
}
.support-text a { 
    font-weight: 800; 
    color: #fff; 
    white-space: nowrap; 
    font-size: 16px;
}

/* --- Floating Quick Access --- */
.floating-quick-access {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.floating-quick-access a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #000;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}
.floating-quick-access a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}
.floating-quick-access a::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}
.floating-quick-access a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* --- 6. Layout --- */
.content-area {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease-out;
}

/* Sidebar Widgets */
.sidebar .widget {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: slideInLeft 0.6s ease-out;
}
.sidebar .widget:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.widget-title {
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-yellow);
}

.budget-deals {
    text-align: center;
    padding: 20px 10px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.deal-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--sale-red);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.budget-deals h3 {
    font-size: 24px;
    margin-bottom: 5px;
}
.deal-offer {
    font-size: 18px;
    margin-bottom: 15px;
}
.deal-offer span {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-yellow);
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.deal-timer {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.timer-unit {
    background: rgba(255,255,255,0.2);
    padding: 8px;
    border-radius: 6px;
    min-width: 50px;
}
.timer-unit span {
    font-size: 24px;
    font-weight: 800;
    display: block;
}
.timer-unit small {
    font-size: 11px;
    opacity: 0.8;
}
.budget-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f86a05;
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.budget-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Product List Widget */
.product-list-widget li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
    transition: var(--transition);
}
.product-list-widget li:hover {
    transform: translateX(5px);
    border-bottom-color: var(--primary-yellow);
}
.product-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-list-widget li:hover .product-img img {
    transform: scale(1.1);
}
.plw-content {
    flex: 1;
}
.plw-content a { 
    font-weight: 600; 
    color: #333; 
    font-size: 14px; 
    display: block; 
    margin-bottom: 5px;
}
.plw-content a:hover {
    color: var(--primary-yellow);
}
.rating-count {
    font-size: 12px;
    color: var(--gray-light);
}
.plw-content .price { 
    display: block; 
    margin-top: 8px; 
    font-weight: 700; 
}
.plw-content del { 
    color: #999; 
    font-weight: normal; 
    font-size: 12px; 
    margin-right: 5px; 
}
.plw-content ins { 
    color: #222; 
    text-decoration: none; 
    font-size: 16px;
    color: var(--primary-yellow);
}
.star-rating { 
    color: var(--primary-yellow); 
    font-size: 12px; 
    margin: 5px 0; 
    display: flex;
    align-items: center;
    gap: 5px;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-item {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #666;
    border-radius: 50px;
    transition: var(--transition);
}
.tag-item:hover { 
    background: var(--primary-yellow); 
    color: #000; 
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(255, 193, 7, 0.2);
}

/* --- 7. Main Slider --- */
.main-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.8s ease-out;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    position: absolute;
    right: 80px;
    bottom: 0;
    width: 500px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.slide-image img {
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.slider-caption {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 500px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    animation: slideInLeft 1s ease-out;
}

.slide-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}

.slide-text {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.slide-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.old-price {
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    text-decoration: line-through;
}
.new-price {
    color: var(--primary-yellow);
    font-size: 36px;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background:#f86a05;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.slide-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Navigation Buttons */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev { left: 20px; }
.slider-control.next { right: 20px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active, .dot:hover {
    background: var(--primary-yellow);
    transform: scale(1.3);
}

/* --- 8. Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.feature-content p {
    color: var(--gray-light);
    font-size: 14px;
}

/* --- 9. Categories Section --- */
.categories-section {
    margin: 50px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}
.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    color: #000;
}

.category-card:hover .category-icon {
    background: #000;
    color: var(--primary-yellow);
}

.category-card:hover .category-link {
    color: #000;
    background: rgba(255,255,255,0.9);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-yellow);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.category-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.category-card p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-yellow);
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.category-link:hover {
    gap: 15px;
    padding: 8px 25px;
}

/* --- 10. Section Heading --- */
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.section-title { 
    font-size: 24px; 
    text-transform: uppercase; 
    color: var(--dark-text); 
    position: relative; 
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px; left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
}
.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gray-light);
    transition: var(--transition);
}
.view-all:hover {
    color: var(--primary-yellow);
    gap: 12px;
}
.tab-links { 
    display: flex; 
    gap: 20px; 
}
.tab-links a { 
    font-weight: 600; 
    color: #888; 
    font-size: 14px; 
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}
.tab-links a.active, .tab-links a:hover { 
    color: var(--dark-text); 
}
.tab-links a.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
}

/* --- 11. Products Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    animation: fadeIn 0.8s ease-out;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    transition: var(--transition);
    padding: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap { 
    position: relative; 
    overflow: hidden; 
    margin-bottom: 20px;
    height: 250px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.onsale {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--sale-red);
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 28, 28, 0.3);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(50px);
    transition: var(--transition);
    z-index: 3;
}
.product-card:hover .product-actions {
    transform: translateX(0);
}
.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--dark-text);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.action-btn:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: scale(1.1);
}

.add-to-cart-btn {
    position: absolute;
    bottom: -60px; 
    left: 20px; 
    right: 20px;
    background: var(--gradient-dark);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.product-card:hover .add-to-cart-btn { 
    bottom: 20px; 
}
.add-to-cart-btn:hover { 
    background: var(--primary-yellow); 
    color: #000; 
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.product-details { 
    text-align: center; 
}
.product-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--gray-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-details h3 { 
    font-size: 16px; 
    margin: 10px 0 5px; 
    height: 45px;
    overflow: hidden;
    line-height: 1.4;
}
.product-details h3 a:hover {
    color: var(--primary-yellow);
}
.product-details .star-rating { 
    margin: 10px 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.product-details .price { 
    font-weight: 700; 
    color: var(--dark-text); 
    font-size: 18px; 
    margin-top: 10px;
}
.product-details del { 
    color: #999; 
    font-weight: normal; 
    margin-right: 10px; 
    font-size: 14px; 
}
.product-details ins { 
    color: var(--primary-yellow); 
    text-decoration: none; 
    font-size: 22px;
    font-weight: 800;
}

/* --- 12. Hero Banner --- */
.hero-banner {
    background: var(--gradient-secondary);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin: 50px 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.8s ease-out;
}
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 500;
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}
.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}
.hero-features .feature i {
    color: var(--primary-yellow);
}
.hero-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.hero-price .old-price {
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    text-decoration: line-through;
}
.hero-price .new-price {
    color: var(--primary-yellow);
    font-size: 42px;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-buttons {
    display: flex;
    gap: 20px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.hero-btn.primary-btn {
    background: var(--primary-yellow);
    color: #000;
}
.hero-btn.secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.hero-btn.primary-btn:hover {
    background: #fff;
    color: #000;
}
.hero-btn.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.hero-image {
    position: relative;
    width: 500px;
    height: 400px;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}
.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}
.floating-element i {
    color: var(--primary-yellow);
}
.floating-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}
.floating-2 {
    top: 50%;
    right: -20px;
    animation-delay: 1s;
}
.floating-3 {
    bottom: 50px;
    left: -20px;
    animation-delay: 2s;
}

/* --- 13. Flash Sale --- */
.flash-sale {
    margin: 50px 0;
    animation: fadeIn 0.8s ease-out;
}

.sale-timer {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.sale-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.sale-product-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.sale-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--sale-red);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 28, 28, 0.3);
}

.sale-product-card img {
    height: 180px;
    object-fit: contain;
    margin: 20px auto;
    transition: var(--transition);
}
.sale-product-card:hover img {
    transform: scale(1.1);
}

.sale-product-card h4 {
    font-size: 18px;
    margin: 15px 0 10px;
    color: var(--dark-text);
}

.sale-product-card .price {
    margin: 15px 0;
}
.sale-product-card .price del {
    color: #999;
    font-size: 16px;
    margin-right: 10px;
}
.sale-product-card .price ins {
    color: #f86a05;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
}

.progress-bar {
    background: var(--bg-light);
    height: 8px;
    border-radius: 4px;
    margin: 15px 0 10px;
    overflow: hidden;
    position: relative;
}
.progress-fill {
    background: var(--gradient-primary);
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}
.progress-bar span {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 12px;
    color: var(--gray-light);
}

/* --- 14. Brands Section --- */
.brands-section {
    margin: 50px 0;
    animation: fadeIn 0.8s ease-out;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.brand-logo {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.brand-logo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    color: #000;
}

.brand-logo i {
    font-size: 40px;
    color: var(--primary-yellow);
}
.brand-logo:hover i {
    color: #000;
    animation: bounce 1s;
}

.brand-logo span {
    font-size: 16px;
    font-weight: 700;
}

/* --- 15. Footer --- */
footer { 
    background: var(--dark-text); 
    color: #aaa; 
    margin-top: 80px; 
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-widgets { 
    padding: 60px 0; 
    border-bottom: 1px solid #333; 
    position: relative;
    z-index: 1;
}
.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo i {
    font-size: 36px;
    color: var(--primary-yellow);
}
footer h4 { 
    color: #fff; 
    text-transform: uppercase; 
    margin-bottom: 25px; 
    font-size: 18px; 
    position: relative; 
    padding-bottom: 15px; 
    font-weight: 700;
}
footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
}
footer ul li { 
    margin-bottom: 12px; 
    padding-bottom: 12px; 
    border-bottom: 1px solid #333; 
    transition: var(--transition);
}
footer ul li:hover {
    border-bottom-color: var(--primary-yellow);
    padding-left: 10px;
}
footer ul li a { 
    display: flex;
    align-items: center;
    gap: 10px;
}
footer ul li a:hover { 
    color: var(--primary-yellow); 
}
footer ul li i { 
    color: var(--primary-yellow); 
    font-size: 12px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}
.contact-info li i {
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}
.social-icon:hover {
    transform: translateY(-5px);
    color: #fff;
}
.social-icon.facebook:hover { background: #3b5998; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.linkedin:hover { background: #0077b5; }

.newsletter {
    margin-top: 25px;
}
.newsletter h5 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}
.newsletter p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    background: #333;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #444;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
}
.newsletter-form button {
    background: var(--primary-yellow);
    color: #000;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover {
    background: var(--primary-yellow-dark);
    padding: 0 30px;
}

.bottom-footer { 
    padding: 25px 0; 
    text-align: center; 
    font-size: 14px; 
    background: #1a1a1a; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.bottom-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bottom-footer i {
    color: var(--sale-red);
    animation: pulse 2s infinite;
}
.payment-methods {
    display: flex;
    gap: 20px;
    font-size: 24px;
    color: #aaa;
}

/* --- 16. Responsive Design --- */
@media (max-width: 1200px) {
    .hero-text h1 { font-size: 36px; }
    .hero-image { width: 400px; }
    .slide-title { font-size: 36px; }
    .slide-image { width: 400px; right: 40px; }
}

@media (max-width: 992px) {
    .header-wrap { 
        grid-template-columns: 1fr 1fr; 
        gap: 20px;
    }
    .search-section { 
        grid-column: 1 / -1; 
        order: 3; 
    }
    .content-area { 
        grid-template-columns: 1fr; 
    }
    .sidebar { 
        display: none; 
    }
    .nav-list { 
        display: none; 
    }
    .mobile-menu-trigger { 
        display: block; 
    }
    .vertical-menu-wrapper { 
        display: none; 
    }
    .support-wrap { 
        display: none; 
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-image {
        width: 100%;
        height: 300px;
    }
    .floating-element {
        display: none;
    }
    
    .slide-image {
        display: none;
    }
    .slider-caption {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    .slider-item {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-slider { height: 381px; }
    .slide-title { font-size: 28px; }
    .slide-text { font-size: 16px; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sale-products {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .tab-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero-banner {
        padding: 30px;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .top-header .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-text {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-quick-access {
        bottom: 20px;
        right: 10px;
    }
    
    .footer-logo .logo-text {
        display: flex;
    }
}
.extra-category{
    display:none;
}
.shop-category-widget .category-list li {
    margin-bottom: 12px; /* Adjust the value as needed */
}

.shop-category-widget .category-list li:last-child {
    margin-bottom: 0; /* Remove bottom margin for the last item */
}
.brand-logo {
    display: flex;
    flex-direction: column; /* Stack logo and text vertically */
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
    text-align: center;
    width: 120px; /* Fixed width for each brand container */
    height: 120px; /* Fixed height for each brand container */
}

.brand-logo img {
    width: 60px; /* Medium fixed width */
    height: 60px; /* Medium fixed height */
    object-fit: contain; /* Maintain aspect ratio without distortion */
    display: block;
}

.brand-logo span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

/* If you want a responsive grid layout */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    justify-items: center;
}


/* Shop By Brands Widget */
.shop-brands-widget {
    margin-bottom: 30px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.shop-brands-widget .widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    font-size: 18px;
    color: #333;
}

.shop-brands-widget .widget-title i {
    color: #007bff;
    font-size: 20px;
}

/* Brands List */
.brands-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
}

.brands-list::-webkit-scrollbar {
    width: 5px;
}

.brands-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.brands-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.brands-list li {
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.brands-list li:hover {
    background-color: #f8f9ff;
    border-color: #e0e7ff;
    transform: translateX(5px);
}

.brands-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brands-list li a:hover {
    color: #007bff;
}

.brands-list li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    padding: 2px;
    border: 1px solid #eee;
}

.brands-list li span {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

/* Optional: Add a "View All Brands" link at the bottom */
.view-all-brands {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-brands:hover {
    background: linear-gradient(to right, #0056b3, #004494);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}
/* Footer Styling */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2fr;
    gap: 30px;
}

.footer-contact-map {
    grid-column: 4;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 32px;
    color: #007bff;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-size: 24px;
    font-weight: 800;
    color: #333;
}

.logo-bottom {
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
}

/* Business Hours */
.business-hours {
    background: #f8f9ff;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #007bff;
}

.business-hours h5 {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #333;
}

.business-hours h5 i {
    color: #007bff;
    margin-right: 8px;
}

.business-hours p {
    margin: 0;
    font-size: 14px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-icon.youtube {
    background: #FF0000;
}

/* Footer Columns */
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4 i {
    color: #007bff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-col ul li a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.footer-col ul li a i {
    font-size: 12px;
    color: #007bff;
}

/* Contact Info */
.contact-info {
    background: #f8f9ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-info p {
    margin: 0 0 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.contact-info p i {
    color: #007bff;
    margin-top: 3px;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #007bff;
}

/* Google Map */
.google-map {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}



/* Bottom Footer */
.bottom-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 20px 0;
    margin-top: 30px;
}

.bottom-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-footer p {
    margin: 0;
    font-size: 14px;
}

.bottom-footer .footer-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bottom-footer .footer-tags span {
    background: #333;
    color: #ddd;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contact-map {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-contact-map {
        grid-column: span 1;
    }
    
    .bottom-footer .container {
        flex-direction: column;
        text-align: center;
    }
}
.brand-title {
            text-align: center;
            margin: 0 !important;
            padding: 0 !important;
        }

        .brand-title h1 {
            margin: 0 !important;
            line-height: 1.1;
            font-size: 40px;
            font-weight: 800;
            letter-spacing: 3px;
          
            animation: slideDown 1.2s ease forwards;
        }

        .brand-title p {
            margin-top: 6px !important;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 4px;
           
            opacity: 0;
            animation: fadeUp 1.2s ease forwards;
            animation-delay: 0.6s;
        }
        .header-wrap {
            align-items: center !important;
        }

        .main-header {
            min-height: unset !important;
            padding: 15px 0 !important;
        }

        /* Animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .brand-title p {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .brand-title p i {
            color: #007bff;
            font-size: 18px;
        }

        /* Cart badge animation */
        .icon-badge {
            animation: bounce 0.5s ease;
        }
        
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }
      
.user-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.icon-wrapper-with-pic {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
}

/* Fallback if image fails to load */
.user-profile-pic[src=""],
.user-profile-pic:not([src]) {
    display: none;
}

.user-profile-pic + i.fa-user {
    display: none;
}

.icon-wrapper-with-pic:has(.user-profile-pic[src=""]) i.fa-user,
.icon-wrapper-with-pic:has(.user-profile-pic:not([src])) i.fa-user {
    display: block;
    font-size: 20px;
    color: #666;
}
