/* Zirve Kokorec - Clean Design Reset */
:root {
    --primary-color: #000000;
    /* Black Accents */
    --secondary-color: #ffffff;
    /* White Text */
    --bg-color: #c62828;
    /* Red Background */
    --light-gray: #b71c1c;
    /* Darker Red */
    --border-color: #d32f2f;
    --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --text-color: #ffffff;
    --mobile-underline-left: 10%;
    --mobile-underline-width: 80%;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--secondary-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 1. TOP BAR */
/* 1. TOP BAR */
.top-bar {
    background-color: #000;
    /* Deep Black */
    padding: 12px 0;
    font-size: 14px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 2px solid #b71c1c;
    /* Subtle Red Line */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    margin-left: 20px;
    color: #ccc !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar .top-contacts a {
    margin-left: 0;
    margin-right: 20px;
    font-weight: 700;
    color: #fff !important;
}

.top-bar a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* 2. HEADER */
.header {
    background: var(--bg-color);
    /* Red */
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
    /* Black border */
    position: relative;
    z-index: 1000;
}

/* Page Title Overrides */
/* Page Title Overrides */
.page-title {
    padding: 30px 0 !important;
    text-align: center;
    position: relative;
}

.page-title h1 {
    color: #ffffff !important;
    background-color: var(--primary-color);
    /* Black Box */
    font-size: 3rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    border: 4px solid #ffffff;
    /* Thick Black Border */
    padding: 10px 40px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 1);
    /* Solid Black Shadow */
    transform: rotate(-2deg);
    /* Slight rotation for style */
    position: relative;
    z-index: 2;
}

.page-title p {
    color: #ffffff !important;
    /* White text on red bg */
    font-weight: 700;
    margin-top: 20px !important;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000;
    /* Shadow for readability */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: center;
    line-height: 1;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    /* White Text */
    margin: 0;
    text-transform: uppercase;
}

.logo span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
    /* Black text */
}

/* Search Bar - Clean */
.search-bar {
    flex: 1;
    margin: 0 50px;
    position: relative;
    max-width: 600px;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
}

.search-bar input:focus {
    border-color: var(--primary-color);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 38px;
    width: 38px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 25px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    position: relative;
}

.action-item i {
    font-size: 20px;
    margin-bottom: 4px;
    color: #333;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item:hover i {
    color: var(--primary-color);
}

/* 3. NAVIGATION */
.navbar {
    background: var(--primary-color);
    /* Black */
    border-bottom: 1px solid #333;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-list a {
    display: block;
    padding: 15px 0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    /* White Links */
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #c62828;
    /* Red underline */
    transition: 0.3s;
}

.nav-list a:hover {
    color: #c62828 !important;
}

.nav-list a:hover::after {
    width: 100%;
}

/* 4. HERO SECTION - MODERN DESIGN */
.hero-slider {
    height: 600px;
    background: #f4f4f4;
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(198, 40, 40, 0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content-box {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(198, 40, 40, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.6);
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #c62828;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 100;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    width: 40px;
    border-radius: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 5. SECTIONS - MODERN DESIGN */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title-left {
    text-align: left;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Global Product Grid */
/* Global Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /* Slightly wider for better horiz layout */
    gap: 30px;
    padding-top: 20px;
}

.product-card {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    /* Subtle depth */
    border: 1px solid #333;
    border-radius: 8px;
    /* Sharper corners for modern look */
    overflow: hidden;
    display: flex;
    flex-direction: row;
    height: 170px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    border-color: #f1c40f;
    /* Gold border on hover */
}

/* Image Section - Enlarge to 50% */
.product-img {
    width: 50%;
    /* Increased from 40% */
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Diagonal Slant Separator */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 2;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1) translateX(5px);
}

.product-info {
    width: 50%;
    /* Reduced from 60% */
    padding: 20px 15px 20px 5px;
    /* Adjust padding for new width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

/* Title */
.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    line-height: 1.2;
    border-bottom: 2px solid #d32f2f;
    /* Red accent line under title */
    padding-bottom: 5px;
    display: inline-block;
}

/* Price */
.price {
    display: block;
    font-size: 1.4rem;
    color: #f1c40f;
    /* Gold */
    font-weight: 800;
    margin-top: 8px;
    font-family: var(--font-heading);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Action Button - Removed as requested */
.add-to-cart {
    display: none !important;
}

/* SEARCH DROPDOWN STYLES */
.search-bar {
    position: relative;
    /* Ensure absolute children are relative to this */
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    /* Hidden by default */
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
}

.search-dropdown.active {
    display: block;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #333;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #f9f9f9;
}

.search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
    border: 1px solid #ddd;
}

.search-item-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.search-item-info span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* 6. CATEGORIES - MODERN CARDS */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cat-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
    color: white;
    transition: all 0.4s ease;
}

.cat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.cat-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.cat-overlay span {
    padding: 10px 25px;
    border: 2px solid white;
    font-weight: 700;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
}

.cat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cat-item:hover img {
    transform: scale(1.15);
}

.cat-item:hover .cat-overlay {
    background: linear-gradient(to top, rgba(198, 40, 40, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.cat-item:hover .cat-icon {
    opacity: 1;
    transform: translateY(0);
}

.cat-item:hover .cat-overlay h3 {
    transform: translateY(-10px);
}

.cat-item:hover .cat-overlay span {
    background: white;
    color: #c62828;
    transform: scale(1.05);
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 0;
    margin-top: -1px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 3rem;
    color: #c62828;
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ABOUT SECTION */
.about-section {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 4px solid #c62828;
}

.about-badge i {
    font-size: 2rem;
    color: #c62828;
    margin-bottom: 5px;
}

.about-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-content {
    color: white;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    color: #000;
    font-size: 1.2rem;
}

/* WHY US SECTION */
.why-us-section {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-us-icon i {
    font-size: 2rem;
    color: #c62828;
}

.why-us-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: #c62828;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: white;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* CTA SECTION */
.cta-section {
    background: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?q=80&w=2000') center/cover;
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(198, 40, 40, 0.7) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SCROLL ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* 7. FOOTER */
.footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 80px 0 30px;
}

.footer .container {
    max-width: 1400px;
    /* Wider footer container */
    padding: 0 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* Highlight Animation for Search Results */
@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
        border-color: #ffd700;
        transform: scale(1);
    }

    15% {
        transform: scale(1.08);
        /* Pop out bigger */
        box-shadow: 0 0 30px 10px rgba(255, 215, 0, 0.6);
        border-color: #ffd700;
        border-width: 2px;
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 50px 20px rgba(255, 215, 0, 0.4);
        border-color: #ffd700;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        border-color: #333;
        transform: scale(1);
        border-width: 1px;
    }
}

.highlight-card {
    animation: highlightPulse 3s ease-in-out;
    z-index: 50;
    position: relative;
    border: 2px solid #ffd700 !important;
    /* Force gold border during anim */
}



/* WhatsApp Badge */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    color: #ffffff !important;
}

.whatsapp-float:hover {
    background-color: #25d366;
    transform: scale(1.1);
    color: #ffffff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.footer a {
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media(max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar .top-contacts a {
        margin-right: 0;
    }

    .top-bar .top-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .top-bar a {
        margin-left: 0;
    }

    .header-inner {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Maximize Mobile Nav Width */
    .navbar .container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Mobile Navigation Fix - Fit All 5 Items Side by Side */
    .nav-list {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        overflow-x: visible;
        white-space: normal;
        padding: 5px 0;
        gap: 0;
    }

    .nav-list::-webkit-scrollbar {
        display: none;
    }

    .nav-list li {
        width: auto;
        border-bottom: none;
        flex: 1;
        text-align: center;
    }

    .nav-list a {
        display: block;
        /* Forced block to fill width */
        padding: 10px 0;
        width: 100%;
        font-size: 10.5px;
        font-weight: 700;
        background: transparent;
        border: none;
        border-radius: 0;
        position: relative;
    }

    /* Restore Red Underline Effect on Mobile */
    .nav-list a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: var(--mobile-underline-left);
        width: var(--mobile-underline-width);
        height: 3px;
        background: #ff0000;
        transition: 0.3s;
        transform-origin: center;
        transform: scaleX(0);
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }

    .nav-list a:hover::after,
    .nav-list a:active::after,
    .nav-list a:focus::after {
        transform: scaleX(1);
    }

    /* Ensure navbar background is black as per user wish "black part" */
    .navbar {
        background-color: var(--primary-color);
        /* Black */
        padding: 0;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer .container {
        padding: 0 20px;
    }

    .footer-col {
        width: 100%;
        min-width: auto;
    }

    .about-badge {
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cat-item {
        height: 300px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .search-bar {
        margin: 10px 0;
        width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Mobile Product Card Sizing */
    .product-card {
        height: 120px;
    }

    .product-info {
        padding: 8px 10px;
    }

    .product-info h3 {
        font-size: 0.95rem;
        margin-bottom: 2px;
        padding-bottom: 2px;
        border-bottom-width: 1px;
    }

    .price {
        font-size: 1.1rem;
        margin-top: 4px;
    }
}