/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors matching design */
    --primary-dark: #1a1a1a;
    --secondary-dark: #252525;
    --accent-dark: #2d2d2d;
    --bg-dark: #0f0f0f;

    /* Accent Colors */
    --accent-orange: #ff6b35;
    --accent-cream: #f4e4d7;
    --accent-green: #8bc34a;
    --accent-gold: #d4af37;

    /* Text Colors */
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #333333;

    /* Fonts */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing - Compact */
    --section-padding: 60px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

a, button, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-orange);
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.highlight {
    color: var(--accent-orange);
}

/* ===========================
   BUTTONS
   =========================== */
button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-light);
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--text-light);
    border-radius: 2px;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--text-light);
    border-radius: 2px;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.btn-category {
    background-color: var(--accent-cream);
    color: var(--text-dark);
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-top: 15px;
}

.btn-category:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 36px;
    font-size: 0.9rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-light);
}

.logo h1 span {
    color: var(--accent-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu li a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.search-trigger:hover {
    color: var(--accent-orange);
}

.search-trigger svg {
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%),
                url('../images/halal-meat-poultry-featured-homepage.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    margin-top: 52px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 950px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid var(--accent-orange);
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 28px;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-gray);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-orange), transparent);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ===========================
   FEATURED CATEGORIES
   =========================== */
.featured-categories {
    padding: var(--section-padding);
    background-color: var(--primary-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.category-content h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.category-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
    min-height: 1.5em;
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products-section {
    padding: var(--section-padding);
    background-color: var(--bg-dark);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.filter-btn {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
}

/* Load More Button */
.load-more-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.load-more-wrapper.visible {
    opacity: 1;
}

.btn-load-more {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--text-light);
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--accent-orange);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.btn-load-more svg {
    transition: transform 0.3s ease;
}

.btn-load-more:hover svg {
    transform: translateY(3px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Product Card Add to Basket Button */
.product-card-add-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
    z-index: 10;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
}

.product-card:hover .product-card-add-btn,
.product-card-add-btn.in-basket {
    opacity: 1;
    transform: scale(1);
}

.product-card-add-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.product-card-add-btn.in-basket {
    background: var(--accent-green);
}

.product-card-add-btn.in-basket:hover {
    background: #7cb342;
}

.product-card-add-btn.clicked {
    transform: scale(0.9);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--accent-dark);
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-green);
    color: var(--text-light);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.product-feature {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

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

.view-details {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.product-card:hover .view-details {
    gap: 15px;
}

.view-details::after {
    content: "\2192";
    font-size: 1.2rem;
}

/* ===========================
   QUALITY SECTION
   =========================== */
.quality-section {
    padding: var(--section-padding);
    background-color: var(--primary-dark);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quality-content h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.quality-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

.quality-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-list li {
    display: flex;
    gap: 16px;
}

.quality-icon {
    width: 42px;
    height: 42px;
    background-color: var(--accent-orange);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.quality-list h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.quality-list p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.quality-image {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
}

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

.quality-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    background-color: var(--accent-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-inner {
    text-align: center;
}

.badge-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.badge-subtext {
    display: block;
    font-size: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: var(--text-light);
    color: var(--accent-orange);
}

.cta-section .btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--primary-dark);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.footer-col h3 span {
    color: var(--accent-orange);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.85rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-col ul li {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ===========================
   PRODUCT DETAIL PAGE
   =========================== */
.breadcrumb {
    background-color: var(--secondary-dark);
    padding: 14px 0;
    margin-top: 52px;
}

.breadcrumb a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb span {
    color: var(--text-gray);
    margin: 0 10px;
}

.product-detail {
    padding: var(--section-padding);
    background-color: var(--bg-dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 450px;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    overflow: hidden;
}

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

.halal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-green);
    color: var(--text-light);
    padding: 10px 18px;
    border-radius: 4px;
    text-align: center;
}

.halal-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.halal-badge small {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    height: 90px;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

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

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
}

.product-title {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.product-highlights h3,
.product-certifications h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.product-highlights ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.product-highlights li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.cert-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-dark);
    padding: 10px 14px;
    border-radius: 4px;
}

.cert-icon {
    width: 28px;
    height: 28px;
    background-color: var(--accent-green);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cert-badge span {
    font-size: 0.8rem;
    font-weight: 600;
}

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

.product-note {
    background-color: rgba(255, 107, 53, 0.1);
    border-left: 3px solid var(--accent-orange);
    padding: 14px;
    border-radius: 4px;
}

.product-note p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.related-products {
    padding: 50px 0;
    background-color: var(--primary-dark);
}

/* ===========================
   PRODUCT DETAIL V2 - Premium Minimal Design
   =========================== */
.product-detail-v2 {
    padding: 120px 0 80px;
    background-color: var(--bg-dark);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 450px;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-main .halal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-green);
    color: var(--text-light);
    padding: 10px 18px;
    border-radius: 4px;
    text-align: center;
}

.gallery-main .halal-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.gallery-main .halal-badge small {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumbs .thumbnail {
    height: 90px;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

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

.gallery-thumbs .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-category-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.product-details h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--text-light);
}

.product-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.highlights-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.cert-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: rgba(139, 195, 74, 0.08);
    border: 1px solid rgba(139, 195, 74, 0.15);
    border-radius: 6px;
}

.cert-tag svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.cert-tag span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Product CTA Buttons */
.product-cta {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.btn-add-basket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    background-color: var(--accent-orange);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-add-basket:hover {
    background-color: #e85a28;
}

.btn-add-basket:active {
    transform: scale(0.98);
}

.btn-add-basket.in-basket {
    background-color: var(--accent-green);
}

.btn-add-basket.in-basket:hover {
    background-color: #7cb342;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.btn-contact:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
}

.btn-contact svg {
    transition: transform 0.2s ease;
}

.btn-contact:hover svg {
    transform: translateX(3px);
}

/* Product Notice */
.product-notice {
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.product-notice p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Related Section V2 */
.related-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.related-header {
    margin-bottom: 40px;
}

.related-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.related-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* ===========================
   CONTACT PAGE V2 - Premium Minimal Design
   =========================== */
.contact-page {
    min-height: 100vh;
    padding: 140px 0 100px;
    background-color: var(--bg-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Sidebar - Left Side */
.contact-sidebar {
    position: sticky;
    top: 120px;
}

.contact-intro {
    margin-bottom: 56px;
}

.contact-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.contact-intro h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 380px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.detail-value {
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
    font-style: normal;
    transition: color 0.2s ease;
}

a.detail-value:hover {
    color: var(--accent-orange);
}

.detail-phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Contact Form Container - Right Side */
.contact-form-container {
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 48px;
}

.contact-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.form-field label .optional {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--text-light);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: rgba(255, 107, 53, 0.03);
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}

.form-field select option {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    padding: 12px;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Form Submit Button */
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-light);
    background-color: var(--accent-orange);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.form-submit:hover {
    background-color: #e85a28;
}

.form-submit:active {
    transform: scale(0.98);
}

.form-submit svg {
    transition: transform 0.2s ease;
}

.form-submit:hover svg {
    transform: translateX(3px);
}

.form-submit.loading {
    pointer-events: none;
    opacity: 0.85;
}

.form-submit .btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

/* Form Messages V2 */
.contact-form-v2 .form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.contact-form-v2 .form-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
}

.contact-form-v2 .form-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #51cf66;
}

/* Legacy form-group support for honeypot */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-light);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background-color: var(--accent-dark);
    border: 2px solid transparent;
    border-radius: 2px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: var(--primary-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message svg {
    flex-shrink: 0;
}

.form-error {
    background-color: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.form-error svg {
    color: #ff6b6b;
}

.form-success {
    background-color: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
}

.form-success svg {
    color: #51cf66;
}

/* Button Loading State */
.btn-primary.loading,
.btn-secondary.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ===========================
   ABOUT PAGE V2 - Premium Minimal Design
   =========================== */
.about-page {
    min-height: 100vh;
    padding: 140px 0 80px;
    background-color: var(--bg-dark);
}

/* About Hero V2 */
.about-hero-v2 {
    max-width: 800px;
    margin-bottom: 100px;
}

.about-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.about-hero-v2 h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--text-light);
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 600px;
}

/* Story Section */
.about-story {
    margin-bottom: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.story-block {
    max-width: 480px;
}

.story-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.story-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.story-block p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    margin-bottom: 100px;
}

.values-header {
    margin-bottom: 48px;
}

.values-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.values-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px 28px;
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: border-color 0.2s ease;
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(255, 107, 53, 0.3);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Certifications Section V2 */
.certs-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 56px;
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.certs-content {
    max-width: 400px;
}

.certs-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.certs-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.certs-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.certs-list {
    display: flex;
    gap: 16px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background-color: rgba(139, 195, 74, 0.08);
    border: 1px solid rgba(139, 195, 74, 0.15);
    border-radius: 8px;
}

.cert-badge svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.cert-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

/* CTA Card (inside about-page) */
.cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 56px;
    margin-top: 24px;
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.cta-card-content {
    max-width: 450px;
}

.cta-card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* CTA Section V2 (legacy) */
.cta-section-v2 {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-light);
    background-color: var(--accent-orange);
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.cta-button:hover {
    background-color: #e85a28;
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button svg {
    transition: transform 0.2s ease;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

/* Legacy About Styles (keep for compatibility) */
.about-hero {
    padding: 80px 0 40px;
    background-color: var(--bg-dark);
    text-align: center;
    margin-top: 52px;
}

.about-content {
    padding: 50px 0 60px;
    background-color: var(--primary-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
    color: var(--text-light);
}

.about-section p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Features Grid (legacy) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: var(--secondary-dark);
    padding: 24px;
    border-radius: 4px;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.feature-icon i {
    color: var(--accent-orange);
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Certifications Section (legacy) */
.certifications-section {
    background-color: var(--secondary-dark);
    padding: 36px;
    border-radius: 4px;
    text-align: center;
}

.certifications-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--text-light);
}

.certifications-section > p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.cert-list {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cert-icon-large {
    width: 54px;
    height: 54px;
    background-color: rgba(139, 195, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon-large i {
    color: var(--accent-green);
    width: 26px;
    height: 26px;
}

.cert-item span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

/* ===========================
   SEARCH OVERLAY
   =========================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.search-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.search-modal {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 70vh;
    background-color: var(--secondary-dark);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(-20px);
    transition: transform 0.2s ease;
}

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

.search-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input-wrapper .search-icon {
    color: var(--text-gray);
    flex-shrink: 0;
}

#searchInput {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 8px 0;
}

#searchInput::placeholder {
    color: var(--text-gray);
}

.search-loading {
    display: none;
}

.search-loading.active {
    display: flex;
}

.search-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    animation: searchSpin 0.6s linear infinite;
}

@keyframes searchSpin {
    to { transform: rotate(360deg); }
}

.search-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.esc-badge {
    display: inline-block;
    background-color: var(--accent-dark);
    color: var(--text-gray);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.search-close:hover .esc-badge {
    background-color: rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
}

.esc-text {
    display: inline;
}

.esc-icon {
    display: none;
}

.esc-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .esc-text {
        display: none;
    }
    .esc-icon {
        display: inline-flex;
    }
}

.search-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    min-height: 200px;
    max-height: 50vh;
}

.search-results {
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.search-result-item.selected {
    outline: 2px solid var(--accent-orange);
    outline-offset: -2px;
}

@media (hover: hover) {
    .search-result-item:hover {
        background-color: rgba(255, 107, 53, 0.1);
    }
}

.search-result-image {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--accent-dark);
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.search-result-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-name mark {
    background: linear-gradient(120deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    color: var(--text-light);
    padding: 0 2px;
    border-radius: 2px;
}

.search-result-arrow {
    display: none;
}

.search-empty,
.search-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
}

.search-empty.active,
.search-no-results.active {
    display: flex;
}

.search-empty-icon,
.search-no-results-icon {
    color: var(--text-gray);
    margin-bottom: 16px;
    opacity: 0.5;
}

.search-empty h3,
.search-no-results h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.search-empty p,
.search-no-results p {
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 280px;
}

.search-footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
}

.search-hints {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.search-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.search-hint kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background-color: var(--accent-dark);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
}

/* Search Results Categories */
.search-results-section {
    margin-bottom: 8px;
}

.search-results-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.search-results-count {
    background-color: var(--accent-dark);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .quality-grid,
    .product-detail-grid {
        gap: 40px;
    }

    /* About Page V2 - Large Tablet */
    .about-hero-v2 h1 {
        font-size: 3.5rem;
    }

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

    .certs-section,
    .cta-card {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        padding: 40px;
    }

    .certs-content,
    .cta-card-content {
        max-width: 100%;
    }

    .certs-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 52px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 52px);
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-wrapper {
        justify-content: flex-start;
        gap: 10px;
    }

    .logo {
        margin-right: auto;
    }

    .nav-actions {
        margin-left: auto;
        gap: 6px;
    }

    .hamburger {
        display: flex;
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

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

    .quality-grid,
    .product-detail-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .about-hero {
        padding: 70px 0 30px;
    }

    .about-hero-content h1 {
        font-size: 2.4rem;
    }

    .about-grid {
        gap: 30px;
    }

    /* Product Detail V2 - Tablet */
    .product-detail-v2 {
        padding: 100px 0 60px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product-gallery {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .product-details h1 {
        font-size: 2.5rem;
    }

    .related-header h2 {
        font-size: 2rem;
    }

    /* Contact Page V2 - Tablet */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-sidebar {
        position: static;
    }

    .contact-intro h1 {
        font-size: 3rem;
    }

    .contact-form-container {
        padding: 36px;
    }

    /* About Page V2 - Tablet */
    .about-page {
        padding: 120px 0 60px;
    }

    .about-hero-v2 {
        margin-bottom: 70px;
    }

    .about-hero-v2 h1 {
        font-size: 3rem;
    }

    .about-lead {
        font-size: 1.05rem;
    }

    .about-story {
        margin-bottom: 70px;
        padding-top: 50px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-block {
        max-width: 100%;
    }

    .values-section {
        margin-bottom: 70px;
    }

    .values-header h2 {
        font-size: 2rem;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 20px;
    }

    .certifications-section {
        padding: 28px;
    }

    .quality-content h2,
    .cta-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 450px;
        height: 75vh;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        margin-bottom: 40px;
    }

    .scroll-indicator {
        bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Always show add button on mobile */
    .product-card-add-btn {
        opacity: 1;
        transform: scale(1);
    }

    .category-content {
        padding: 18px 18px 24px;
    }

    .category-content h3 {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .category-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .category-content .btn-category {
        padding: 10px 20px;
        font-size: 0.75rem;
        margin-top: 10px;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .quality-content h2,
    .cta-content h2,
    .product-title {
        font-size: 2rem;
    }

    .about-hero {
        padding: 60px 0 30px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 0.9rem;
    }

    .about-content {
        padding: 30px 0 40px;
    }

    .about-section h2,
    .certifications-section h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 18px;
    }

    .certifications-section {
        padding: 24px;
    }

    .cert-list {
        gap: 24px;
    }

    /* Product Detail V2 - Mobile */
    .product-detail-v2 {
        padding: 90px 0 50px;
    }

    .product-detail-layout {
        gap: 36px;
    }

    .product-gallery {
        max-width: 100%;
    }

    .gallery-main {
        border-radius: 10px;
    }

    .gallery-thumbs {
        gap: 10px;
    }

    .gallery-thumbs .thumbnail {
        border-radius: 6px;
    }

    .product-details {
        gap: 24px;
    }

    .product-details h1 {
        font-size: 2rem;
    }

    .product-cta {
        flex-direction: column;
    }

    .btn-add-basket,
    .btn-contact {
        width: 100%;
        padding: 14px 24px;
    }

    .cert-tags {
        gap: 8px;
    }

    .cert-tag {
        padding: 8px 12px;
    }

    .cert-tag span {
        font-size: 0.75rem;
    }

    .related-section {
        padding: 60px 0;
    }

    .related-header {
        margin-bottom: 28px;
    }

    .related-header h2 {
        font-size: 1.8rem;
    }

    /* Contact Page V2 - Mobile */
    .contact-page {
        padding: 100px 0 60px;
    }

    .contact-layout {
        gap: 40px;
    }

    .contact-intro {
        margin-bottom: 40px;
    }

    .contact-intro h1 {
        font-size: 2.5rem;
    }

    .contact-details {
        gap: 24px;
    }

    .contact-form-container {
        padding: 28px;
        border-radius: 10px;
    }

    .contact-form-v2 {
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 12px 14px;
    }

    .form-submit {
        padding: 14px 28px;
    }

    /* About Page V2 - Mobile */
    .about-page {
        padding: 100px 0 50px;
    }

    .about-hero-v2 {
        margin-bottom: 60px;
    }

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

    .about-hero-v2 h1 br {
        display: none;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-story {
        margin-bottom: 60px;
        padding-top: 40px;
    }

    .story-content {
        gap: 40px;
    }

    .values-section {
        margin-bottom: 60px;
    }

    .values-header {
        margin-bottom: 32px;
    }

    .values-header h2 {
        font-size: 1.8rem;
    }

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

    .value-card {
        padding: 24px 20px;
    }

    .value-number {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .certs-section,
    .cta-card {
        padding: 32px 24px;
    }

    .certs-section h2,
    .cta-card h2 {
        font-size: 1.6rem;
    }

    .certs-list {
        gap: 12px;
    }

    .cert-badge {
        padding: 12px 16px;
    }

    .cert-badge span {
        font-size: 0.8rem;
    }

    .cta-section-v2 {
        padding: 60px 0;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 14px 28px;
    }

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

    .main-image {
        height: 320px;
    }

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

    .product-actions .btn-large {
        width: 100%;
    }

    .product-image {
        height: 160px;
    }

    .product-content {
        padding: 14px;
    }

    .category-card {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .nav-actions .btn-secondary {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .filter-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-image {
        height: 180px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .category-card {
        height: 240px;
    }

    .category-content {
        padding: 14px 14px 20px;
    }

    .category-content h3 {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .category-content p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .category-content .btn-category {
        padding: 8px 16px;
        font-size: 0.7rem;
        margin-top: 8px;
    }

    /* Product Detail V2 - Small Mobile */
    .product-detail-v2 {
        padding: 80px 0 40px;
    }

    .product-details h1 {
        font-size: 1.75rem;
    }

    .product-category-label,
    .section-label {
        font-size: 0.65rem;
    }

    .highlights-list li {
        font-size: 0.85rem;
    }

    .halal-tag {
        padding: 6px 10px;
    }

    .halal-tag span {
        font-size: 0.7rem;
    }

    .btn-add-basket,
    .btn-contact {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .product-notice {
        padding: 14px 16px;
    }

    .product-notice p {
        font-size: 0.8rem;
    }

    .related-header h2 {
        font-size: 1.5rem;
    }

    /* Contact Page V2 - Small Mobile */
    .contact-page {
        padding: 90px 0 50px;
    }

    .contact-intro h1 {
        font-size: 2rem;
    }

    .contact-intro p {
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 24px;
        border-radius: 8px;
    }

    .form-field label {
        font-size: 0.75rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 11px 12px;
        font-size: 0.85rem;
    }

    .form-submit {
        padding: 13px 24px;
        font-size: 0.85rem;
    }

    .detail-label {
        font-size: 0.65rem;
    }

    .detail-value {
        font-size: 0.9rem;
    }

    /* About Page V2 - Small Mobile */
    .about-page {
        padding: 90px 0 40px;
    }

    .about-hero-v2 h1 {
        font-size: 2rem;
    }

    .about-lead {
        font-size: 0.9rem;
    }

    .story-label,
    .values-label,
    .certs-label,
    .about-label {
        font-size: 0.65rem;
    }

    .story-block p {
        font-size: 0.9rem;
    }

    .values-header h2 {
        font-size: 1.5rem;
    }

    .value-card h3 {
        font-size: 0.95rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    .certs-section h2,
    .cta-card h2 {
        font-size: 1.4rem;
    }

    .cert-badge {
        padding: 10px 14px;
        width: 100%;
        justify-content: center;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-card-label {
        font-size: 0.65rem;
    }

    .cta-card p {
        font-size: 0.85rem;
    }
}

/* ===========================
   IMAGE PRELOADER / SKELETON LOADING
   =========================== */

/* Skeleton shimmer animation */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Pulse animation for skeleton */
@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Base skeleton loader */
.skeleton-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--accent-dark) 0%,
        var(--secondary-dark) 20%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 60%,
        var(--secondary-dark) 80%,
        var(--accent-dark) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    z-index: 1;
    border-radius: inherit;
}

/* Image wrapper for preloader */
.image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--accent-dark);
}

/* Images start visible - skeleton only shows if needed */
.image-wrapper img {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* When image is loading (not yet complete), hide it and show skeleton */
.image-wrapper img.loading {
    opacity: 0;
}

.image-wrapper img.loaded {
    opacity: 1;
}

/* Skeleton hidden by default, only shown when image is loading */
.image-wrapper .skeleton-loader {
    opacity: 0;
    transition: opacity 0.2s ease-out;
    pointer-events: none;
}

.image-wrapper.is-loading .skeleton-loader {
    opacity: 1;
}

.image-wrapper img.loaded + .skeleton-loader,
.image-wrapper img.loaded ~ .skeleton-loader {
    opacity: 0;
    pointer-events: none;
}

/* Product card image preloader */
.product-image {
    position: relative;
}

/* Category card image preloader */
.category-image {
    position: relative;
}

/* Quality section image preloader */
.quality-image {
    position: relative;
}

/* Product detail main image preloader */
.main-image {
    position: relative;
}

/* Thumbnail preloader */
.thumbnail {
    position: relative;
}

.thumbnail .skeleton-loader {
    background: linear-gradient(
        90deg,
        var(--secondary-dark) 0%,
        var(--accent-dark) 50%,
        var(--secondary-dark) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

/* Search result image preloader */
.search-result-image {
    position: relative;
}

.search-result-image .skeleton-loader {
    background: linear-gradient(
        90deg,
        var(--accent-dark) 0%,
        var(--secondary-dark) 50%,
        var(--accent-dark) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1s ease-in-out infinite;
    border-radius: 8px;
}

/* Error state for failed images */
.image-wrapper img.error {
    opacity: 1;
}

.image-wrapper.image-error .skeleton-loader {
    opacity: 0;
}

.image-wrapper.image-error::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 2;
}

/* Smooth image reveal animation */
@keyframes image-reveal {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-wrapper img.loaded {
    animation: image-reveal 0.4s ease-out forwards;
}

/* ===========================
   SEARCH RESPONSIVE STYLES
   =========================== */

@media (max-width: 768px) {
    .search-overlay {
        padding-top: 5vh;
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-modal {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 12px;
    }

    .search-header {
        padding: 12px 16px;
    }

    #searchInput {
        font-size: 1rem;
    }

    .search-body {
        min-height: 150px;
        max-height: 55vh;
    }

    .search-result-item {
        padding: 10px 12px;
        gap: 12px;
    }

    .search-result-image {
        width: 48px;
        height: 48px;
    }

    .search-result-name {
        font-size: 1.1rem;
    }

    .search-footer {
        padding: 10px 16px;
    }

    .search-hints {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-hint {
        font-size: 0.7rem;
    }

    .search-hint kbd {
        min-width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .search-overlay {
        padding-top: 3vh;
    }

    .search-modal {
        max-height: 85vh;
    }

    .search-empty,
    .search-no-results {
        padding: 32px 16px;
    }

    .search-empty-icon svg,
    .search-no-results-icon svg {
        width: 40px;
        height: 40px;
    }

    .search-empty h3,
    .search-no-results h3 {
        font-size: 1.1rem;
    }

    .search-empty p,
    .search-no-results p {
        font-size: 0.85rem;
    }

    .search-footer {
        display: none;
    }
}

/* ===========================
   QUOTE BASKET
   =========================== */

/* Basket Trigger Button (Navbar) */
.basket-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.basket-trigger:hover {
    color: var(--accent-orange);
}

.basket-trigger svg {
    flex-shrink: 0;
}

/* Basket Count Badge */
.basket-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background-color: var(--accent-orange);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(25%, -25%);
    transition: transform 0.2s ease;
}

.basket-count.hidden {
    display: none;
}

.basket-count.bounce {
    animation: badge-bounce 0.4s ease;
}

@keyframes badge-bounce {
    0% { transform: translate(25%, -25%) scale(1); }
    25% { transform: translate(25%, -25%) scale(1.4); }
    50% { transform: translate(25%, -25%) scale(0.9); }
    75% { transform: translate(25%, -25%) scale(1.2); }
    100% { transform: translate(25%, -25%) scale(1); }
}

/* Basket trigger pulse animation */
.basket-trigger.pulse {
    animation: basket-pulse 0.5s ease;
}

@keyframes basket-pulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.basket-trigger.pulse svg {
    color: var(--accent-orange);
}

/* Search Result Add Button */
.search-result-add-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    border: none;
    color: var(--accent-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
    margin-right: 8px;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
}

.search-result-item:hover .search-result-add-btn,
.search-result-add-btn.in-basket {
    opacity: 1;
    transform: scale(1);
}

.search-result-add-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.search-result-add-btn.in-basket {
    background: rgba(139, 195, 74, 0.2);
    color: var(--accent-green);
}

.search-result-add-btn.in-basket:hover {
    background: rgba(139, 195, 74, 0.3);
}

.search-result-add-btn.clicked {
    transform: scale(0.9);
}

/* Search Basket Bar */
.search-basket-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 0 0 16px 16px;
    animation: slideUp 0.3s ease;
}

.search-basket-bar.visible {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-basket-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-orange);
}

.search-basket-info svg {
    flex-shrink: 0;
}

.search-basket-info span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

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

.btn-view-basket {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-view-basket:hover {
    border-color: var(--text-light);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

.btn-request-quote-small {
    background: var(--accent-orange);
    border: none;
    color: var(--text-light);
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-request-quote-small:hover {
    background: #ff5722;
    transform: translateY(-1px);
}

/* Search basket bar responsive */
@media (max-width: 640px) {
    .search-basket-bar {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }

    .search-basket-info {
        width: 100%;
        justify-content: center;
    }

    .search-basket-actions {
        width: 100%;
        justify-content: stretch;
    }

    .btn-view-basket,
    .btn-request-quote-small {
        flex: 1;
        text-align: center;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .search-basket-info span {
        font-size: 0.85rem;
    }

    .btn-view-basket,
    .btn-request-quote-small {
        font-size: 0.75rem;
        padding: 10px 12px;
    }
}

/* Basket Panel Overlay */
.basket-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.basket-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

/* Basket Panel */
.basket-panel {
    position: absolute;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background-color: var(--secondary-dark);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.basket-overlay.active .basket-panel {
    right: 0;
}

/* Basket Header */
.basket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.basket-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.basket-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-light);
    margin: 0;
}

.basket-item-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    background: var(--accent-dark);
    padding: 4px 10px;
    border-radius: 12px;
}

.basket-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .basket-close:hover {
        color: var(--accent-orange);
        background: rgba(255, 107, 53, 0.1);
    }
}

/* Basket Body */
.basket-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

/* Basket Item */
.basket-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--accent-dark);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.basket-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.basket-item-link {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.basket-item-link:hover .basket-item-name {
    color: var(--accent-orange);
}

.basket-item.removing {
    opacity: 0;
    transform: translateX(20px);
}

.basket-item-image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-dark);
    flex-shrink: 0;
}

.basket-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basket-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.basket-item-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    text-transform: uppercase;
}

.basket-item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.basket-item-remove {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .basket-item-remove:hover {
        background: rgba(239, 68, 68, 0.2);
        color: #ef4444;
    }
}

/* Add More Products Card (in basket body) */
.basket-add-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    margin-top: 4px;
    background: rgba(255, 107, 53, 0.06);
    border: none;
    border-radius: 10px;
    color: var(--accent-orange);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.basket-add-more:hover {
    background: rgba(255, 107, 53, 0.12);
}

.basket-add-more:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.basket-add-more:active {
    background: rgba(255, 107, 53, 0.16);
}

.basket-add-more svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* Basket Empty State */
.basket-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    height: 100%;
}

.basket-empty-icon {
    color: var(--text-gray);
    margin-bottom: 20px;
    opacity: 0.4;
}

.basket-empty h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.basket-empty p {
    font-size: 0.9rem;
    color: var(--text-gray);
    max-width: 250px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-browse-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-browse-products svg {
    flex-shrink: 0;
}

@media (hover: hover) {
    .btn-browse-products:hover {
        background: var(--accent-orange);
        color: var(--text-light);
    }
}

/* Basket Footer */
.basket-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.btn-clear-basket {
    flex: 1;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    padding: 14px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-clear-basket:hover {
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.basket-footer .btn-primary {
    flex: 2;
    font-size: 0.8rem;
    padding: 14px 16px;
    white-space: nowrap;
}

/* Add Products Button */
.btn-add-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    border: none;
    color: var(--text-light);
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-products:hover {
    background: #ff8555;
    transform: translateY(-1px);
}

/* Bottom Sheet for Adding Products */
.basket-add-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
    background: var(--secondary-dark);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.basket-add-sheet.active {
    transform: translateY(0);
}

.basket-add-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.basket-add-sheet-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.basket-add-sheet-header h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.basket-add-sheet-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.basket-add-sheet-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Sheet Search */
.basket-add-sheet-search {
    position: relative;
    display: flex;
    align-items: center;
    margin: 16px;
    background: var(--accent-dark);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.basket-add-sheet-search:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.basket-add-sheet-search .basket-search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-gray);
    pointer-events: none;
    transition: color 0.2s ease;
}

.basket-add-sheet-search:focus-within .basket-search-icon {
    color: var(--accent-orange);
}

#basketSearchInput {
    width: 100%;
    padding: 16px 44px 16px 48px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
    background: transparent;
    border: none;
    outline: none;
}

#basketSearchInput::placeholder {
    color: var(--text-gray);
}

.basket-search-clear {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.basket-search-clear.visible {
    display: flex;
}

.basket-search-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Sheet Results */
.basket-add-sheet-results {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px;
}

.basket-search-results-header {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    text-transform: uppercase;
    padding: 12px 4px 8px;
    position: sticky;
    top: 0;
    background: var(--secondary-dark);
    z-index: 1;
}

.basket-search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--accent-dark);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.basket-search-result-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.basket-search-result-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.basket-search-result-link:hover .basket-search-result-name {
    color: var(--accent-orange);
}

.basket-search-result-image {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--secondary-dark);
    flex-shrink: 0;
}

.basket-search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basket-search-result-info {
    flex: 1;
    min-width: 0;
}

.basket-search-result-category {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.basket-search-result-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.basket-search-add-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--accent-orange);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.basket-search-add-btn.in-basket {
    background: var(--accent-green);
}

.basket-search-add-btn.clicked {
    transform: scale(0.9);
}

@media (hover: hover) {
    .basket-search-result-item:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    .basket-search-add-btn:hover {
        background: #ff8555;
        transform: scale(1.08);
    }
    .basket-search-add-btn.in-basket:hover {
        background: #7cb342;
    }
}

.basket-search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Sheet Footer */
.basket-add-sheet-footer {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.btn-done {
    width: 100%;
    padding: 16px;
    background: var(--accent-orange);
    border: none;
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-done:hover {
    background: #ff8555;
}

/* Add to Basket Button (Product Detail Page) */
#addToBasketBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#addToBasketBtn.in-basket {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

#addToBasketBtn.in-basket:hover {
    background-color: #7cb342;
}

#addToBasketBtn.clicked {
    transform: scale(0.98);
}

#addToBasketBtn svg {
    flex-shrink: 0;
}

/* Basket Responsive */
@media (max-width: 768px) {
    .basket-panel {
        width: 100%;
        right: -100%;
    }

    .basket-header {
        padding: 20px;
    }

    .basket-header h3 {
        font-size: 1.3rem;
    }

    .basket-body {
        padding: 12px;
    }

    .basket-item {
        padding: 12px;
        gap: 12px;
    }

    .basket-item-image {
        width: 56px;
        height: 56px;
    }

    .basket-item-name {
        font-size: 1rem;
    }

    .basket-footer {
        padding: 16px 20px;
        flex-direction: column;
    }

    .btn-clear-basket,
    .basket-footer .btn-primary {
        flex: none;
        width: 100%;
    }

    /* Always show add button on mobile (no hover) */
    .search-result-add-btn {
        opacity: 1;
        transform: scale(1);
    }

    /* Bottom sheet responsive */
    .basket-add-sheet {
        height: 90%;
    }

    .basket-search-result-image {
        width: 48px;
        height: 48px;
    }

    .basket-search-add-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

@media (max-width: 480px) {
    .basket-header {
        padding: 16px;
    }

    .basket-header-title {
        gap: 8px;
    }

    .basket-header h3 {
        font-size: 1.2rem;
    }

    .basket-item-count {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .basket-empty {
        padding: 32px 16px;
    }

    .basket-empty-icon svg {
        width: 48px;
        height: 48px;
    }

    .basket-empty h4 {
        font-size: 1.1rem;
    }

    .basket-empty p {
        font-size: 0.85rem;
    }

    /* Product detail add to basket button */
    #addToBasketBtn {
        width: 100%;
    }
}

/* ===========================
   TOAST NOTIFICATIONS
   =========================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100000;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.toast.hide {
    transform: translateY(20px);
    opacity: 0;
}

.toast-success .toast-icon {
    color: var(--accent-green);
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-info .toast-icon {
    color: var(--accent-orange);
}

.toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.toast-action {
    background: var(--accent-orange);
    border: none;
    color: var(--text-light);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.toast-action:hover {
    background: #ff5722;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .toast-close:hover {
        color: var(--text-light);
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .toast-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .toast {
        padding: 12px 14px;
    }

    .toast-message {
        font-size: 0.85rem;
    }
}


/* ===========================
   CATEGORY LANDING PAGES
   Premium UI/UX Design
   =========================== */

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 100px 0 20px;
    background-color: var(--bg-dark);
}

.breadcrumb {
    font-size: 0.85rem;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);
    margin-left: 4px;
}

.breadcrumb a {
    color: var(--text-gray);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb li[aria-current="page"] {
    color: var(--text-light);
    font-weight: 500;
}

/* Category Hero */
.category-hero {
    position: relative;
    padding: 120px 0 80px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.category-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.category-hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.category-hero-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.category-hero-text {
    max-width: 560px;
}

.category-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 107, 53, 0.15);
    color: var(--accent-orange);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 24px;
}

.category-hero-tag svg {
    width: 14px;
    height: 14px;
}

.category-hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.category-hero-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.category-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Hero Image */
.category-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.hero-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.hero-image-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.hero-image-badge small {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Hero Scroll Indicator */
.category-hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.category-hero-scroll:hover {
    opacity: 0.7;
}

.category-hero-scroll span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.scroll-arrow {
    animation: bounceDown 2s infinite;
}

.scroll-arrow svg {
    color: var(--accent-orange);
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* Category Navigation Pills */
.category-nav-pills {
    padding: 24px 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.pills-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-pill:hover {
    background-color: rgba(255, 107, 53, 0.2);
    border-color: var(--accent-orange);
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pills-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 8px;
}

.filter-pill {
    padding: 10px 20px;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.filter-pill.active {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--text-light);
}

/* Category Products Section */
.category-products-section {
    padding: 60px 0 80px;
    background-color: var(--bg-dark);
}

.category-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.products-count {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.products-count span {
    font-weight: 700;
    color: var(--text-light);
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-sort label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.products-sort select {
    padding: 8px 32px 8px 12px;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b0b0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.products-sort select:focus {
    outline: none;
    border-color: var(--accent-orange);
}

/* Category Products Grid */
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-products-grid .product-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.category-products-grid .product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Empty State */
.category-products-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.category-products-empty .empty-icon {
    color: var(--text-gray);
    margin-bottom: 20px;
    opacity: 0.5;
}

.category-products-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.category-products-empty p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* Category Features Section */
.category-features {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 28px;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease, border-color 0.3s ease;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Category CTA Section */
.category-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
}

.category-cta .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.cta-text {
    max-width: 500px;
}

.cta-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.category-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

.cta-actions .btn-primary,
.cta-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown > a::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    padding: 8px;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--secondary-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px 0 0 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-dropdown-menu a svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    color: var(--text-light);
    background-color: rgba(255, 107, 53, 0.1);
}

.nav-dropdown-menu a:hover svg {
    transform: scale(1.1);
}

/* ===========================
   CATEGORY PAGE RESPONSIVE
   =========================== */

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

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

@media (max-width: 992px) {
    .category-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .category-hero-text {
        max-width: 100%;
    }

    .category-hero h1 {
        font-size: 3rem;
    }

    .category-hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .category-cta .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 48px 32px;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-outline {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .category-hero {
        padding: 100px 0 60px;
    }

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

    .category-hero-stats {
        gap: 16px;
    }

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

    .stat-divider {
        height: 30px;
    }

    .category-nav-pills {
        padding: 16px 0;
        top: 52px;
    }

    .pills-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pills-wrapper::-webkit-scrollbar {
        display: none;
    }

    .category-pill,
    .filter-pill {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .pills-divider {
        margin: 0 4px;
    }

    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-products-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

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

    .feature-card {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 24px;
    }

    .feature-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .category-hero-scroll {
        display: none;
    }

    .nav-dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateX(0) translateY(100%);
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 20px 16px;
        min-width: unset;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        padding: 16px;
        font-size: 1rem;
        justify-content: center;
    }

    .nav-dropdown-menu a svg {
        width: 22px;
        height: 22px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        transform: translateX(0) translateY(0);
    }
}

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

    .category-hero-text p {
        font-size: 0.9rem;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .category-products-section {
        padding: 40px 0 60px;
    }

    .category-cta .cta-content {
        padding: 32px 20px;
    }

    .category-cta h2 {
        font-size: 2rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 16px;
    }
}


/* ===========================
   MOBILE BOTTOM NAVIGATION
   =========================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 8px 4px;
    color: var(--text-gray);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

.bottom-nav-item.active {
    color: var(--accent-orange);
}

.bottom-nav-item:hover {
    color: var(--text-light);
}

.bottom-nav-item.active:hover {
    color: var(--accent-orange);
}

.bottom-nav-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.bottom-nav-icon svg {
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease;
}

.bottom-nav-item.active .bottom-nav-icon svg {
    transform: scale(1.1);
}

.bottom-nav-item span:not(.bottom-nav-badge) {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Bottom Nav Badge */
.bottom-nav-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background-color: var(--accent-orange);
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bottom-nav-badge.visible {
    opacity: 1;
    transform: scale(1);
}

.bottom-nav-badge.bounce {
    animation: badgeBounce 0.5s ease;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Bottom Nav Basket Active State */
.bottom-nav-basket.has-items .bottom-nav-icon {
    color: var(--accent-orange);
}

/* Show bottom nav on mobile */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }

    /* Add padding to body to prevent content being hidden behind bottom nav */
    body {
        padding-bottom: 70px;
    }

    /* Adjust footer padding */
    .footer {
        padding-bottom: 20px;
    }

    /* Adjust toast position above bottom nav */
    .toast-container {
        bottom: 80px;
    }

    /* Minimal header - hide nav elements, keep logo + search only */
    .nav-menu,
    .hamburger,
    .basket-trigger,
    .nav-actions .btn-secondary {
        display: none !important;
    }

    .nav-wrapper {
        justify-content: space-between;
    }

    .nav-actions {
        gap: 0;
    }

    .search-trigger {
        padding: 10px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .bottom-nav-item span:not(.bottom-nav-badge) {
        font-size: 0.6rem;
    }

    .bottom-nav-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ===========================
   BOTTOM NAV PRODUCTS SUBMENU
   =========================== */
.bottom-nav-products {
    position: relative;
}

.bottom-nav-submenu {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.bottom-nav-submenu::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--secondary-dark);
}

.bottom-nav-submenu::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.bottom-nav-submenu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.submenu-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--text-light);
}

.submenu-item:active {
    transform: scale(0.98);
}

.submenu-item svg:first-child {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.submenu-item span {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.submenu-arrow {
    color: var(--text-gray);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.submenu-item:hover .submenu-arrow {
    opacity: 1;
    color: var(--accent-orange);
    transform: translateX(2px);
}

/* Products button active state when submenu open */
.bottom-nav-products.submenu-open {
    color: var(--accent-orange);
}

/* Backdrop for closing submenu */
.bottom-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

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

/* ===========================
   PULL TO REFRESH
   =========================== */
.pull-to-refresh {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pull-to-refresh.visible {
    transform: translateY(0);
}

.pull-to-refresh-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pull-to-refresh-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-orange);
    animation: ptr-spin 0.7s linear infinite;
}

@keyframes ptr-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pull indicator progress bar */
.pull-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pull-progress-container.visible {
    opacity: 1;
}

.pull-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    width: 0%;
    transition: width 0.1s ease-out;
    border-radius: 0 2px 2px 0;
}

/* Pulling state - body gets slight transform */
body.ptr-pulling {
    transition: transform 0.1s ease-out;
}

/* Disable pull-to-refresh when scrolled */
body.ptr-disabled .pull-to-refresh,
body.ptr-disabled .pull-progress-container {
    display: none;
}

/* Only show on touch devices */
@media (hover: hover) and (pointer: fine) {
    .pull-to-refresh,
    .pull-progress-container {
        display: none;
    }
}
