/* Agricultural Equipment Website Styles */
:root {
    --primary-color: #1291C4;
    --primary-dark: #0a6b8f;
    --primary-light: #4db8e0;
    --primary-ultra-light: #e8f4f8;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --accent-light: #ff6b6b;
    --accent-dark: #c0392b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-subtle: #ecf0f1;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-elegant: 0 8px 32px rgba(18, 145, 196, 0.15);
    --shadow-primary: 0 10px 40px rgba(18, 145, 196, 0.2);
    
    /* Elegant Gradients */
    --gradient-primary: linear-gradient(135deg, #1291C4 0%, #0a6b8f 50%, #4db8e0 100%);
    --gradient-hero: linear-gradient(135deg, #1291C4 0%, #0a6b8f 35%, #1a5278 70%, rgba(232,244,248,0.15) 100%);
    --gradient-accent: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(232,244,248,0.8) 0%, rgba(248,249,250,0.9) 35%, rgba(18,145,196,0.05) 100%);
    --gradient-elegant: linear-gradient(135deg, #1291C4 0%, #4db8e0 50%, #e8f4f8 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8f4f8 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(18, 145, 196, 0.1), rgba(77, 184, 224, 0.05));
    --gradient-transition: linear-gradient(180deg, 
        rgba(18,145,196,0.1) 0%, 
        rgba(232,244,248,0.3) 20%, 
        rgba(248,249,250,0.5) 50%, 
        rgba(232,244,248,0.7) 80%, 
        rgba(18,145,196,0.05) 100%);
    
    /* Elegant Color Combinations */
    --color-scheme-1: #1291C4;
    --color-scheme-2: #1abc9c;
    --color-scheme-3: #9b59b6;
    --color-scheme-4: #3498db;
    --color-scheme-5: #e67e22;
    
    /* Enhanced Shadows */
    --shadow-soft: 0 4px 20px rgba(18, 145, 196, 0.08);
    --shadow-medium: 0 8px 30px rgba(18, 145, 196, 0.12);
    --shadow-strong: 0 12px 40px rgba(18, 145, 196, 0.16);
    --shadow-glow: 0 0 20px rgba(18, 145, 196, 0.2);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header Styles */
header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow-elegant);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--primary-ultra-light);
    transform: translateY(-1px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav li {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    min-width: fit-content;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s ease;
}

nav a:hover::before {
    left: 0;
}

nav a:hover {
    background-color: rgba(255,255,255,0.15);
    color: var(--primary-ultra-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

nav a.active {
    background-color: rgba(255,255,255,0.2);
    color: var(--primary-ultra-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    border-radius: 1px;
}

nav a.active::before {
    left: 0;
    background: rgba(255,255,255,0.2);
}

/* Ensure smooth transitions for active state changes */
nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    min-width: fit-content;
}

/* Fix alignment issues with navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 8rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(232,244,248,0.95) 0%, 
        rgba(232,244,248,0.7) 30%, 
        rgba(232,244,248,0.4) 60%, 
        rgba(232,244,248,0.2) 85%, 
        transparent 100%);
    z-index: 1;
    border-radius: 50% 50% 0 0 / 20px 20px 0 0;
}

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

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero-header {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.company-name {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #e8f4f8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.5px;
}

.company-brand {
    font-size: 2rem;
    font-weight: 300;
    margin: 1.2rem 0 0 0;
    opacity: 0.95;
    background: linear-gradient(45deg, #e8f4f8, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    letter-spacing: 0.5px;
}

.hero-description {
    margin: 2.5rem 0;
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
    color: var(--primary-ultra-light);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin: 3.5rem 0;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2.2rem 1.8rem;
    background: rgba(255,255,255,0.12);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(18, 145, 196, 0.1), rgba(77, 184, 224, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 20px 40px rgba(18, 145, 196, 0.25);
    border-color: rgba(255,255,255,0.4);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #e8f4f8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.9;
    font-weight: 600;
    color: var(--primary-ultra-light);
}

.hero-actions {
    display: flex;
    gap: 1.8rem;
    margin-top: 2.8rem;
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1.4rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero.btn-primary {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.35);
}

.btn-hero.btn-primary:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.45);
}

.btn-hero.btn-outline {
    background: rgba(255,255,255,0.12);
    color: white;
    border-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
}

.btn-hero.btn-outline:hover {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.35);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.2rem;
    margin-top: 3.5rem;
    animation: fadeInUp 1s ease 1s;
    animation-fill-mode: both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 2.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(18, 145, 196, 0.1), rgba(77, 184, 224, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(18, 145, 196, 0.25);
    border-color: rgba(255,255,255,0.4);
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.feature-text h4 {
    margin: 0 0 0.6rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
}

.feature-text p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--primary-ultra-light);
}

/* Company Info Section */
.company-info {
    padding: 6rem 0;
    background: var(--gradient-subtle);
    position: relative;
    margin-top: -100px;
    padding-top: 8rem;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(232,244,248,0.95) 0%,
        rgba(248,249,250,0.9) 30%,
        rgba(232,244,248,0.8) 60%,
        rgba(248,249,250,0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(18, 145, 196, 0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.8;
    z-index: 0;
}

.company-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom,
        rgba(232,244,248,0.8) 0%,
        rgba(248,249,250,0.6) 50%,
        transparent 100%);
    z-index: 1;
    animation: subtleFloat 6s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.company-info h2 {
    text-align: center;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4rem;
    font-size: 3.2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.company-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.company-image-container {
    position: relative;
    group: hover;
}

.company-about-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 25px;
    box-shadow: var(--shadow-primary);
    border: 6px solid white;
    transition: all 0.4s ease;
}

.company-image-container:hover .company-about-image {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 60px rgba(18, 145, 196, 0.3);
}

.company-image-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(18, 145, 196, 0.3);
    border: 3px solid white;
    animation: pulse 2s infinite;
}

.company-image-placeholder {
    width: 320px;
    height: 320px;
    background: var(--gradient-elegant);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 6px solid white;
    box-shadow: var(--shadow-elegant);
}

.placeholder-icon {
    font-size: 4.5rem;
    margin-bottom: 1.2rem;
    opacity: 0.6;
    color: var(--primary-color);
}

.company-text {
    padding: 2.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-elegant);
    border: 1px solid rgba(18, 145, 196, 0.1);
}

.company-text h3 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.8rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.company-text p {
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.company-features {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.company-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem;
    background: var(--bg-subtle);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 145, 196, 0.1);
}

.company-feature:hover {
    background: var(--gradient-subtle);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(18, 145, 196, 0.15);
    border-color: rgba(18, 145, 196, 0.2);
}

.company-feature .feature-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin: 0 0 0.4rem 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.feature-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.company-details {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-elegant);
    border: 1px solid rgba(18, 145, 196, 0.1);
    height: fit-content;
}

.company-details h4 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.company-details p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

.company-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Product Categories */
.categories-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(18, 145, 196, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.categories-section h2 {
    text-align: center;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4rem;
    font-size: 3.2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.category-tab {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(18, 145, 196, 0.1);
}

.category-tab:hover,
.category-tab.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 145, 196, 0.25);
}

/* Products Grid - Enhanced for Better Image Display */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(18, 145, 196, 0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(18, 145, 196, 0.05), rgba(77, 184, 224, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-primary);
    border-color: rgba(18, 145, 196, 0.2);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gradient-subtle);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 145, 196, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-info {
    padding: 2rem;
    background: white;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--primary-color);
}

.product-brand-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.product-brand {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-brand::before {
    font-size: 1rem;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-category {
    background: var(--gradient-subtle);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Category Section Styling */
.category-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.category-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: var(--gradient-subtle);
    padding: 1rem 2rem;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(18, 145, 196, 0.1);
}

/* Scrollable Products - Enhanced for Better Image Display */
.scrollable-products {
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.scrollable-products::-webkit-scrollbar {
    height: 10px;
}

.scrollable-products::-webkit-scrollbar-track {
    background: var(--bg-subtle);
    border-radius: 15px;
    border: 1px solid rgba(18, 145, 196, 0.1);
}

.scrollable-products::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 15px;
    border: 2px solid white;
}

.scrollable-products::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.scrollable-grid {
    display: flex;
    gap: 2rem;
    min-width: max-content;
    padding: 0 1rem;
}

.scrollable-grid .product-card {
    min-width: 300px;
    max-width: 300px;
}

.scrollable-grid .product-image {
    height: 220px;
}

.scrollable-grid .product-info {
    padding: 1.5rem;
}

.scrollable-grid .product-name {
    font-size: 1.2rem;
}

.scrollable-grid .product-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 3.2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #ffffff, #e8f4f8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255,255,255,0.12);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-ultra-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(18, 145, 196, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.btn {
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 8px 25px rgba(18, 145, 196, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0a6b8f, #1291C4);
    box-shadow: 0 12px 35px rgba(18, 145, 196, 0.4);
}

.product-image-container:hover img {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: 16px;
    border: 2px dashed var(--border-color);
}

.product-image-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.product-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.product-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.product-brand-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-specifications {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-top: 3rem;
    border: 1px solid rgba(18, 145, 196, 0.1);
}

.product-specifications h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.specifications-content {
    background: var(--gradient-subtle);
    padding: 2rem;
    border-radius: 12px;
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-dark);
    border: 1px solid rgba(18, 145, 196, 0.1);
}

.product-certifications {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-top: 3rem;
    border: 1px solid rgba(18, 145, 196, 0.1);
}

.product-certifications h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.certificates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.certificate-item {
    text-align: center;
}

.certificate-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.certificate-item img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.certificate-item img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.related-products-section {
    margin-top: 3rem;
}

.related-products-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.6;
}

/* Enhanced Button Styles */
.btn {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn.btn-accent {
    background: var(--gradient-accent);
}

.btn.btn-accent:hover {
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

footer p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-ultra-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero {
        padding: 6rem 0 4rem 0;
    }
    
    .hero::after {
        height: 150px;
        background: linear-gradient(to top, 
            rgba(232,244,248,0.9) 0%, 
            rgba(232,244,248,0.6) 40%, 
            rgba(232,244,248,0.3) 70%, 
            transparent 100%);
    }
    
    .company-info {
        margin-top: -50px;
        padding-top: 6rem;
    }
    
    .company-info::after {
        height: 100px;
        animation: none; /* Disable floating animation on mobile for better performance */
    }
    
    .hero-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-header {
        margin-bottom: 1.5rem;
    }
    
    .company-name {
        font-size: 2.8rem;
    }
    
    .company-brand {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 2rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        min-width: auto;
        padding: 1.5rem 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-visual {
        order: -1;
    }
    
    .company-image-container,
    .company-image-placeholder {
        max-width: 250px;
    }
    
    .company-text {
        padding: 1.5rem;
    }
    
    .company-text h3 {
        font-size: 1.6rem;
    }
    
    .company-details {
        padding: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    /* Product Detail Page Responsive */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .product-image-container img {
        max-height: 350px;
    }
    
    .product-image-placeholder {
        height: 250px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-brand-title {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .product-actions {
        justify-content: center;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certificate-item img {
        max-height: 200px;
    }
    
    .specifications-content {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .product-specifications,
    .product-certifications {
        padding: 1.5rem;
    }
    
    .product-specifications h2,
    .product-certifications h2 {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .company-name {
        font-size: 2.2rem;
    }
    
    .company-brand {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .product-detail-container {
        border-radius: 15px;
    }
    
    .product-detail-grid {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-category-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Admin Styles */
.admin-header {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 0;
}

.admin-nav {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
}

.admin-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
}

.admin-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--primary-color);
    color: white;
}

.admin-content {
    padding: 2rem;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

/* Enhanced Admin Text Visibility */
.admin-content h1,
.admin-content h2,
.admin-content h3,
.admin-content h4,
.admin-content h5,
.admin-content h6 {
    color: #2c3e50 !important;
    font-weight: 600;
}

.admin-content p,
.admin-content label,
.admin-content span,
.admin-content div {
    color: #34495e !important;
}

.admin-content .form-group label {
    color: #2c3e50 !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.admin-content button,
.admin-content .btn {
    background: var(--primary-color) !important;
    color: white !important;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-content button:hover,
.admin-content .btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(18, 145, 196, 0.3);
}

.admin-content .btn-primary {
    background: var(--primary-color) !important;
}

.admin-content .btn-outline {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.admin-content .btn-outline:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Enhanced Form Elements */
.admin-content input,
.admin-content textarea,
.admin-content select {
    background: white !important;
    color: #2c3e50 !important;
    border: 1px solid #ddd !important;
    padding: 0.8rem !important;
    border-radius: 5px !important;
    font-size: 1rem !important;
    width: 100% !important;
}

.admin-content input:focus,
.admin-content textarea:focus,
.admin-content select:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(18, 145, 196, 0.2) !important;
}

.admin-content .form-group {
    margin-bottom: 1.5rem;
}

/* Admin Table Styles */
.admin-content table {
    background: white !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-content th {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 1rem !important;
    text-align: left;
    font-weight: 600;
}

.admin-content td {
    color: #2c3e50 !important;
    padding: 1rem !important;
    border-bottom: 1px solid #eee;
}

.admin-content tr:hover {
    background: #f8f9fa !important;
}

/* Alert Messages */
.admin-content .alert {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.admin-content .alert-success {
    background: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb;
}

.admin-content .alert-error {
    background: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.table tr:hover {
    background: var(--bg-light);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

.btn-edit {
    background: var(--primary-color);
    margin-right: 0.5rem;
}

.btn-delete {
    background: var(--accent-color);
}

.btn-edit:hover {
    background: var(--primary-dark);
}

.btn-delete:hover {
    background: #c0392b;
}

/* Search and Filter Styles */
.search-input {
    width: 100% !important;
    padding: 0.8rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    background: white !important;
    color: var(--text-dark) !important;
    transition: all 0.3s ease !important;
}

.search-input:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(18, 145, 196, 0.1) !important;
}

.category-select {
    width: 100% !important;
    padding: 0.8rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    background: white !important;
    color: var(--text-dark) !important;
    transition: all 0.3s ease !important;
}

.category-select:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(18, 145, 196, 0.1) !important;
}

/* Ensure form inputs are not disabled */
.search-input:disabled,
.category-select:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Remove any conflicting styles */
.search-input[readonly],
.category-select[readonly] {
    background: var(--bg-light) !important;
}

/* Form row layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Force input accessibility */
#search {
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    background: white !important;
    color: black !important;
    border: 1px solid #ccc !important;
    padding: 0.8rem !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#search:focus {
    outline: 2px solid #007bff !important;
    outline-offset: 2px !important;
    border-color: #007bff !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25) !important;
}

/* Remove any potential overlays */
.product-detail-container::before,
.product-detail-container::after,
.form-group::before,
.form-group::after {
    display: none !important;
}

/* Ensure no element covers the input */
* {
    pointer-events: auto !important;
}

#search,
#search *,
input[type="text"],
input[type="text"] * {
    pointer-events: auto !important;
    user-select: text !important;
}





