:root {
    --primary: #239BD1;
    --primary-hover: #239BD1;
    --secondary: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Global Icon Fix */
svg[data-lucide],
i[data-lucide] {
    display: inline-block !important;
    vertical-align: middle;
    stroke: currentColor;
    fill: none;
    width: 20px;
    height: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

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

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-sidebar {
    display: none;
}

.mobile-only {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

.phone-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-link [data-lucide] {
    width: 24px !important;
    height: 24px !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.blob-left {
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
}

.blob-right {
    top: 10%;
    right: -200px;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    top: 0px;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    top: 50px;
}

.hero-image img {
    width: 100%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
    transform: scale(1.1);
    position: relative;
    left: 190px;
}

/* Tyre Finder Form */
.finder-card {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.finder-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

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

.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
    font-size: 1rem;
}

/* Trust Icons */
.trust-row {
    background: var(--bg-light);
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.trust-item [data-lucide] {
    width: 50px !important;
    height: 50px !important;
    color: var(--primary);
}

/* How It Works */
.how-it-works {
    text-align: center;
    background: var(--bg-white);
    padding: 60px 0;
}

.how-it-works .section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-visual {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
}

.step-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.step-circle [data-lucide] {
    width: 90px !important;
    height: 90px !important;
    color: var(--primary);
    stroke-width: 1.5;
}

.step-card:hover .step-circle {
    border-color: var(--primary);
    transform: scale(1.05);
    background: white;
}

.step-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
}

.step-card h4 {
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Connectors */
.step-connector {
    position: absolute;
    top: 90px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 110px;
    z-index: 1;
}

.connector-line {
    width: 45px;
    height: 2px;
    border-top: 2px dotted #ccc;
    position: relative;
}

.connector-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -5px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-top: 2px solid #999;
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .step-connector {
        display: none;
    }
}

/* Products */
.products-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.products-title hspan {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.products-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.product-grid-wrapper {
    position: relative;
    padding: 0 40px;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--secondary);
    cursor: pointer;
    border: 1px solid #eee;
    z-index: 100;
    transition: var(--transition);
}

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

.slider-btn.prev {
    left: -20px;
}

.slider-btn.next {
    right: -20px;
}

.swiper {
    width: 100%;
    padding: 20px 0 40px;
}

.product-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    width: 100%;
}

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

.wishlist-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--secondary);
    cursor: pointer;
    z-index: 10;
}

.product-img-wrapper {
    height: 220px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-card h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.product-cat {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.product-size {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.btn-view-details {
    width: 100%;
    padding: 8px 14px;
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

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

.btn-view-details i {
    width: 14px;
    height: 14px;
}

/* Industries */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.industry-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.industry-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-card:hover .industry-img-box img {
    transform: scale(1.05);
}

.industry-badge {
    position: absolute;
    bottom: 6px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
    z-index: 5;
}

.industry-badge [data-lucide] {
    width: 28px !important;
    height: 28px !important;
}

.industry-content {
    padding: 35px 20px 25px;
}

.industry-content h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.industry-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.brands-section h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    color: #111;
}

.brand-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.brand-item {
    background: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.brand-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-item img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

/* Why Choose Us Card */
.why-choose-card {
    background: white;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
    margin: 60px 0;
    border: 1px solid #f1f5f9;
}

.why-card-img {
    flex: 0 0 35%;
    position: relative;
    background: #f8fafc;
}

.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-card-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 2rem;
}

.why-card-header hspan {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.why-card-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
}

.feature-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

.small-feature {
    display: flex;
    gap: 1.25rem;
}

.small-feature-icon {
    color: var(--primary);
    background: #fff7ed;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.small-feature-icon [data-lucide] {
    width: 28px !important;
    height: 28px !important;
}

.small-feature-text h4 {
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.small-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA Bar */
.cta-bar {
    background: white;
    border-radius: 20px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 80px;
    border: 1px solid #f1f5f9;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.cta-tyre-img {
    width: 120px;
    height: auto;
}

.cta-text h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Footer */
.main-footer {
    background: #ffffff;
    padding: 80px 0 20px;
    border-top: 1px solid #f1f5f9;
    position: relative;
    z-index: 1500;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-about .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 1.8rem;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: var(--transition);
}

.social-links a i {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 800;
    color: #111;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    gap: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem !important;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.footer-bottom-container a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Product Categories */
.category-section {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.category-subtitle {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.category-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.category-section h2 span {
    color: var(--primary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.category-card {
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cat-top {
    padding: 30px 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-bottom {
    padding: 10px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.cat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cat-name {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-line {
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.cat-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f8fafc;
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: var(--transition);
}

.category-card:hover .cat-img-box img {
    transform: scale(1.1);
}

.cat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
    min-height: 45px;
}

.btn-cat {
    background: transparent;
    border: 1px solid #ffbc8d;
    color: var(--primary);
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: auto;
}

.category-card:hover .btn-cat {
    background: var(--primary);
    color: white;
}

/* Features Row */
.features-row {
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.feature-item [data-lucide] {
    color: #1a202c;
    width: 40px !important;
    height: 40px !important;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Help CTA Bar */
.help-cta-bar {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 5rem;
    border: 1px solid #f1f5f9;
}

.help-tyre {
    flex: 0 0 150px;
}

.help-tyre img {
    width: 100%;
}

.help-text {
    flex: 1;
}

.help-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.help-text p {
    color: var(--text-muted);
}

.help-btns {
    display: flex;
    gap: 1rem;
}

.btn-whatsapp {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1a202c;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

/* Full Banner */
.full-banner-section {
    width: 100%;
    margin: 60px 0;
    overflow: hidden;
    position: relative;
}

.full-banner-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Localized Smoke Effect */
.smoke-emitter {
    position: absolute;
    bottom: 20%;
    /* Adjust based on tyre position */
    width: 120px;
    height: 60px;
    pointer-events: none;
    z-index: 2;
}

.emitter-left {
    left: 8%;
}

.emitter-right {
    right: 8%;
}

@media (max-width: 768px) {
    .smoke-emitter {
        display: none;
    }
}

.smoke-puff {
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(181, 155, 122, 0.5);
    /* Earthy Dust Color */
    border-radius: 50%;
    filter: blur(25px);
    animation: smokeRise 2.5s ease-out infinite;
    opacity: 0;
}

@keyframes smokeRise {
    0% {
        transform: translate(-50%, 0) scale(0.8) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    100% {
        transform: translate(-120%, -100px) scale(5) rotate(45deg);
        opacity: 0;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

    .features-row {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        top: 0;
        margin-top: 2rem;
    }

    .hero-image img {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        left: 0;
        transform: scale(1);
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
    }

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

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

    .help-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .why-choose-card {
        flex-direction: column;
    }

    .why-card-img {
        height: 300px;
    }

    .why-card-content {
        padding: 2.5rem;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .phone-link span {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .logo,
    .mobile-menu-btn {
        position: relative;
        z-index: 1002;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo img {
        height: 35px;
    }

    .desktop-only {
        display: none;
    }

    /* Sidebar Redesign */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100%;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        z-index: 9000;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -15px 0 30px rgba(0, 0, 0, 0.1);
        padding: 0;
        display: flex;
        /* Always flex but hidden by right -100% */
    }

    .mobile-sidebar.active {
        right: 0;
    }

    .sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 2rem;
        background: #f8fafc;
        border-bottom: 1px solid #eee;
        margin-bottom: 1rem;
    }

    .sidebar-header img {
        height: 35px;
    }

    .close-sidebar {
        background: #000;
        color: #fff;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile-sidebar li:not(.sidebar-header):not(.sidebar-contact) {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .mobile-sidebar a:not(.btn) {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #334155;
        letter-spacing: 1px;
        transition: all 0.2s ease;
    }

    .mobile-sidebar a:not(.btn):hover {
        background: #f1f5f9;
        color: var(--primary);
        padding-left: 2.5rem;
    }

    .sidebar-contact {
        margin-top: auto;
        padding: 2rem;
        background: #f8fafc;
    }

    .sidebar-divider {
        height: 1px;
        background: #eee;
        margin-bottom: 1.5rem;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
        border-radius: 30px;
    }

    .btn-view-details {
        padding: 10px;
        font-size: 0.85rem;
    }

    .nav-right .phone-link,
    .nav-right .btn-primary {
        display: none;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .products-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .products-title h2 {
        font-size: 2.2rem;
    }

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

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

    .trust-item {
        justify-content: center;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .full-banner-section {
        margin: 30px 0;
    }

    .full-banner-section img {
        min-height: 200px;
        object-fit: cover;
    }

    .category-section h2 {
        font-size: 2.2rem;
    }

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

    .how-it-works .section-title h2 {
        font-size: 2.2rem;
    }

    .step-visual {
        width: 150px;
        height: 150px;
    }

    .help-text h3 {
        font-size: 1.4rem;
    }

    .help-btns {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 0.75rem;
    }

    .help-btns a {
        width: auto;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .features-row {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 50px 20px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }

    .feature-item [data-lucide] {
        margin: 0;
        display: block !important;
    }

    .feature-item br {
        display: none;
    }

    .feature-grid-small {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-image img {
        max-width: 320px;
    }

    .hero-btns {
        width: 100%;
    }

    .hero-btns .btn {
        width: auto;
    }

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

    .footer-col h4 {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .footer-col:first-child h4 {
        margin-top: 0;
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-about {
        text-align: center;
    }

    .logo {
        justify-content: center;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    background: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.floating-whatsapp i {
    width: 24px !important;
    height: 24px !important;
}

@media (max-width: 480px) {
    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp {
        padding: 15px;
        bottom: 20px;
        right: 20px;
        border-radius: 50%;
    }
}

/* --- Tyre Listing Page Styles --- */
.listing-wrapper {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.listing-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Sidebar Filters */
.filters-sidebar {
    position: sticky;
    top: 120px;
}

.filter-section {
    background: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

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

.filter-header h4 {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.filter-content {
    padding: 0.75rem 0 0.25rem;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

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

.filter-item input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
}

/* Listing Content Area */
.listing-header {
    margin-bottom: 2rem;
}

.listing-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.listing-title-row h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.search-bar-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 18px 25px;
    padding-right: 60px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(35, 155, 209, 0.1);
}

.search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.listing-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.result-count {
    font-weight: 500;
    color: var(--text-muted);
}

.sort-dropdown {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
}

/* Product Grid */
.tyre-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-link:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 1024px) {
    .listing-grid {
        grid-template-columns: 1fr;
        padding-left: 60px;
        /* Space for the icon bar */
        gap: 2rem;
    }

    .filters-sidebar {
        position: fixed;
        left: 0;
        top: 80px;
        width: 60px;
        height: calc(100vh - 80px);
        background: var(--secondary);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding: 1rem 0;
        margin-bottom: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow: visible;
    }

    .filter-section {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .filter-header {
        width: 60px;
        height: 50px;
        justify-content: center;
        color: white;
    }

    .filter-header h4 {
        display: none;
        /* Hide text, only show icon */
    }

    .filter-header i {
        width: 20px !important;
        height: 20px !important;
    }

    /* Show filter content as a popover on mobile */
    .filter-content {
        position: absolute;
        left: 60px;
        top: 0;
        width: 250px;
        background: white;
        box-shadow: 10px 0 20px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        border-radius: 0 12px 12px 0;
        display: none !important;
        /* Hidden until active */
        z-index: 1001;
        border: 1px solid #e2e8f0;
    }

    .filter-section.active .filter-content {
        display: block !important;
    }

    .filter-section.active .filter-header {
        background: var(--primary);
    }

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

@media (max-width: 640px) {
    .listing-grid {
        padding-left: 50px;
    }

    .filters-sidebar {
        width: 50px;
    }

    .filter-header {
        width: 50px;
    }

    .filter-content {
        left: 50px;
        width: calc(100vw - 70px);
    }

    .tyre-listing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tyre-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Tyre Details Page Styles --- */
.details-wrapper {
    padding: 140px 0 80px;
    background: white;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.product-gallery {
    position: relative;
}

.main-img-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-img-box img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-muted);
}

.product-info-top .sku {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.product-info-top h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    line-height: 1.2;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-description p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.download-btn {
    background: #2d3748;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.download-btn:hover {
    background: #1a202c;
}

.purchase-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.qty-input {
    width: 70px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-request-quote:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Additional Info Section */
.additional-info {
    margin-bottom: 5rem;
    overflow-x: auto;
}

.info-section-title {
    color: #ef4444;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 2px solid #ef4444;
    display: inline-block;
    padding-bottom: 5px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 5rem;
    border: 1px solid #edf2f7;
}

.spec-table tr:nth-child(odd) {
    background: #f8fafc;
}

.spec-table td {
    padding: 1.2rem 2rem;
    font-size: 0.9rem;
    color: var(--text-main);
    border-bottom: 1px solid #edf2f7;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 350px;
    color: var(--secondary);
}

/* Related Products */
.related-section {
    padding-top: 4rem;
    border-top: 1px solid #edf2f7;
}

.related-section h2 {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.related-card {
    text-align: center;
    transition: var(--transition);
}

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

.related-img-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.related-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-card h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    height: 2.5rem;
    overflow: hidden;
    color: var(--secondary);
}

.btn-outline-quote {
    display: inline-block;
    width: 100%;
    border: 1px solid #cbd5e0;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-quote:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 1024px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .spec-table td:first-child {
        width: 200px;
    }
}

@media (max-width: 640px) {
    .related-grid {
        grid-template-columns: 1fr;
    }

    .purchase-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-request-quote {
        max-width: none;
    }

    .main-img-box {
        padding: 1.5rem;
    }

    .product-info-top h1 {
        font-size: 1.6rem;
    }

    .details-wrapper {
        padding-top: 100px;
    }

    .spec-table td {
        padding: 1rem;
        min-width: 150px;
    }
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.modal-header {
    background: var(--secondary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

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

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

.quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(35, 155, 209, 0.1);
}

.btn-submit-quote {
    width: 100%;
    background: #ef4444;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-submit-quote:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

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

    .modal-body {
        padding: 1.5rem;
    }
}

/* --- Industries Page Styles (Aggressive White Theme) --- */
.industries-hero {
    background: #f8fafc;
    /* height: 65vh; */
    display: flex;
    align-items: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    /* padding-top: 80px; */
    border-bottom: 8px solid var(--primary);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text-content {
    text-align: left;
    z-index: 2;
}

.industries-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    /* text-transform: uppercase; */
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: #000;
}

.industries-hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 600px;
    color: #444;
    font-weight: 500;
    margin: 0;
}

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

.hero-image-content img {
    width: 110%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1024px) {
    .industries-hero {
        height: auto;
        padding: 100px 0 60px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-content {
        text-align: center;
    }

    .industries-hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .industries-hero p {
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .hero-image-content img {
        width: 100%;
        max-width: 350px;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .industries-hero h1 {
        font-size: 2.4rem;
    }

    .industry-sections {
        padding: 60px 0;
    }

    .agg-industry-content {
        padding: 2.5rem 1.5rem;
    }

    .agg-industry-content h2 {
        font-size: 2.2rem;
    }

    .agg-industry-content h2::before {
        font-size: 5rem;
        top: -20px;
    }
}

.industry-sections {
    background: #ffffff;
    padding: 120px 0;
}

.agg-industry-card {
    display: flex;
    background: #f8fafc;
    margin-bottom: 100px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.agg-industry-card:nth-child(even) {
    flex-direction: row-reverse;
}

.agg-industry-img {
    flex: 0 0 50%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.agg-industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1);
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.agg-industry-card:hover .agg-industry-img img {
    transform: scale(1.1);
}

.agg-industry-content {
    flex: 1;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.agg-industry-content h2 {
    font-size: 4rem;
    font-weight: 900;
    /* text-transform: uppercase; */
    margin-bottom: 2rem;
    line-height: 0.8;
    color: #000;
    position: relative;
}

.agg-industry-content h2::before {
    content: attr(data-number);
    position: absolute;
    top: -40px;
    left: -10px;
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
}

.agg-industry-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.agg-industry-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.agg-industry-link i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.agg-industry-link:hover i {
    transform: translateX(10px);
}

@media (max-width: 1024px) {

    .agg-industry-card,
    .agg-industry-card:nth-child(even) {
        flex-direction: column;
        margin-bottom: 60px;
        border-right: none;
        border-left: 1px solid #e2e8f0;
    }

    .agg-industry-img {
        flex: 0 0 350px;
        height: 350px;
        width: 100%;
    }

    .agg-industry-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 640px) {
    .industries-hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .industries-hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .industry-sections {
        padding: 50px 0;
    }

    .agg-industry-img {
        flex: 0 0 250px;
        height: 250px;
    }

    .agg-industry-content {
        padding: 2.5rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .agg-industry-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        word-break: keep-all;
    }

    .agg-industry-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .agg-industry-content h2::before {
        font-size: 4rem;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .agg-industry-link {
        font-size: 0.9rem;
        justify-content: center;
    }
}

/* --- Contact Page Styles (Aggressive White) --- */
.contact-hero {
    background: #fff;
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero-tag {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.contact-hero h1,
.agg-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 950;
    line-height: 0.9;
    /* text-transform: uppercase; */
    letter-spacing: -3px;
    color: #000;
    margin-bottom: 1.5rem;
}

.contact-hero h1 span,
.agg-title span {
    color: var(--primary);
    /* -webkit-text-stroke: 1px #000; */
    font-size: 76px;
}

.contact-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
    font-weight: 500;
}

.contact-body {
    background: #fff;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.info-card {
    position: relative;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.info-card::before {
    content: attr(data-number);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    z-index: 1;
}

.info-icon i {
    width: 20px;
    height: 20px;
}

.info-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.info-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.social-panel {
    margin-top: 2.5rem;
}

.social-panel h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
}

/* Aggressive Form */
.aggressive-form {
    background: #f8fafc;
    padding: 2.5rem;
    border: 1px solid #eee;
    box-shadow: 15px 15px 0px var(--primary);
}

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

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

.form-group label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.aggressive-form input,
.aggressive-form select,
.aggressive-form textarea {
    width: 100%;
    padding: 1.1rem 1.25rem;
    border: 2px solid #000;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    border-radius: 10px;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.aggressive-form input:focus,
.aggressive-form select:focus,
.aggressive-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 6px 6px 0px var(--primary);
    transform: translate(-2px, -2px);
}

.aggressive-form input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.aggressive-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.btn-submit-agg {
    width: 100%;
    padding: 1.1rem;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    border-radius: 10px;
}

.btn-submit-agg:hover {
    background: var(--primary);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #000;
}

/* Map Section */
.map-section {
    padding-bottom: 60px;
}

.map-wrapper {
    border: 2px solid #000;
    box-shadow: 15px 15px 0 #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

@media (max-width: 640px) {
    .map-wrapper {
        box-shadow: 8px 8px 0 #f1f5f9;
        border-radius: 8px;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero {
        padding: 120px 0 40px;
    }
}

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

    .info-card::before {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .contact-hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .aggressive-form {
        padding: 1.5rem;
        box-shadow: 10px 10px 0px var(--primary);
    }

    .info-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.8rem;
    }
}

/* --- Services Page Styles (Aggressive White) --- */
.service-stats-box {
    animation: slideInRight 1s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

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

.services-agg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-agg-card {
    position: relative;
    padding: 3.5rem;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-agg-card::before {
    content: attr(data-number);
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.service-agg-card .s-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #000;
    transition: all 0.3s ease;
}

.service-agg-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.service-agg-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    max-width: 90%;
}

.service-agg-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-agg-card:hover .s-icon {
    background: var(--primary);
    color: #000;
}

/* .service-agg-card.suggested {
    border-left: 4px solid var(--primary);
    background: #fafbfc;
} */

@media (max-width: 1024px) {
    .services-agg-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .service-agg-card {
        padding: 2rem;
    }

    .service-agg-card h3 {
        font-size: 1.4rem;
    }

    .service-agg-card::before {
        font-size: 3rem;
    }
}

/* --- Service Stats Redesign --- */
.service-stats-agg {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 5;
}

.stat-agg-card {
    background: #000;
    color: #fff;
    padding: 2rem;
    border-radius: 4px;
    border-left: 5px solid var(--primary);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-label {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.stat-desc {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.8;
}

.stat-status {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.status-dot.pulse {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1.1);
        opacity: 0.5;
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 640px) {
    .stat-label {
        font-size: 2.5rem;
    }
}

/* --- About Page Styles (Aggressive White) --- */
.about-hero {
    padding: 160px 0 100px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.hero-content-agg h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    /* text-transform: uppercase; */
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.section-title-agg {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-agg h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title-agg span {
    color: var(--primary);
}

.label-agg {
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-frame-agg {
    position: relative;
    border: 1px solid #eee;
    padding: 10px;
    box-shadow: 20px 20px 0 var(--bg-light);
}

.image-frame-agg img {
    width: 100%;
    display: block;
}

.since-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: #000;
    padding: 1.5rem 2rem;
    font-weight: 900;
    font-size: 1.2rem;
    border: 3px solid #fff;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.05);
}

.title-agg {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.milestones-agg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.milestone-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.milestone-item p {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card-agg {
    padding: 3rem;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.value-card-agg:hover {
    border-color: #000;
    transform: translateY(-10px);
    box-shadow: 15px 15px 0 var(--primary);
}

.v-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.mv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 5rem;
}

.mv-box {
    padding: 4rem;
    border: 1px solid #eee;
}

.mv-box.mission {
    background: #f8fafc;
    color: #000;
    border-left: 8px solid var(--primary);
}

.mv-box.vision {
    background: #fff;
    border: 1px solid #eee;
    border-right: 8px solid #334155;
}

.mv-box h3 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {

    .grid-2,
    .values-grid,
    .mv-split {
        grid-template-columns: 1fr;
    }
}

/* --- About Page Image Enhancements --- */
.about-hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-tyre {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 50%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-tyre img {
    width: 100%;
    filter: grayscale(1);
}

.tyre-showcase-section {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.showcase-item {
    text-align: center;
    padding: 2rem;
    background: #fcfcfc;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.showcase-item h4 {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.showcase-item p {
    font-size: 0.95rem;
    color: #666;
}

.showcase-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.showcase-item:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* --- About CTA Banner --- */
.about-banner-cta {
    position: relative;
    padding: 350px 0 80px;
    background-image: url('/assets/jainotr/readygo_jain.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #eee;
}

.banner-content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    top: 50px;
}

.banner-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-bg-tyre {
        width: 80%;
        right: -30%;
    }
}

@media (max-width: 768px) {
    .about-banner-cta {
        padding-top: 55vw;
        padding-bottom: 50px;
        background-attachment: scroll;
        background-size: contain;
    }

    .banner-content {
        margin-top: 0;
        top: 0;
    }

    .banner-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 20px;
    }

    .banner-btns .btn-submit-agg {
        width: 100%;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .about-banner-cta {
        padding-top: 65vw;
    }
}

/* --- Form Feedback --- */
.form-feedback {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-feedback.active {
    transform: translateY(0);
    opacity: 1;
}

.feedback-content {
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 5px solid var(--primary);
}

.form-feedback.success .feedback-content {
    border-left-color: #10b981;
}

.form-feedback.error .feedback-content {
    border-left-color: #ef4444;
}

.feedback-content i {
    width: 24px;
    height: 24px;
}

.form-feedback.success i {
    color: #10b981;
}

.form-feedback.error i {
    color: #ef4444;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* --- Button Refinements --- */
.btn-submit-agg,
.btn-submit-quote {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-agg:hover,
.btn-submit-quote:hover {
    background: #000 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit-agg:active,
.btn-submit-quote:active {
    transform: translateY(0);
}

.btn-submit-agg:disabled,
.btn-submit-quote:disabled {
    background: #94a3b8 !important;
    cursor: not-allowed;
    transform: none;
}


/* --- Category Listing UI --- */
.category-hero {
    padding: 120px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.category-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 20px;
}

.category-info-bar h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 800;
}

.category-info-bar p {
    color: var(--text-muted);
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 80px;
}

.product-footer {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.btn-view-details {
    flex: 1;
    padding: 10px;
    text-align: center;
    background: #f8fafc;
    color: #334155;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: #e2e8f0;
    color: #000;
}

.btn-sm.btn-request-quote {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
}

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

@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Request Quote Button --- */
.btn-request-quote {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

.btn-request-quote:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-request-quote:active {
    transform: translateY(0);
}

.qty-input {
    width: 80px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 15px;
    font-weight: 700;
    text-align: center;
}

.purchase-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}