/* ==========================================================================
   FITBULLS PREMIUM HEADER - STYLE SYSTEM (RED, BLACK, WHITE)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;700&display=swap');

:root {
    /* Colors from the uploaded logo */
    --color-red: #cc1b21;       /* Prominent Red from shield */
    --color-black: #111111;     /* Black from bull */
    --color-white: #ffffff;
    --color-gray: #f5f5f5;
    --color-text: #222222;
    --color-text-light: #555555;
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; color: inherit; }

/* ==========================================================================
   TOP MARQUEE
   ========================================================================== */
.top-marquee {
    background-color: var(--color-black);
    color: var(--color-white);
    height: 35px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    padding: 0 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls first span out, second seamlessly follows */
}

.top-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* ==========================================================================
   HEADER MAIN
   ========================================================================== */
.site-header {
    width: 100%;
    background-color: var(--color-white);
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 130px; /* Increased to accommodate larger logos */
    display: flex;
    justify-content: flex-start;
    gap: 0; /* Reduced further per user request */
    align-items: center;
}

/* Logo */
.header-logo-container {
    display: flex;
    align-items: center;
    gap: 40px; /* Increased to prevent balloon overlap with logo */
}
.header-logo {
    display: flex;
    align-items: center;
}
@keyframes celebrate-anim {
    0%, 100% { transform: scale(1) translateY(0); color: #000; }
    50% { transform: scale(1.08) translateY(-2px); color: var(--color-red); }
}
.header-tagline {
    font-style: italic;
    font-weight: 900;
    color: #000;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
    animation: celebrate-anim 2s infinite ease-in-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Flying Balloons Animation */
@keyframes fly-up {
    0% { transform: translateY(20px) scale(0.5); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-50px) scale(1); opacity: 0; }
}

.balloon-realistic {
    width: 20px;
    height: 28px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    position: absolute;
    box-shadow: inset -3px -3px 8px rgba(0,0,0,0.3);
    pointer-events: none;
    opacity: 0;
}
/* The realistic specular reflection (shine) */
.balloon-realistic::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    transform: rotate(20deg);
}
/* The knot */
.balloon-realistic::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 5px solid inherit; /* Will match parent's color roughly */
}
/* The floating string */
.balloon-realistic span.string {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 1px;
    height: 20px;
    background: rgba(0,0,0,0.3);
}

/* Colors */
.color-red { background: #cc1b21; border-bottom-color: #8c1015; }
.color-red::before { border-bottom-color: #8c1015; }
.color-gold { background: #f59e0b; border-bottom-color: #b45309; }
.color-gold::before { border-bottom-color: #b45309; }
.color-blue { background: #3b82f6; border-bottom-color: #1d4ed8; }
.color-blue::before { border-bottom-color: #1d4ed8; }
.color-green { background: #10b981; border-bottom-color: #047857; }
.color-green::before { border-bottom-color: #047857; }

/* Positioning and Animation Assignments */
.b1 { left: -30px; bottom: -5px; animation: fly-up 3s infinite ease-in; }
.b2 { left: -10px; bottom: -10px; animation: fly-up 2.5s infinite ease-in 1.2s; transform: scale(0.8); }
.b3 { right: -30px; bottom: -5px; animation: fly-up 3.5s infinite ease-in 0.5s; }
.b4 { right: -10px; bottom: -10px; animation: fly-up 2.8s infinite ease-in 1.8s; transform: scale(0.8); }

.brand-logo {
    height: 115px; /* Increased further */
    width: auto;
    max-width: 100%;
    display: block;
}

.brand-logo-mobile {
    height: 95px; /* Increased further per user request */
    width: auto;
    max-width: 100%;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    padding-left: 20px; /* Reduced to shift menu towards logo */
    padding-right: 15px; /* Reduced gap */
}

.nav-menu {
    display: flex;
    gap: 10px; /* Slightly reduced gap between menu items to fit everything */
    align-items: center;
    height: 100%;
}

.menu-item {
    height: 100px; /* Match header height for hover target */
    display: flex;
    align-items: center;
}

.menu-item > a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
}

.menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s ease;
}

.menu-item:hover > a {
    color: var(--color-red);
}

.menu-item:hover > a::after {
    width: 100%;
}

.chevron {
    margin-top: 1px;
    transition: transform 0.3s ease;
}

.menu-item:hover .chevron {
    transform: rotate(180deg);
}

/* ==========================================================================
   MEGA MENU (CARDIO)
   ========================================================================== */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100px; /* Below header */
    left: 0;
    transform: translateY(10px);
    width: 320px;
    background-color: var(--color-white);
    border-top: 2px solid var(--color-red);
    box-shadow: var(--shadow-soft);
    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Hover Bridge */
.has-mega-menu::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-container {
    padding: 25px;
}

.mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: block;
    position: relative;
}

.mega-link::before {
    content: '•';
    color: var(--color-red);
    position: absolute;
    left: -5px;
    opacity: 0;
    transition: all 0.2s ease;
}

.mega-link:hover {
    color: var(--color-black);
    background-color: var(--color-gray);
    padding-left: 20px;
}

.mega-link:hover::before {
    opacity: 1;
    left: 8px;
}

/* ==========================================================================
   ICONS RIGHT
   ========================================================================== */
.header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-left: 0px;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
    color: var(--color-red);
    transform: translateY(-2px);
}

/* ==========================================================================
   MOBILE MENU STYLES
   ========================================================================== */
.mobile-menu-toggle {
    display: none; /* hidden on desktop */
    color: var(--color-black);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.close-mobile-menu {
    position: absolute;
    right: 20px;
    color: var(--color-black);
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-body {
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav > li > a, .mobile-accordion-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-accordion-btn .chevron {
    transition: transform 0.3s ease;
}
.mobile-accordion-btn[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-subnav {
    padding: 10px 0 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-subnav a {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ==========================================================================
   RESPONSIVE (MOBILE VIEW)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .desktop-nav { display: none; }
    .header-logo-container { justify-content: center; flex: 2; text-align: center; }
    .header-tagline { font-size: 15px; }
    .mobile-menu-toggle { display: block; flex: 1; text-align: left; background: none; border: none; padding: 0; }
    .header-actions { flex: 1; display: flex; justify-content: flex-end; }
    .hide-mobile { display: none; }
    .header-inner { padding: 0 20px; }
}

/* ==========================================================================
   HERO SECTION (VIDEO BACKGROUND)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 135px); /* Full viewport minus header/marquee */
    min-height: 650px;
    overflow: hidden;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

/* Halftone dot pattern on the right side */
.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(var(--color-red) 2.5px, transparent 2.5px);
    background-size: 15px 15px;
    opacity: 0.6;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    line-height: 0.85; /* Very tight line height as per design */
}

.hero-subtext {
    font-family: var(--font-main);
    color: var(--color-white);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 2px;
}

.hero-maintext {
    font-family: var(--font-heading);
    color: var(--color-red);
    font-size: 130px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -2px; 
    transform: scaleY(1.1); /* Slight vertical stretch for that bold gym look */
    transform-origin: left;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Responsive adjustments for Hero */
@media screen and (max-width: 1280px) {
    .hero-maintext { font-size: 100px; }
    .hero-subtext { font-size: 22px; }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 100px);
        min-height: 500px;
    }
    .hero-content { padding: 0 20px; gap: 20px; }
    .hero-maintext { font-size: 70px; letter-spacing: -1px; transform: scaleY(1); }
    .hero-subtext { font-size: 18px; }
    .hero-pattern { 
        width: 100%; 
        -webkit-mask-image: radial-gradient(circle at center right, black 0%, transparent 80%); 
        opacity: 0.3;
    }
    .hero-overlay { background: rgba(0,0,0,0.75); }
}

@media screen and (max-width: 480px) {
    .hero-maintext { font-size: 55px; }
    .hero-subtext { font-size: 15px; }
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================================================
   INTRO TEXT SECTION
   ========================================================================== */
.intro-section {
    padding: 80px 0 60px;
    background-color: var(--color-white);
}

.intro-text {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================================================
   CATEGORIES GRID SECTION
   ========================================================================== */
.categories-section {
    padding: 0 0 80px;
    background-color: var(--color-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background-color: var(--color-black);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.card-image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

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

.card-content {
    padding: 20px;
    background-color: var(--color-black);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-content h3 {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.view-more-btn {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .intro-text {
        font-size: 14px;
        text-align: left;
    }
}

/* ==========================================================================
   CIRCULAR CATEGORY NAVIGATION
   ========================================================================== */
.circle-categories-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.circle-categories-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    scrollbar-width: none; /* Firefox */
}

.circle-categories-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.circle-cat-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    text-decoration: none;
    color: var(--color-black);
}

.circle-cat-image {
    width: 100%;
    max-width: 130px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid var(--color-red);
    padding: 6px;
    position: relative;
    transition: all 0.4s ease;
    background: var(--color-white);
    box-sizing: border-box;
    margin: 0 auto;
}

/* Premium pulse animation on hover (Zoom out to prevent cutoff) */
.circle-cat-link:hover .circle-cat-image {
    border-width: 4px;
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(204, 27, 33, 0.2);
}

.circle-cat-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.circle-cat-text {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.circle-cat-link:hover .circle-cat-text {
    color: var(--color-red);
}

/* ==========================================================================
   PRODUCT SHOWCASE SLIDERS
   ========================================================================== */
.product-showcase {
    padding: 40px 0;
    background-color: var(--color-white);
}

.section-title {
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-black);
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background-color: var(--color-red);
}

.product-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 260px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f39c12; /* Orange sale badge as per image */
    color: #fff;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.product-image-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.add-to-cart-btn {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 10px 15px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    white-space: normal;
}

.product-card:hover .add-to-cart-btn {
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: var(--color-red);
}

.product-info {
    padding: 20px 10px;
    text-align: left;
}

.product-name {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-black);
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 16px;
    width: 100%;
    min-width: 0;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    max-width: 100%;
    white-space: nowrap;
}

.new-price {
    color: var(--color-black);
    font-weight: 700;
    max-width: 100%;
    white-space: nowrap;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active, .slider-dots .dot:hover {
    background: var(--color-red);
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.trust-badges-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
    background: var(--color-white);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth bounce effect */
    border: 1px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    background: #fff;
}

.trust-badge svg {
    color: var(--color-black);
    transition: all 0.4s ease;
}

.trust-badge:hover svg {
    color: var(--color-red);
    transform: scale(1.2);
}

.trust-badge h4 {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.trust-badge:hover h4 {
    color: var(--color-red);
}

.trust-badge p {
    font-family: var(--font-main);
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR NEW SECTIONS
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media screen and (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
    .circle-cat-image {
        max-width: 100px;
    }
    .circle-cat-link {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .product-overlay {
        display: none !important;
    }
    .product-price {
        width: 100%;
        min-width: 0;
        gap: 5px;
    }
    .old-price, .new-price {
        max-width: 100%;
        white-space: nowrap; /* PREVENT CLIPPING / BREAKING INTO PIECES */
    }
    .new-price {
        font-size: clamp(12px, 4.5vw, 15px);
    }
    .old-price {
        font-size: clamp(10px, 4vw, 13px);
    }
}

@media screen and (max-width: 480px) {
    .product-card {
        flex: 0 0 calc(85% - 20px);
    }
    .trust-badge {
        flex: 0 0 calc(85% - 20px);
    }
    .circle-cat-image {
        max-width: 85px;
        padding: 4px;
        border-width: 2px;
    }
    .circle-cat-text {
        font-size: 11px;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
}

/* ==========================================================================
   CATEGORY PAGES
   ========================================================================== */
.category-page {
    padding-top: 50px;
    background-color: var(--color-white);
}

.category-intro {
    padding: 0 0 30px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
}

.category-subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin: 30px 0 15px;
}

.category-desc {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Category Toolbar */
.category-toolbar {
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Header Actions (Search, Account, Cart) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto; /* Pushes the icons to the far right */
    flex-shrink: 0; /* Ensures icons are never cut off on small screens */
}

.toolbar-left, .toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    font-family: var(--font-main);
    font-size: 14px;
    color: #666;
}

.filter-select {
    font-family: var(--font-main);
    font-size: 14px;
    padding: 5px 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-black);
    font-weight: 500;
}

.filter-select:focus {
    outline: none;
}

.product-count {
    font-family: var(--font-main);
    font-size: 14px;
    color: #666;
    margin-left: 20px;
}

/* Category Product Grid (4 columns instead of horizontal scroll) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    padding-bottom: 60px;
}

/* The .product-card is reused from style.css, so it will automatically pick up the hover effects */
.category-grid .product-card {
    /* override flex properties from slider */
    flex: none;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .category-title {
        font-size: 26px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .toolbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    .product-count {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #111;
    color: #f1f1f1;
    padding: 60px 0 0;
    font-family: var(--font-main);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 60px;
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 120px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

.footer-contact-info h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-contact-info p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--color-red);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--color-red);
    transform: translateY(-3px);
}

.footer-social-item:hover {
    color: var(--color-red) !important;
}

.footer-social-item:hover .social-icon-circle {
    background: var(--color-red) !important;
    transform: translateY(-2px);
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-red);
    transform: translateX(5px);
}

.footer-text {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-highlight {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-highlight a {
    color: #fff;
    text-decoration: none;
}

.footer-highlight a:hover {
    color: var(--color-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding: 20px 0;
}

.footer-bottom .footer-container {
    display: block;
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   PRODUCT DETAILS PAGE
   ========================================================================== */
.product-page {
    padding: 60px 0;
    background: #fff;
}

.product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-image-wrap {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}
.main-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.thumbnail {
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 5px;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.3s;
}
.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}
.thumbnail.active, .thumbnail:hover {
    border-color: var(--color-red);
}

/* Info Panel */
.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-main-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-black);
    margin: 0;
}
.product-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
}
.stars {
    color: #f1c40f;
    font-size: 18px;
}
.review-count {
    color: var(--color-text-light);
    font-size: 14px;
}
.product-price-large {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}
.product-price-large .new-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-red);
}
.product-price-large .old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}
.product-price-large .tax-info {
    font-size: 13px;
    color: #666;
}
.product-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: #444;
}
.product-meta li {
    margin-bottom: 8px;
}
.product-meta .out-of-stock {
    color: var(--color-red);
    font-weight: 600;
}
.product-meta .in-stock {
    color: #27ae60;
    font-weight: 600;
}

/* Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 120px;
    height: 45px;
}
.qty-btn {
    flex: 1;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}
.quantity-selector input {
    flex: 1;
    width: 100%;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
}
.buy-now-btn, .sold-out-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}
.buy-now-btn {
    background: #27ae60; /* Green buy button as per image */
    color: #fff;
    border: none;
}
.sold-out-btn {
    background: #7f8c8d;
    color: #fff;
    border: none;
    cursor: not-allowed;
}
.emi-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--color-black);
    background: transparent;
    color: var(--color-black);
    font-weight: 700;
    text-transform: uppercase;
}

/* Trust Icons */
.trust-icons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}
.trust-item img {
    width: 30px;
    height: 30px;
}

/* Tabs */
.product-tabs-wrapper {
    margin-top: 80px;
}
.product-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    border-bottom: 2px solid #eee;
}
.tab-link {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    position: relative;
}
.tab-link.active {
    color: var(--color-black);
}
.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-red);
}
.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}
.tab-content.active {
    display: block;
}

/* Tab Content Styling */
.video-container {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}
.section-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
}
.subsection-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 40px 0 20px;
}
.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.feature-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}
.feature-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}
.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-black);
}
.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.specs-table th, .specs-table td {
    padding: 15px 20px;
    border: 1px solid #eee;
    text-align: left;
}
.specs-table th {
    background: #f9f9f9;
    font-weight: 600;
    width: 30%;
    color: var(--color-black);
}
.specs-table td {
    color: #555;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    font-size: 24px;
    color: var(--color-red);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .product-top {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .product-tabs {
        flex-direction: column;
    }
    .tab-link {
        border-bottom: 1px solid #eee;
    }
    .tab-link.active::after {
        display: none;
    }
    .tab-link.active {
        background: #f9f9f9;
        border-left: 3px solid var(--color-red);
    }
}

/* Header Badges */
.icon-badge-container {
    position: relative;
}
.icon-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--color-red);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Toast Notifications */
.fitbulls-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #111;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.fitbulls-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.fitbulls-toast.cart {
    background: #27ae60;
}
.fitbulls-toast.fav {
    background: var(--color-red);
}


/* Inquiry Popup Modal */
.inquiry-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; padding: 15px; box-sizing: border-box; }
.inquiry-overlay.active { opacity: 1; pointer-events: all; }
.inquiry-modal { background: #fff; width: 100%; max-width: 500px; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); overflow: hidden; transform: translateY(30px); transition: transform 0.4s; position: relative; max-height: 90vh; display: flex; flex-direction: column; box-sizing: border-box; margin: 0 auto; }
.inquiry-overlay.active .inquiry-modal { transform: translateY(0); }
.inquiry-header { background: var(--color-black); color: #fff; padding: 20px; text-align: center; position: relative; flex-shrink: 0; }
.inquiry-header h3 { font-family: var(--font-heading); margin: 0; font-size: 24px; color: var(--color-red); text-transform: uppercase; letter-spacing: 1px; }
.inquiry-header p { margin: 5px 0 0; font-size: 13px; color: #ccc; }
.inquiry-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; transition: transform 0.3s; }
.inquiry-close:hover { transform: scale(1.2); color: var(--color-red); }
.inquiry-body { padding: 25px; overflow-y: auto; }
.inquiry-form-group { margin-bottom: 15px; }
.inquiry-form-group label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 5px; }
.inquiry-form-group input, .inquiry-form-group select, .inquiry-form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-main); font-size: 14px; transition: border-color 0.3s; }
.inquiry-form-group input:focus, .inquiry-form-group select:focus, .inquiry-form-group textarea:focus { border-color: var(--color-red); outline: none; }
.inquiry-row { display: flex; gap: 15px; }
.inquiry-row .inquiry-form-group { flex: 1; }
@media (max-width: 480px) { .inquiry-row { flex-direction: column; gap: 0; } }
.inquiry-submit { width: 100%; padding: 15px; background: var(--color-red); color: #fff; border: none; border-radius: 6px; font-size: 16px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: background 0.3s; margin-top: 10px; }
.inquiry-submit:hover { background: #a0151a; }

/* Favorite Heart Button & Animation */
.favorite-heart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    transition: transform 0.2s, background 0.2s;
    color: #ccc;
}
.favorite-heart-btn:hover {
    transform: scale(1.1);
}
.favorite-heart-btn.active svg {
    fill: #cc1b21;
    color: #cc1b21;
}
.favorite-heart-btn svg {
    transition: fill 0.3s, color 0.3s;
}
