/**
 * ALWEST Main Stylesheet
 * Minimal, elegant, premium design
 */

/* ===========================
   CSS Variables
   =========================== */
:root {
    /* Colors - Blue/White Palette */
    --primary: #0a0a0a;
    --primary-light: #1a1a1a;
    --secondary: #2a2a2a;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.15);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --black: #0a0a0a;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows - Subtle */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius - Minimal */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Spacing */
    --section-padding: 6rem;
}

/* ===========================
   Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

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

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

::selection {
    background: var(--accent);
    color: var(--white);
}

/* ===========================
   Navbar - Ultra Minimal
   =========================== */
.navbar {
    padding: 1.25rem 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    transition: color var(--transition-base);
}

.navbar.scrolled .brand-text {
    color: var(--gray-900);
}

/* Logo Swap Logic */
.navbar .logo-dark {
    display: none !important;
}

.navbar .logo-white {
    display: block !important;
}

.navbar.scrolled .logo-white {
    display: none !important;
}

.navbar.scrolled .logo-dark {
    display: block !important;
}

.navbar-nav {
    gap: 0;
}

.nav-link {
    font-weight: 400;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.5rem 1.25rem !important;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--gray-600) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--accent) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.5' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 23, 42, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.5' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
}

/* ===========================
   Hero Slider
   =========================== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 58, 95, 0.75) 50%, rgba(15, 23, 42, 0.88) 100%);
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 20;
    pointer-events: none;
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-base);
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Hero Content in Slider */
.slide .hero-content {
    position: relative;
    z-index: 5;
}

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

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--accent-light);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
    font-weight: 400;
}

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

/* ===========================
   Buttons - Refined
   =========================== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
    border: none;
    transition: all var(--transition-base);
}

.btn-primary-custom:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--white);
    font-weight: 400;
    font-size: 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.btn-secondary-custom:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* ===========================
   Section Styles
   =========================== */
.section {
    padding: var(--section-padding) 0;
}

.section-sm {
    padding: 4rem 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--white);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    text-align: center;
    max-width: 480px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* ===========================
   Cards - Clean & Elegant
   =========================== */
.category-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.category-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.category-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 600;
}

.category-card-desc {
    color: var(--gray-500);
    font-size: 0.9375rem;
    flex-grow: 1;
    line-height: 1.6;
}

.category-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.category-card-link i {
    transition: transform var(--transition-fast);
    font-size: 0.875rem;
}

.category-card:hover .category-card-link i {
    transform: translateX(4px);
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 500;
}

.product-card-desc {
    color: var(--gray-500);
    font-size: 0.875rem;
    flex-grow: 1;
}

/* ===========================
   Page Header - Sophisticated
   =========================== */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

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

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

/* Breadcrumb */
.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-custom a:hover {
    color: var(--white);
}

.breadcrumb-custom .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.breadcrumb-custom .current {
    color: var(--accent-light);
}

/* ===========================
   Product Detail
   =========================== */
.product-detail {
    padding: 8rem 0 4rem;
}

.product-gallery {
    display: grid;
    gap: 0.75rem;
}

.product-main-image {
    overflow: hidden;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.product-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.product-thumbnail {
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    opacity: 1;
    border-color: var(--accent);
}

.product-thumbnail img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.product-info {
    padding-left: 2rem;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-short-desc {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    white-space: pre-line;
}

.product-cta {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.product-cta h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.product-cta p {
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.contact-method i {
    width: 20px;
    color: var(--accent);
}

/* ===========================
   About Page - Why Choose Us
   =========================== */
.about-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-size: 1.25rem;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.about-feature p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-light);
    display: block;
    letter-spacing: -0.02em;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

/* ===========================
   Contact Page
   =========================== */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

.contact-info-card h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.contact-info-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-list i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.contact-info-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
    font-weight: 500;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-form-card h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-control {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* ===========================
   Footer - Minimal Elegant
   =========================== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-brand .brand-text {
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.1em;
}

.footer-desc {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-title {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--accent-light);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--accent-light);
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

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

.copyright {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   WhatsApp Button
   =========================== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all var(--transition-base);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    color: var(--white);
}

/* ===========================
   Alert Messages
   =========================== */
.alert-custom {
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border: none;
}

/* ===========================
   Placeholder
   =========================== */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 2.5rem;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 4rem;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
    }

    .nav-link {
        color: var(--gray-700) !important;
        padding: 0.625rem 0 !important;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent) !important;
    }

    .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(1)::after,
    .stat-item:nth-child(3)::after {
        top: 15%;
        bottom: 15%;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-features {
        gap: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 3rem;
    }

    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 6rem;
    }

    .hero-slider,
    .slider-wrapper {
        min-height: 100vh !important;
        height: 100dvh !important;
    }

    /* Reverted text position to center/default */

    .slide {
        /* Move text to bottom */
        /* Space from bottom */
    }

    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-description {
        font-size: 0.9rem;
        /* Smaller description */
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 90%;
        /* Prevent text from being too wide */
    }

    .hero-label {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .product-main-image img {
        height: 280px;
    }

    .product-thumbnail img {
        height: 60px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .about-feature {
        flex-direction: column;
        gap: 1rem;
    }

    .about-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-custom {
        font-size: 0.8125rem;
    }

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

    .category-card-body,
    .product-card-body {
        padding: 1.25rem;
    }

    .stats-grid {
        border-radius: var(--radius-md);
    }
}