/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #ff8c42;
    --accent-color: #e65100;
    --dark-bg: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #fff8f5;
    --border-color: #ddd;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(255, 107, 53, 0.15);
    --shadow-hover: 0 5px 20px rgba(255, 107, 53, 0.25);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* No transition: paired with .scrolled toggling, any animation reads as “blink” */
    transition: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

/*
 * Scrolled: only shadow + visual scale on .logo.
 * No padding/font/height changes — those reflow the sticky header and cause blink when scrolling up.
 */
.site-header.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .logo {
    transform: scale(0.88);
    transform-origin: left center;
}

.top-bar {
    background: var(--dark-bg);
    color: var(--white);
    padding: 8px 0;
    opacity: 1;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

/* Hidden Admin Login Link */
.admin-login-hidden {
    color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1;
    cursor: default;
}

.admin-login-hidden i {
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.admin-login-hidden:hover i {
    opacity: 1;
    color: var(--white);
}

.admin-login-hidden:hover {
    background: var(--primary-color);
    cursor: pointer;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Navigation */
.top-bar .container,
.main-nav .container {
    padding-top: 0;
    padding-bottom: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo {
    transition: none;
    transform-origin: left center;
}

.logo-badge {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: none;
}

.logo-image {
    width: 90px;
    height: 70px;
    object-fit: fill;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.05;
    font-weight: 700;
}

.logo .tagline {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.2;
}

.logo-link:hover .logo-badge {
    transform: translateY(-1px);
    box-shadow: none;
    transition: transform 0.15s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 46px 10px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.2s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Outline style for light sections (product detail, category nav, gallery, etc.) */
.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Ghost button on dark gradient blocks only */
.hero .btn-secondary,
.page-header .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero .btn-secondary:hover,
.page-header .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 32px 10px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-bg);
}

/* Stats Section */
.stats-section {
    padding: 32px 10px;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-box h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    color: var(--text-light);
}

/* Categories & Products */
.categories-section,
.products-section {
    padding: 32px 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

.collections-preview-intro a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.collections-preview-intro a:hover {
    color: var(--accent-color);
}

/* Homepage: horizontal series covers (preview only — no links on tiles) */
.collections-preview-section .collections-scroll-wrap {
    margin: 0 -10px;
    padding: 0 4px;
}

.collections-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 10px;
    padding: 8px 10px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.collections-scroll::-webkit-scrollbar {
    height: 8px;
}

.collections-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.collections-scroll-card {
    flex: 0 0 auto;
    width: min(300px, 78vw);
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: default;
    user-select: none;
}

.collections-scroll-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bg-light);
}

.collections-scroll-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.collections-scroll-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border-color);
    background: linear-gradient(145deg, #eef2f6 0%, #e2e8f0 100%);
}

.collections-scroll-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 14px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
}

.collections-scroll-series-name {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.collections-preview-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

/* Horizontal Scroll Gallery Section */
.horizontal-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.horizontal-scroll-gallery {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 30px 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll-gallery::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-gallery::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.horizontal-scroll-gallery::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.horizontal-scroll-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.gallery-item {
    flex: 0 0 350px;
    min-width: 350px;
    animation: galleryFadeIn 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-image-wrapper:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(52, 152, 219, 0.9) 0%,
        rgba(155, 89, 182, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: white;
    animation: iconZoom 2s ease-in-out infinite;
}

@keyframes iconZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Horizontal Gallery */
@media (max-width: 768px) {
    .horizontal-gallery-section {
        padding: 50px 0;
    }

    .gallery-item {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .gallery-overlay i {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .gallery-overlay i {
        font-size: 32px;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: var(--bg-light);
    padding: 8px;
}

.no-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--border-color);
}

.category-info {
    padding: 25px;
    text-align: center;
}

.category-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.category-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-view {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 500;
}

.btn-view:hover {
    background: var(--accent-color);
}

/* Products Grid - Horizontal Scroll */
.products-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.products-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 0 0 280px;
    min-width: 280px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-detail {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
}

.btn-view-detail:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    font-size: 12px;
    color: var(--secondary-color);
    background: rgba(52, 152, 219, 0.1);
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    min-height: 50px;
}

.btn-enquiry {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 500;
}

.btn-enquiry:hover {
    background: var(--secondary-color);
}

/* Product Detail Page */
.product-detail-section {
    padding: 32px 10px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-detail-description {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 36rem;
    text-align: left;
}

.product-detail-tags-wrap {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.product-detail-tags-heading {
    color: var(--primary-color);
    margin-bottom: 0.65rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-detail-tags-scroll {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    margin: 0 -4px;
    padding-left: 4px;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 53, 0.45) transparent;
}

.product-detail-tags-scroll::-webkit-scrollbar {
    height: 6px;
}

.product-detail-tags-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.45);
    border-radius: 3px;
}

.product-detail-tag-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.product-detail-tag-pill:hover {
    background: #e0e7ff;
    color: #3730a3;
}

.product-detail-tag-pill .fa-tag {
    font-size: 10px;
    opacity: 0.85;
}

.product-image-large {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.product-image-large img {
    max-height: 500px;
    width: auto;
    margin: 0 auto;
}

.product-category-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-details h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-details .product-category-badge + h1 {
    margin-top: 0;
}

.product-description,
.product-features {
    margin-bottom: 30px;
}

.product-description h3,
.product-features h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-features li i {
    color: green;
    margin-right: 10px;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.related-products {
    margin-top: 80px;
}

.related-products h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 16px 10px;
    text-align: center;
}

/* Product detail: left-aligned breadcrumb on brand bar */
.page-header.page-header--product-detail {
    text-align: left;
    padding: 20px 10px 22px;
}

.page-header--product-detail__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb.breadcrumb--product-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 1;
}

.breadcrumb--product-detail a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.breadcrumb--product-detail a:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.breadcrumb--product-detail .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    user-select: none;
    margin: 0 0.1rem;
}

.breadcrumb--product-detail .breadcrumb-current {
    color: var(--white);
    font-weight: 600;
    max-width: 100%;
    word-break: break-word;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header-series-line {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px;
    opacity: 0.95;
}

.category-series-line {
    font-size: 0.95rem;
    color: var(--text-muted, #666);
    margin: 4px 0 8px;
}

.product-display-name {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    margin: 6px 0 0;
}

.product-display-name--large {
    font-size: 1.15rem;
    margin-top: 8px;
}

.product-series-line {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px;
    opacity: 0.9;
}

.product-finish-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 10px;
}

.finish-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-color, #333);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-available-in {
    margin: 1.25rem 0;
}

.product-available-in h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.available-in-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.available-in-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.available-in-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.available-in-desc {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    color: var(--text-muted, #555);
    line-height: 1.45;
}

.breadcrumb {
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.btn-filter {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
}

.btn-filter:hover {
    background: var(--accent-color);
}

/* Pagination */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.page-btn,
.page-number {
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
}

.page-number.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.page-btn:hover,
.page-number:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Category Navigation */
.category-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 32px 10px;
}

.empty-state i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--text-color);
    margin-bottom: 30px;
}

/* About Page */
.about-section {
    padding: 32px 10px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 32px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.stats-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item h3 {
    font-size: 42px;
    margin-bottom: 10px;
}

.why-choose-us {
    padding: 32px 10px;
    background: var(--bg-light);
}

.our-values {
    padding: 32px 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Page */
.contact-section {
    padding: 32px 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-box h2,
.contact-form-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.social-links-large h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    margin-right: 10px;
}

/* Map Section */
.map-section {
    background: var(--bg-light);
    padding: 0;
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 60px 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 50px 10px 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-stats {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-stats .stat {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.footer-stats strong {
    display: block;
    font-size: 18px;
    margin-bottom: 3px;
}

.footer-stats span {
    font-size: 10px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 8px;
    }

    .top-bar {
        padding: 5px 0;
    }

    .main-nav {
        padding: 3px 0;
    }

    .logo-badge {
        width: auto;
        height: auto;
        border-radius: 0;
    }

    .logo-image {
        width: 108px;
        height: 108px;
    }

    .logo h1 {
        font-size: 23px;
    }

    .logo .tagline {
        font-size: 11px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 8px 12px;
        border-bottom: 1px solid var(--border-color);
    }

    .products-grid {
        gap: 14px;
    }

    .product-card {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .product-image {
        height: 170px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-grid,
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .category-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .products-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .product-actions {
        flex-direction: column;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-stats {
        flex-direction: column;
        gap: 8px;
    }

    .footer-stats .stat {
        padding: 10px;
    }

    .footer-stats strong {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 7px;
    }

    .hero,
    .features,
    .stats-section,
    .categories-section,
    .products-section,
    .product-detail-section,
    .about-section,
    .why-choose-us,
    .our-values,
    .contact-section,
    .cta-section,
    .empty-state {
        padding: 26px 7px;
    }

    .page-header {
        padding: 14px 7px;
    }

    .site-footer {
        padding: 20px 7px 8px;
    }

    .logo-link {
        gap: 8px;
    }

    .logo-image {
        width: 96px;
        height: 96px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo .tagline {
        font-size: 10px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        gap: 10px;
    }

    .product-card {
        flex: 0 0 180px;
        min-width: 180px;
        border-radius: 8px;
    }

    .product-image {
        height: 140px;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 14px;
        min-height: 36px;
        margin-bottom: 8px;
    }

    .product-category {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .btn-enquiry {
        padding: 7px;
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}
