/* ============================================================
   Custom Fonts
   ============================================================ */
@font-face {
    font-family: 'Algerian';
    src: url('algerian.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   ARYAN Sinks Website — Shared Stylesheet
   ============================================================ */

/* ---- Reset & Base ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #444;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(to bottom, #f0f5ff 0%, #ffffff 100%);
    background-attachment: fixed;
}

/* ---- Skip to Content (Accessibility) ---- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
}

/* ---- Focus Indicators (Accessibility) ---- */
*:focus-visible {
    outline: 3px solid #0066cc;
    outline-offset: 2px;
}

/* ---- Font Faces ---- */
.aryan-text {
    font-family: 'Algerian', serif !important;
}

/* ---- Header ---- */
header {
    background: white;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s;
}

.top-bar {
    background: #f8f8f8;
    padding: 8px 0;
    font-size: 12px;
    text-align: center;
}

.main-header {
    padding: 15px 0;
}

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

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

/* ---- Logo ---- */
.logo {
    font-size: 32px;
    color: #ffffff;
    background-color: #e53935;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Algerian', serif !important;
    display: inline-block;
    transition: background-color 0.3s ease;
    position: relative;
    text-align: center;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: #ffffff;
}

.logo:hover {
    background-color: #c62828;
}

.logo-tagline {
    display: block;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: normal;
}

/* ---- Navigation ---- */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    padding: 18px 16px;
    display: inline-flex;
    align-items: center;
    height: 64px;
    box-sizing: border-box;
}

.nav-menu a:hover {
    color: #1a5fd1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1a5fd1;
    transition: width 0.3s;
}

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

/* ---- Dropdown Menu ---- */
.dropdown {
    position: relative;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    border: 1px solid #ebebeb;
    border-top: none;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown-content.mega-menu {
    min-width: 650px;
    padding: 0;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-content.mega-menu {
    display: flex;
}

.dropdown-list {
    flex: 0 0 320px;
    padding: 10px 0;
}

.dropdown-image-panel {
    flex: 1;
    background-color: #f4f8fc;
    background-size: cover;
    background-position: center;
    border-left: 1px solid #ebebeb;
}

.dropdown-category {
    padding: 8px 20px;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
}

.dropdown-item {
    padding: 12px 20px;
    color: #444;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
    transition: background-color 0.3s, border-left-color 0.3s;
}

.dropdown-item:hover {
    background-color: #f5f8ff;
    border-left-color: #1a5fd1;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.dropdown-item-subtitle {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    font-weight: normal;
}

.dropdown-item .nav-badge {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
}

.nav-badge.popular {
    color: #D62B2B;
}

.nav-badge.new {
    color: #1a5fd1;
}

.dropdown-divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 8px 0;
}

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

.dropdown-item.active {
    background-color: #0066cc;
    color: white;
}

.dropdown-item.active:hover {
    background-color: #0052a3;
}

/* ---- Header Actions ---- */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-btn {
    background: transparent;
    border: none;
    color: #0066cc;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, color 0.2s;
}

.search-btn:hover {
    transform: scale(1.1);
    color: #0052a3;
}

.contact-btn {
    padding: 8px 16px;
    border: 1px solid #0066cc;
    background: #0066cc;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.contact-btn:hover {
    background: #0052a3;
}

/* ---- Hamburger (Mobile) ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 3001;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:active {
    background: rgba(0, 102, 204, 0.08);
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #0066cc;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ---- Mobile Menu Overlay ---- */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    justify-content: flex-end;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu {
    background: #fff;
    width: 80vw;
    max-width: 320px;
    height: 100%;
    padding: 40px 24px 24px 24px;
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow-y: auto;
}

.mobile-menu .close-mobile-menu {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #444;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu ul li a {
    color: #0066cc;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu ul li a:hover {
    text-decoration: underline;
}

/* Mobile dropdown accordion */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.mobile-dropdown-toggle .arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.mobile-dropdown-toggle .arrow.open {
    transform: rotate(180deg);
}

.mobile-sub-menu {
    display: none;
    padding-left: 16px;
    margin-top: 8px;
}

.mobile-sub-menu.open {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-sub-menu a {
    font-size: 16px !important;
    color: #555 !important;
}

/* ---- Hero Section ---- */
.hero {
    background: linear-gradient(135deg, #0055b3 0%, #003478 50%, #001d4a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 10px), radial-gradient(circle at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.92;
    position: relative;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cta-button.primary-cta {
    background: white;
    color: #0055b3;
}

.cta-button.secondary-cta {
    background: #e53935;
    color: white;
}

.cta-button.primary-cta:hover, .cta-button.secondary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

@media (max-width: 900px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { margin: 0 auto; align-items: center; display: flex; flex-direction: column; }
    .hero-badges { justify-content: center; }
    .hero h1 { font-size: 36px; }
}

/* ---- Breadcrumbs ---- */
.breadcrumb {
    padding: 15px 0;
    background: transparent;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 14px;
}

.breadcrumb-list li a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb-list li a:hover {
    text-decoration: underline;
}

.breadcrumb-list li:last-child {
    color: #444;
    font-weight: 500;
}

.breadcrumb-list li + li::before {
    content: '›';
    color: #aaa;
    font-size: 16px;
}

/* ---- Section Title ---- */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

/* ---- Product Categories (Homepage) ---- */
.categories {
    padding: 80px 0;
    background: transparent;
}

.category-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    min-width: 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.category-image {
    height: 200px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #0066cc;
    position: relative;
    overflow: hidden;
}

.category-content {
    padding: 24px;
}

.category-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

.category-content p {
    color: #555;
    line-height: 1.65;
    font-size: 14px;
}

/* ---- Features Section ---- */
.features {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e8eef8;
    border-radius: 14px;
    padding: 32px 24px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    border-color: #1a5fd1;
    box-shadow: 0 4px 20px rgba(26, 95, 209, 0.08);
}

.feature-card-bg {
    position: absolute;
    top: -10px;
    right: 8px;
    font-size: 80px;
    font-weight: 800;
    color: #e8f0fd;
    line-height: 1;
    letter-spacing: -4px;
    user-select: none;
    z-index: 0;
    transition: color 0.2s;
}

.feature-card:hover .feature-card-bg {
    color: #dce8fb;
}

.feature-tag {
    font-size: 11px;
    font-weight: 700;
    color: #e53935;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-line {
    width: 32px;
    height: 2.5px;
    background: #1a5fd1;
    border-radius: 2px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.feature-heading {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.feature-text {
    font-size: 13px;
    color: #777777;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ---- Product Showcase ---- */
.products-showcase {
    padding: 80px 0;
    background: transparent;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.tab-button,
.category-tab {
    padding: 12px 24px;
    border: 2px solid #0066cc;
    background: transparent;
    color: #0066cc;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-button.active,
.tab-button:hover,
.category-tab.active,
.category-tab:hover {
    background: #0066cc;
    color: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}

.product-image {
    aspect-ratio: 5 / 4;
    height: auto;
    background: linear-gradient(135deg, #f4f8fc 0%, #e8f0fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #0066cc;
    position: relative;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

.product-info h3,
.product-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-price {
    color: #0066cc;
    font-weight: 600;
    font-size: 20px;
    margin-top: 8px;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li::before {
    content: '✓';
    color: #0066cc;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0052a3 0%, #003a7a 100%);
}

.btn-secondary {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    color: #444;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05), inset 0 1px 0 #ffffff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08), inset 0 1px 0 #ffffff;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ---- Product Categories (Sub-pages) ---- */
.product-categories {
    padding: 80px 0;
    background: transparent;
}

/* ---- About Section ---- */
.about {
    padding: 80px 0;
    background: white;
    position: relative;
}

.about-cut-divider {
    display: none !important;
}

/* ---- Service Network Section ---- */
.service-network {
    padding: 80px 0;
    background: #f0f5ff;
}

.network-header {
    text-align: center;
    margin-bottom: 40px;
}

.network-eyebrow {
    font-size: 13px;
    color: #1a5fd1;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.network-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.network-subtext {
    font-size: 15px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.network-stats-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.net-stat-card {
    background: white;
    border: 1px solid #e0e8f5;
    border-radius: 10px;
    padding: 14px 24px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.net-stat-val {
    font-size: 24px;
    font-weight: bold;
    color: #1a5fd1;
    display: block;
    margin-bottom: 2px;
}

.net-stat-label {
    font-size: 12px;
    color: #888;
}

.map-layout {
    max-width: 1000px;
    margin: 0 auto;
}

#map-container {
    height: 520px;
    border-radius: 14px;
    border: 1px solid #d0dff5;
    box-shadow: 0 4px 20px rgba(26, 95, 209, 0.10);
    z-index: 1; /* Keep leaflet under sticky headers */
}

.custom-city-pin {
    background: #D62B2B;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.circle {
    border-radius: 50%;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-text-block {
    border-left: 3px solid #0066cc;
    padding-left: 20px;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-text p:last-child {
    margin-bottom: 0;
}

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

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.05);
    border: 1px solid #eef2fb;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.stat-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Testimonials Section ---- */
.testimonials {
    padding: 80px 0;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-top 0.3s;
    border-top: 4px solid transparent;
}

.testimonial-card:hover, .testimonial-card.featured {
    border-top: 4px solid #0066cc;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 80px;
    color: rgba(0, 102, 204, 0.1);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    color: #333;
}

.testimonial-location.chip {
    font-size: 12px;
    color: #555;
    background: #f4f8fc;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 4px;
    border: 1px solid #e8f0fe;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

/* ---- Footer ---- */
footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #0066cc;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

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

.footer-bottom a:hover {
    color: #0066cc;
}

/* ---- Search Modal ---- */
.search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-modal {
    width: 90%;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-modal {
    transform: translateY(0);
}

.search-header {
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-header h2 {
    color: #333;
    font-size: 24px;
    margin: 0;
}

.close-search {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.close-search:hover {
    background: #e9ecef;
}

.search-body {
    padding: 30px;
}

.search-input-container {
    position: relative;
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.search-input:focus {
    border-color: #0066cc;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
}

.search-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-chip:hover,
.filter-chip.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.results-count {
    color: #888;
    font-size: 14px;
}

.sort-dropdown {
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    background: white;
    cursor: pointer;
}

.search-result-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.result-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e6f3ff, #cce6ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0066cc;
    margin-right: 20px;
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.result-category {
    font-size: 12px;
    color: #0066cc;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.result-description {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.popular-searches {
    margin-top: 20px;
}

.popular-searches h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popular-tag {
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.popular-tag:hover {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

/* ---- Contact Modal ---- */
.contact-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-overlay.active {
    display: flex;
    opacity: 1;
}

.contact-modal {
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    margin: auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.contact-overlay.active .contact-modal {
    transform: translateY(0);
}

.contact-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.contact-header .aryan-text {
    font-weight: normal;
}

.contact-header h2 {
    font-size: 28px;
    margin: 0;
    font-weight: 300;
}

.contact-header p {
    margin: 5px 0 0 0;
    opacity: 0.9;
}

.close-contact {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.close-contact:hover {
    background: rgba(255,255,255,0.2);
}

.contact-body {
    padding: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-card a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.business-hours {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.business-hours h4 {
    margin-bottom: 15px;
    color: #333;
}

.business-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.business-hours-grid strong {
    display: block;
    margin-bottom: 5px;
}

/* ---- Product Detail Modal ---- */
.product-detail-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-detail-overlay.active {
    display: flex;
    opacity: 1;
}

.product-detail-modal {
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    margin: auto;
    background: white;
    border-radius: 15px;
    overflow-y: auto;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.product-detail-overlay.active .product-detail-modal {
    transform: translateY(0);
}

.product-detail-header {
    position: relative;
}

.product-detail-header .close-detail {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1;
}

.product-detail-header .close-detail:hover {
    background: rgba(0,0,0,0.7);
}

.product-detail-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #e6f3ff, #cce6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #0066cc;
}

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

.product-detail-body {
    padding: 30px;
}

.product-detail-body h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #333;
}

.product-detail-body .detail-category {
    color: #0066cc;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.product-detail-body .detail-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-detail-body .detail-price {
    font-size: 28px;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail-body .detail-actions {
    display: flex;
    gap: 12px;
}

.product-detail-body .detail-actions .btn {
    padding: 14px 28px;
    font-size: 16px;
}

/* ---- Toast Notification ---- */
.toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background: #28a745;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ---- Nav Cart ---- */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    text-decoration: none;
    padding: 4px;
    transition: transform 0.2s;
}

.nav-cart:hover {
    transform: scale(1.1);
}

.nav-cart-icon {
    font-size: 24px;
}

.nav-cart-count {
    position: absolute;
    top: -2px;
    right: -6px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(229, 57, 53, 0.4);
}

/* ---- Floating Contact FAB ---- */
.floating-contact-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.floating-contact-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.floating-contact-container.active .floating-contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-contact-option-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-contact-label {
    background: white;
    color: #444;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.floating-contact-container.active .floating-contact-label {
    opacity: 1;
    transform: translateX(0);
}

.floating-contact-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.floating-contact-option:hover {
    transform: scale(1.1);
}

.floating-contact-option.phone {
    background: #4CAF50;
}

.floating-contact-option.whatsapp {
    background: #25D366;
}

.floating-contact-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.35);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
    z-index: 2;
}

.floating-contact-container.active .floating-contact-main {
    transform: rotate(45deg);
    background: #e53935;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.35);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2000;
    width: 44px;
    height: 44px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0066cc;
    transform: translateY(-2px);
}

/* ---- Cart Empty State ---- */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-icon {
    font-size: 72px;
    margin-bottom: 20px;
    opacity: 0.4;
}

.cart-empty h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
}

.cart-empty p {
    color: #888;
    margin-bottom: 24px;
}

.cart-empty .btn-primary {
    display: inline-block;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 16px;
}

/* ---- Loading Skeleton ---- */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 300px;
    border-radius: 10px;
}

/* ---- Fade-in Animation ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Service Page Specific ---- */
.service-locations {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title.service-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0066cc;
}

/* ---- Cart Page Specific ---- */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.cart-table th,
.cart-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    background: #f0f4fa;
    color: #0066cc;
}

.cart-table td img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-table input[type='number'] {
    width: 60px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.remove-btn {
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.remove-btn:hover {
    background: #b71c1c;
}

.total-row td {
    font-weight: bold;
    font-size: 18px;
    background: #f8f9fa;
}

.checkout-section {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    margin-top: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.checkout-section h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkout-form .form-group {
    display: flex;
    flex-direction: column;
}

.checkout-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.checkout-form input,
.checkout-form textarea {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    background: #fdfdfd;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
    color: #adb5bd;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 95, 209, 0.1);
}

.checkout-form textarea {
    resize: vertical;
    min-height: 100px;
}

.place-order-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    margin-top: 10px;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.place-order-btn:active {
    transform: translateY(1px);
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */
@media (max-width: 768px) {
    .main-header .container {
        width: 100%;
        padding-left: 12px;
        padding-right: 10px;
    }

    /* Hide desktop nav and actions entirely on mobile */
    header nav {
        display: none !important;
    }

    .header-actions {
        display: flex !important;
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .header-actions .search-btn {
        display: none !important;
    }

    /* Hamburger: show and push to far right */
    .hamburger {
        display: flex;
        order: 3;
        margin-left: 0;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Hero adjustments */
    .hero {
        padding: 56px 0;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    /* Section titles */
    .section-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    /* Categories */
    .categories {
        padding: 48px 0;
    }

    .category-card {
        min-width: 280px;
    }

    .category-image {
        height: 160px;
    }

    .category-content {
        padding: 20px;
    }

    .category-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    /* Features */
    .features {
        padding: 48px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Product showcase */
    .products-showcase {
        padding: 48px 0;
    }

    .product-categories {
        padding: 48px 0;
    }

    .product-tabs,
    .category-tabs {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 28px;
    }

    .tab-button,
    .category-tab {
        padding: 10px 18px;
        font-size: 13px;
    }

    .product-info {
        padding: 16px;
    }

    .product-info h3,
    .product-info h4 {
        font-size: 16px;
    }

    .product-info p {
        font-size: 13px;
    }

    /* Product actions — stack vertically */
    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* About */
    .about {
        padding: 48px 0;
    }

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

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    /* Testimonials */
    .testimonials {
        padding: 48px 0;
    }

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

    .testimonial-card {
        padding: 24px;
    }

    /* Floating contact FAB — larger touch target */
    .floating-contact-main {
        width: 60px;
        height: 60px;
    }
    
    .floating-contact-container {
        bottom: 20px;
        right: 16px;
    }

    /* Footer */
    footer {
        padding: 40px 0 16px;
    }

    .footer-content {
        gap: 24px;
        margin-bottom: 24px;
    }

    /* Modals */
    .contact-modal {
        width: 95%;
        margin: 16px auto;
        max-height: 88vh;
        border-radius: 16px;
    }

    .contact-header {
        padding: 18px 20px;
    }

    .contact-header h2 {
        font-size: 22px;
    }

    .contact-body {
        padding: 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .search-modal {
        width: 95%;
        margin: 16px auto;
        border-radius: 16px;
    }

    .search-header {
        padding: 15px 20px;
    }

    .search-body {
        padding: 20px;
    }

    .search-filters {
        gap: 8px;
    }

    .filter-chip {
        font-size: 12px;
        padding: 6px 12px;
    }

    .result-image {
        width: 60px;
        height: 60px;
        margin-right: 14px;
    }

    .checkout-section {
        padding: 12px;
    }

    .business-hours-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-modal {
        width: 95%;
        border-radius: 16px;
    }

    .product-detail-image {
        height: 220px;
    }

    .product-detail-body {
        padding: 24px;
    }

    .product-detail-body h2 {
        font-size: 20px;
    }

    .product-detail-body .detail-actions {
        flex-direction: column;
    }

    /* Breadcrumb */
    .breadcrumb {
        padding: 12px 0;
    }

    .breadcrumb-list li {
        font-size: 13px;
    }

    /* Mobile menu polish */
    .mobile-menu {
        padding: 48px 24px 24px;
    }

    .mobile-menu ul {
        gap: 14px;
    }

    .mobile-menu ul li a {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 20px;
        padding: 6px 12px;
    }

    .logo-tagline {
        font-size: 8.5px;
        margin-top: 10px;
    }

    .logo::after {
        bottom: 22px;
    }

    .hero h1 {
        font-size: 26px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .category-card {
        min-width: 260px;
    }

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

/* ============================================================
   Image Loading: Shimmer skeleton + fade-in
   ============================================================ */
@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Shimmer overlay on image containers while loading */
.product-image::before,
.category-image::before,
.series-card-image::before,
.cistern-card-image::before,
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.4) 50%,
        transparent 100%
    );
    animation: shimmer 1.5s infinite;
    z-index: 1;
    pointer-events: none;
}

/* Hide shimmer once image is loaded (JS adds .img-loaded) */
.product-image.img-loaded::before,
.category-image.img-loaded::before,
.series-card-image.img-loaded::before,
.cistern-card-image.img-loaded::before,
.hero-image-wrapper.img-loaded::before {
    display: none;
}

/* Smooth fade-in for images */
.product-image img,
.category-image img,
.series-card-image img,
.cistern-card-image img,
.hero-product-img {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-image img.loaded,
.category-image img.loaded,
.series-card-image img.loaded,
.cistern-card-image img.loaded,
.hero-product-img.loaded {
    opacity: 1;
}

/* Cart Quantity Controls */
.cart-qty-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    height: 44px;
    width: 100%;
}
.cart-qty-control button {
    background: none;
    border: none;
    padding: 0 16px;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--primary, #0056b3);
    height: 100%;
    transition: background 0.2s, color 0.2s;
    font-weight: bold;
}
.cart-qty-control button:hover {
    background: #e9ecef;
    color: #003d82;
}
.cart-qty-control span {
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
}
