/* =====================================================
   SRI AMBAL FABRICATION - Main Stylesheet
   Industrial Modern Design
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-light: #fb923c;
    --white: #ffffff;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --shadow-accent: 0 4px 20px rgba(249,115,22,0.3);
    --shadow-primary: 0 4px 20px rgba(30,64,175,0.4);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--primary);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--accent-dark); }

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

.text-accent { color: var(--accent) !important; }
.bg-primary-dark { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }

/* ===================== UTILITY CLASSES ===================== */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

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

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
    margin: 12px 0 20px;
}

.section-divider.center { margin: 12px auto 20px; }
@media (max-width: 991.98px) { .section-divider { margin-left: auto; margin-right: auto; } }

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249,115,22,0.4);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 26px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary-dark {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary-dark:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================== ANNOUNCEMENT BAR ===================== */
.announcement-bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    overflow: hidden;
    transition: top 0.3s ease;
}
.announcement-inner {
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 12px;
    gap: 12px;
}
.announcement-label {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.22);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.announcement-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.announcement-scroll {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    animation: ann-scroll 28s linear infinite;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
}
@keyframes ann-scroll {
    0%   { transform: translateX(30%); }
    100% { transform: translateX(-100%); }
}
.announcement-close {
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    color: inherit;
    transition: background 0.2s;
    padding: 0;
}
.announcement-close:hover { background: rgba(255,255,255,0.4); }
/* Color themes */
.announcement-accent  { background: var(--accent);  color: #fff; }
.announcement-primary { background: var(--primary); color: #fff; }
.announcement-success { background: #166534;        color: #fff; }
.announcement-danger  { background: #dc2626;        color: #fff; }
.announcement-dark    { background: #0f172a;        color: #fff; }

/* ===================== TOP INFO BAR ===================== */
.topinfo-bar {
    background: #000000;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-family: var(--font-body);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 38px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topinfo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    gap: 12px;
}
.topinfo-left, .topinfo-right {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.topinfo-left i, .topinfo-right i { color: var(--accent); font-size: 0.78rem; flex-shrink: 0; }
.topinfo-left strong { color: #fff; font-weight: 600; }
.topinfo-right a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.topinfo-right a:hover { color: var(--accent); }
.topinfo-divider { color: rgba(255,255,255,0.25); padding: 0 2px; }

/* ===================== NAVBAR ===================== */
.navbar-main {
    background: #ffffff;
    padding: 12px 0;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.navbar-main.scrolled {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.navbar-brand img {
    height: 52px;
    width: auto;
}

.navbar-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.2;
}

.navbar-logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

.navbar-main .nav-link {
    color: #2d2d2d !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--accent) !important;
    background: rgba(249,115,22,0.1);
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .navbar-main .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.navbar-main .dropdown-menu {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 220px;
}

.navbar-main .dropdown-item {
    color: #2d2d2d;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    padding: 8px 18px;
    transition: var(--transition);
}

.navbar-main .dropdown-item:hover {
    background: rgba(249,115,22,0.1);
    color: var(--accent);
}

.cart-icon-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--primary) !important;
    font-size: 1.3rem;
    padding: 6px 10px !important;
}

.cart-count-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.navbar-toggler {
    border: 2px solid rgba(30,64,175,0.3);
    padding: 6px 10px;
    border-radius: var(--radius);
}

.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%2830, 64, 175, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #3b82f6 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(30,64,175,0.3));
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,64,175,0.85) 0%, rgba(30,64,175,0.7) 100%);
}

.hero-geometric {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.05;
    background: repeating-linear-gradient(
        45deg,
        var(--accent),
        var(--accent) 1px,
        transparent 1px,
        transparent 40px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 138px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.4);
    color: var(--accent-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .accent-line {
    color: var(--accent);
    display: block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 580px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hero-btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249,115,22,0.5);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hero-btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-floating-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-float-badge {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-float-badge i { color: var(--accent); font-size: 1.1rem; }
.hero-float-badge strong { color: var(--accent); }

/* Hero stats strip — clean vertical list on dark hero */
.hero-stats-strip {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.4s both;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 8px 32px;
    backdrop-filter: blur(8px);
}
.hero-stat-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
}
.hero-stat-icon {
    font-size: 1.6rem;
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.9;
}
.hero-stat-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    min-width: 80px;
    flex-shrink: 0;
    margin-left: auto;
    text-align: right;
}
.hero-stat-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.3;
    display: block;
}
.hero-stat-sub {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    margin-top: 3px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===================== CATEGORIES SECTION ===================== */
.categories-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fef9f5 100%);
    padding: 70px 0;
}

/* Category strip — replaces old bordered boxes */
.category-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.category-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.category-pill:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    transform: translateY(-4px);
}

.category-pill-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249,115,22,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}
.category-pill:hover .category-pill-icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.category-pill-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}

.category-pill-count {
    font-size: 0.75rem;
    color: var(--gray);
    font-family: var(--font-heading);
}

/* keep old category-card/category-icon-wrap names for backwards compat */
.category-card { text-decoration: none; color: var(--primary); }
.category-icon-wrap { transition: var(--transition); }
.category-name { font-family: var(--font-heading); font-weight: 700; }
.category-count { font-size: 0.82rem; color: var(--gray); font-family: var(--font-heading); }

/* ===================== PRODUCTS SECTION ===================== */
.products-section { background: var(--light); padding: 70px 0; }

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    position: relative;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(249,115,22,0.2);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--light);
    aspect-ratio: 4/3;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2f7, #dde4ed);
    color: var(--gray);
}
.product-placeholder i { font-size: 3rem; margin-bottom: 8px; color: var(--primary-light); }
.product-placeholder span { font-size: 0.8rem; font-family: var(--font-heading); }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 2;
}

.product-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-family: var(--font-heading);
    font-weight: 600;
    z-index: 2;
}

.product-actions-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30,64,175,0.9), transparent);
    padding: 16px 12px 12px;
    display: flex;
    gap: 8px;
    transition: var(--transition);
    z-index: 3;
}
.product-card:hover .product-actions-overlay { bottom: 0; }

.product-action-btn {
    flex: 1;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 7px 10px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.product-action-btn:hover { background: var(--accent-dark); color: var(--white); }

.product-action-btn.view-btn {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    flex: 0 0 auto;
    width: 36px;
}
.product-action-btn.view-btn:hover { background: var(--white); color: var(--primary); }

.product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-cat-label {
    font-size: 0.75rem;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #03187c !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--accent);
}

.product-price-original {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.product-savings {
    background: rgba(40,167,69,0.1);
    color: var(--success);
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* ===================== WHY CHOOSE US ===================== */
.why-us-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
}
.why-us-section .section-title { color: var(--white); }
.why-us-section .section-title span { color: var(--accent-light); }
.why-us-section .section-divider { background: linear-gradient(90deg, var(--accent), transparent); }
.why-us-section .why-item { border-bottom-color: rgba(255,255,255,0.1); }
.why-us-section .why-item:hover .why-item-icon { background: var(--accent); color: var(--white); }
.why-us-section .why-item-icon { background: rgba(249,115,22,0.2); color: var(--accent-light); }
.why-us-section .why-item-title { color: var(--white); }
.why-us-section .why-item-text { color: rgba(255,255,255,0.65); }

/* Open list layout — no card boxes */
.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--light-gray);
    align-items: flex-start;
    transition: var(--transition);
}
.why-item:last-child { border-bottom: none; }
.why-item:hover .why-item-icon { background: var(--accent); color: var(--white); }

.why-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(249,115,22,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}

.why-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}
.why-item-text { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* keep old names for any remnant usage */
.why-us-card { padding: 20px; }
.why-us-icon { width: 50px; height: 50px; border-radius: 10px; background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--accent); }
.why-us-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-us-text { color: var(--gray); font-size: 0.9rem; }

/* ===================== STATS SECTION ===================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M40 0L0 40L40 80L80 40Z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Clean horizontal stats row — no individual boxes */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 20px 10px;
}

.stat-divider-v {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    align-self: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    display: block;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
}
.stat-sublabel {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    margin-top: 4px;
}

/* keep old names */
.stat-card { text-align: center; padding: 20px; position: relative; z-index: 1; }
.stat-icon { display: none; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); margin: auto; }

/* ===================== PRODUCT CARD V2 (listing page) ===================== */

/* Quick-view hint label on image hover */
.product-quickview-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(30,64,175,0.82);
    color: #fff;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
}
.product-img-wrap:hover .product-quickview-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Always-visible actions row */
.product-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

/* Primary Add to Cart button (full width) */
.pcard-add-btn {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.pcard-add-btn:hover:not([disabled]) {
    background: var(--accent-dark);
    transform: translateY(-1px);
    color: #fff;
}

/* WhatsApp icon button */
.pcard-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.pcard-wa-btn:hover { background: #1da851; transform: translateY(-1px); color: #fff; }

/* Custom enquiry micro-link */
.pcard-enquiry-link {
    margin-top: 8px;
    text-align: center;
}
.pcard-enquiry-link a {
    font-size: 0.75rem;
    color: var(--gray);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pcard-enquiry-link a:hover { color: var(--accent); }

/* Custom Enquiry Banner (below grid) */
.custom-enquiry-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 16px;
    padding: 22px 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.custom-enquiry-icon {
    font-size: 2.2rem;
    color: var(--accent);
    flex-shrink: 0;
}
.custom-enquiry-text {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.custom-enquiry-text strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}
.custom-enquiry-text span {
    color: rgba(255,255,255,0.72);
    font-size: 0.83rem;
    line-height: 1.5;
}
.custom-enquiry-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.enquiry-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.enquiry-wa-btn:hover { background: #1da851; color: #fff; }
@media (max-width: 575px) {
    .custom-enquiry-banner { padding: 18px; }
    .custom-enquiry-actions { width: 100%; }
    .custom-enquiry-actions .btn-accent,
    .enquiry-wa-btn { flex: 1; justify-content: center; }
}

/* ===================== PROJECT GALLERY ===================== */
.projects-gallery-section { background: var(--light); padding: 80px 0; }

.gallery-eyebrow {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gallery-subtext {
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 12px auto 0;
    line-height: 1.75;
}

/* Filter tabs */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 28px 0 32px;
}
.gallery-filter-btn {
    padding: 7px 20px;
    border-radius: 50px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
@media (max-width: 575px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.gallery-item { transition: opacity 0.3s, transform 0.3s; }
.gallery-item.hidden { display: none; }

/* Card */
.gallery-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--light-gray);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.gallery-card:hover img { transform: scale(1.06); }

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(30,64,175,0.82) 0%, rgba(30,64,175,0) 55%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 2px;
}
.gallery-card-cat {
    font-size: 0.72rem;
    color: var(--accent-light);
    font-weight: 500;
}
.gallery-zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,36,96,0.96);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox.open { display: flex; }

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
.lightbox-inner img {
    max-width: 88vw;
    max-height: 82vh;
    border-radius: 10px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    margin-top: 12px;
    font-weight: 500;
}
.lightbox-counter {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-top: 4px;
}
.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    z-index: 10001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    z-index: 10001;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ===================== GOOGLE REVIEWS ===================== */
.google-reviews-section { background: var(--white); padding: 80px 0; }

.google-rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 18px 36px;
    margin-top: 20px;
}
.google-g-icon { width: 32px; height: 32px; }
.google-rating-score {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.google-rating-badge .google-rating-stars { color: #FBBC05; font-size: 1.1rem; }
.google-rating-count { font-size: 0.8rem; color: var(--gray); font-weight: 500; }

.google-review-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.google-review-card:hover {
    box-shadow: 0 8px 32px rgba(30,64,175,0.10);
    transform: translateY(-4px);
}
.google-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.google-reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.google-reviewer-info { flex: 1; min-width: 0; }
.google-reviewer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.google-review-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.google-review-stars { color: #FBBC05; font-size: 0.78rem; }
.google-review-date { font-size: 0.75rem; color: var(--gray); }
.google-review-logo { flex-shrink: 0; opacity: 0.85; }
.google-review-text {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.75;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.google-review-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}
.review-read-more {
    display: none;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 6px 0 0;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}
.review-read-more:hover { color: var(--accent); }

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    padding: 13px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary);
    text-decoration: none;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.google-reviews-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 4px 20px rgba(66,133,244,0.18);
    color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--light); padding: 80px 0; }

/* Open quote style — no card box */
.testimonial-open {
    padding: 28px 0;
    border-top: 2px solid var(--light-gray);
    height: 100%;
}

/* keep old class for graceful fallback */
.testimonial-card {
    padding: 28px 0;
    border-top: 2px solid var(--light-gray);
    height: 100%;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}
.testimonial-company {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #ea580c 50%, #c2410c 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 0; }

.cta-btn-white {
    background: var(--white);
    color: var(--accent);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn-white:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cta-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================== FOOTER ===================== */
.footer-main {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-brand { margin-bottom: 20px; }
.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a i { font-size: 0.75rem; color: var(--accent); }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}
.footer-contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(249,115,22,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-contact-text strong { color: var(--white); display: block; font-family: var(--font-heading); font-size: 0.78rem; margin-bottom: 2px; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}
.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--accent); }

/* ===================== MOBILE STICKY CTA ===================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--primary);
    border-top: 2px solid var(--accent);
    padding: 10px 16px;
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    padding: 12px 10px;
    border-radius: var(--radius);
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.mobile-cta-call {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: var(--white);
}
.mobile-cta-whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
    color: var(--white);
}
.mobile-cta-btn:hover { opacity: 0.9; color: var(--white); }

@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 70px; }
}

/* ===================== BREADCRUMB ===================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 138px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h40v40H0z' fill-rule='evenodd' clip-rule='evenodd' d='M20 0L0 20L20 40L40 20L20 0z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}
.breadcrumb-nav { margin: 0; }
.breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: var(--accent); }

/* ===================== PRODUCTS PAGE ===================== */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.sidebar-widget-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    width: 100%;
}

.category-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    border-radius: var(--radius);
    color: var(--dark-gray);
    font-size: 0.9rem;
    transition: var(--transition);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}
.category-filter-link:hover, .category-filter-link.active {
    background: rgba(249,115,22,0.1);
    color: var(--accent);
}
.category-filter-link .count-badge {
    background: var(--light-gray);
    color: var(--gray);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.category-filter-link.active .count-badge {
    background: var(--accent);
    color: var(--white);
}

.sort-bar {
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.sort-result-count {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gray);
}
.sort-result-count strong { color: var(--primary); }

/* ===================== PRODUCT DETAIL PAGE ===================== */
.product-detail-section { padding: 50px 0 70px; }

.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.product-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-name {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-detail-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 16px;
}
.product-detail-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 4px;
}
.product-detail-original {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}
.product-detail-savings {
    background: rgba(40,167,69,0.1);
    color: var(--success);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-left: 8px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
}
.qty-btn {
    width: 40px;
    height: 44px;
    background: var(--light);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.qty-btn:hover { background: var(--accent); color: var(--white); }
.qty-input {
    width: 60px;
    height: 44px;
    border: none;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.product-desc-tabs .nav-tabs {
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 24px;
}
.product-desc-tabs .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray);
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.product-desc-tabs .nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: none;
}

/* ===================== CART PAGE ===================== */
.cart-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.cart-table { margin: 0; }
.cart-table th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    padding: 14px 16px;
    border: none;
}
.cart-table td {
    vertical-align: middle;
    padding: 16px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.92rem;
}
.cart-product-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--light);
}
.cart-product-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}
.cart-qty-input {
    width: 70px;
    text-align: center;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
}
.cart-remove-btn {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px 8px;
}
.cart-remove-btn:hover { color: #a71d2a; transform: scale(1.2); }

.order-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.order-summary-header {
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}
.order-summary-body { padding: 20px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.92rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total-row {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    border-top: 2px solid var(--light-gray);
    margin-top: 8px;
    padding-top: 14px;
}

/* ===================== CHECKOUT PAGE ===================== */
.checkout-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}
.checkout-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}
.checkout-section-title i { color: var(--accent); }

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.92rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

/* ===================== SUCCESS PAGE ===================== */
.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(40,167,69,0.3);
    animation: successPop 0.6s ease;
}

/* ===================== AUTH PAGES ===================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0 40px;
    position: relative;
}
.auth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.auth-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 6px;
}
.auth-subtitle { color: var(--gray); font-size: 0.92rem; margin-bottom: 28px; }

/* ===================== ACCOUNT PAGE ===================== */
.account-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.account-user-info {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 28px;
    text-align: center;
}
.account-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 14px;
    font-family: var(--font-heading);
    font-weight: 700;
}
.account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--dark-gray);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
    text-decoration: none;
}
.account-nav-link:hover, .account-nav-link.active {
    background: rgba(249,115,22,0.07);
    color: var(--accent);
    padding-left: 24px;
}
.account-nav-link i { color: var(--accent); font-size: 1.1rem; }

/* ===================== CONTACT PAGE ===================== */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    color: var(--white);
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 46px;
    height: 46px;
    background: rgba(249,115,22,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-info-text { font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.contact-info-text strong { color: var(--white); display: block; font-family: var(--font-heading); margin-bottom: 4px; }

/* ===================== ABOUT PAGE ===================== */
.about-feature-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 16px;
    border-left: 4px solid var(--accent);
}
.about-feature-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ===================== TOAST NOTIFICATIONS ===================== */
.toast-container-custom {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}
.toast-custom {
    min-width: 300px;
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid;
}
.toast-success { background: #d4edda; color: #155724; border-left-color: var(--success); }
.toast-error { background: #f8d7da; color: #721c24; border-left-color: var(--danger); }
.toast-info { background: #d1ecf1; color: #0c5460; border-left-color: #17a2b8; }

/* ===================== FLASH MESSAGES ===================== */
.flash-alert {
    border-radius: var(--radius);
    border: none;
    padding: 14px 18px;
    font-family: var(--font-heading);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.alert-danger { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }

/* ===================== PAGINATION ===================== */
.pagination .page-link {
    color: var(--primary);
    border-color: var(--light-gray);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    transition: var(--transition);
}
.pagination .page-link:hover, .pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ===================== SEARCH BAR ===================== */
.search-bar-wrap {
    position: relative;
    max-width: 500px;
}
.search-bar-wrap input {
    padding-left: 44px;
    border-radius: 50px;
    border: 2px solid var(--light-gray);
}
.search-bar-wrap input:focus { border-color: var(--accent); }
.search-bar-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

/* ===================== STOCK BADGE ===================== */
.stock-in { color: var(--success); font-size: 0.82rem; font-weight: 600; font-family: var(--font-heading); }
.stock-out { color: var(--danger); font-size: 0.82rem; font-weight: 600; font-family: var(--font-heading); }
.stock-low { color: var(--warning); font-size: 0.82rem; font-weight: 600; font-family: var(--font-heading); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes countUp { from { opacity: 0.3; } to { opacity: 1; } }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    .hero-stats-strip { margin-top: 40px; padding-left: 20px; }
    .hero-stat-num { font-size: 2rem; min-width: 64px; }
    .section-padding { padding: 60px 0; }
    .navbar-main.scrolled .navbar-collapse,
    .navbar-main .navbar-collapse {
        background: #ffffff;
        padding: 16px;
        border-radius: var(--radius);
        margin-top: 10px;
        border: 1px solid #e5e7eb;
    }
    /* Mobile toggle chevron button */
    .mobile-nav-toggle-btn {
        background: none;
        border: none;
        color: #2d2d2d;
        padding: 6px 10px;
        cursor: pointer;
        font-size: 0.85rem;
        transition: transform 0.2s ease, color 0.2s ease;
    }
    .mobile-nav-toggle-btn[aria-expanded="true"] {
        color: var(--accent);
        transform: rotate(180deg);
    }
    /* Mobile collapsible category submenu */
    .mobile-nav-submenu {
        list-style: none;
        margin: 4px 0 8px 0;
        padding: 4px 0 4px 12px;
        border-left: 3px solid var(--accent);
    }
    .mobile-nav-submenu li a {
        display: block;
        color: #2d2d2d;
        font-family: var(--font-heading);
        font-size: 0.85rem;
        padding: 8px 12px;
        text-decoration: none;
        border-radius: 6px;
        transition: var(--transition);
    }
    .mobile-nav-submenu li a:hover {
        color: var(--accent);
        background: rgba(249,115,22,0.1);
    }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .section-title { font-size: 1.8rem; }
    .stat-number { font-size: 2.2rem; }
    .stat-divider-v { display: none; }
    .stat-item { min-width: 45%; }
    .auth-card { padding: 28px 20px; }
    .checkout-form-card { padding: 20px; }
    .cta-banner .d-flex { flex-direction: column; gap: 12px !important; }
    .category-strip { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .category-pill { padding: 14px 8px; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 1.9rem; }
    .hero-stat-num { font-size: 1.8rem; min-width: 56px; }
    .product-name { font-size: 0.92rem; }
    .why-us-list { gap: 0; }
    .category-strip { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}

/* ===================== WHATSAPP FLOATING ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { background: #1da851; color: white; transform: scale(1.1); }
@media (max-width: 768px) { .whatsapp-float { bottom: 80px; right: 14px; } }

/* ===================== MISC ===================== */
.divider-accent {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 40px 0;
}
.fw-bold { font-family: var(--font-heading); }
.text-muted { color: var(--gray) !important; }

.map-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #e8edf2, #d1dae6);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}
.map-placeholder i { font-size: 3rem; margin-bottom: 12px; color: var(--primary-light); }

/* Privacy / Terms pages */
.content-page { padding: 60px 0; }
.content-page h2 { font-size: 1.5rem; color: var(--primary); margin-top: 32px; }
.content-page p { color: var(--gray); line-height: 1.8; }
.content-page ul { color: var(--gray); line-height: 2; }
.page-content-body h2 { font-size: 1.4rem; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary); margin-top: 2rem; margin-bottom: 0.75rem; }
.page-content-body h3 { font-size: 1.15rem; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--primary); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.page-content-body p { color: var(--gray); line-height: 1.9; margin-bottom: 1rem; }
.page-content-body ul, .page-content-body ol { color: var(--gray); line-height: 2; padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content-body a { color: var(--accent); text-decoration: underline; }
.page-content-body strong { color: var(--primary); }

/* Order status badges */
.order-status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: capitalize;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped { background: #cce5ff; color: #004085; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.pay-paid { background: #d4edda; color: #155724; }
.pay-pending { background: #fff3cd; color: #856404; }
.pay-failed { background: #f8d7da; color: #721c24; }

/* Section heading accent line */
.heading-with-line { position: relative; display: inline-block; }
.heading-with-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Page loading indicator */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}
.page-loader.hide { opacity: 0; pointer-events: none; }
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
