/* ==========================================================================
   ARTECA B2B E-commerce - Proposal 2: Technical Catalog Style
   Design: Split layout, horizontal cards, teal/industrial palette
   Completely different from Proposal 1
   ========================================================================== */

/* CSS Variables */
:root {
    /* --primary: #00838f;
    --primary-dark: #006064;
    --primary-light: #4fb3bf; */
    --primary: #0087C0;
    --primary-dark: #006a99;
    --primary-light: #33a3d4;
    --accent: #ff6f00;
    --accent-light: #ffa040;
    --dark: #263238;
    --dark-light: #37474f;
    --gray-900: #212121;
    --gray-700: #616161;
    --gray-500: #9e9e9e;
    --gray-300: #e0e0e0;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --success: #43a047;
    --warning: #fb8c00;
    --error: #e53935;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Roboto Condensed', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--gray-100);
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 11px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 14px;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   HEADER - Compact Top Bar Style
   ========================================================================== */

.top-header {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

.top-header .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left {
    display: flex;
    gap: 24px;
}

.top-header-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
}

.top-header-left a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.top-header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-header-right a:hover {
    color: var(--primary-light);
}

.flag-list {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* Main Header */
.main-header {
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 80px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
}

/* Main Navigation - Horizontal */
.main-nav {
    flex: 1;
    margin-left: 48px;
}

.nav-menu {
    display: flex;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 28px 20px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-link svg {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Mega Menu - Vertical Style with Icons */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    background: var(--white);
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Left column - Categories with icons */
.mega-menu-categories {
    width: 380px;
    background: var(--gray-100);
    border-right: 1px solid var(--gray-300);
}

.mega-menu-category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.mega-menu-category:hover,
.mega-menu-category.active {
    background: var(--white);
    color: var(--accent);
}

.mega-menu-category svg {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
    flex-shrink: 0;
}

.mega-menu-category:hover svg,
.mega-menu-category.active svg {
    color: var(--accent);
}

.mega-menu-category span {
    /* flex: 1; */
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mega-menu-category .arrow {
    width: 16px;
    height: 16px;
    color: var(--gray-400);
}

.mega-menu-category:hover .arrow,
.mega-menu-category.active .arrow {
    color: var(--accent);
}

/* Right column - Subcategories */
.mega-menu-subcategories-wrapper {
    width: 280px;
    position: relative;
}

.mega-menu-subcategories {
    display: none;
    padding: 20px 24px;
    background: var(--white);
}

.mega-menu-subcategories.active {
    display: block;
}

.mega-menu-subcategories h4 {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.mega-menu-subcategories ul li {
    margin-bottom: 10px;
}

.mega-menu-subcategories ul li a {
    font-size: 13px;
    color: var(--gray-700);
    display: block;
    padding: 4px 0;
}

.mega-menu-subcategories ul li a:hover {
    color: var(--accent);
}

.mega-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.mega-menu-link:hover {
    text-decoration: underline;
}

.filler {
    flex-grow: 1;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--dark);
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.header-action:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.header-action svg {
    width: 18px;
    height: 18px;
}

.header-action span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.cart-icon {
    position: relative;
}

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

/* Search Bar */
.search-bar {
    margin-left: 24px;
    margin-right: 24px;
}

.search-bar form {
    display: flex;
    border: 2px solid var(--gray-300);
    transition: var(--transition);
}

.search-bar form:focus-within {
    border-color: var(--primary);
}

.search-bar input {
    width: 280px;
    padding: 10px 14px;
    border: none;
    font-size: 13px;
    outline: none;
}

.search-bar button {
    padding: 10px 16px;
    background: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--primary-dark);
}

/* ==========================================================================
   HERO - Full Width Image Background
   ========================================================================== */

.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1600') center/cover;
    opacity: 0.3;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary-light);
}

.hero-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-features {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
}

.hero-feature span {
    font-size: 13px;
    font-weight: 600;
}

/* ==========================================================================
   CATEGORIES - Card Grid with Icons
   ========================================================================== */

.categories-section {
    padding: 80px 0;
    background: var(--white);
}

.categories-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-300);
}

.section-header h2 {
    margin-bottom: 8px;
}

.section-header p {
    color: var(--gray-700);
    font-size: 14px;
}

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

.category-card {
    background: var(--gray-100);
    padding: 32px 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    background: var(--white);
}

.category-card.active {
    border-color: var(--primary);
    background: var(--white);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--accent);
}

.category-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.category-card h4 {
    font-size: 12px;
    margin-bottom: 4px;
}

.category-card span {
    /* font-size: 11px; */
    color: var(--primary);
}

.category-code {
    color: var(--primary);
}

.category-image {
    margin: 0 auto 16px;
}

/* ==========================================================================
   FEATURED PRODUCTS - Horizontal Cards
   ========================================================================== */

.products-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.products-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card-horizontal {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    background: var(--white);
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.product-card-horizontal:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.product-card-image {
    background: var(--gray-100);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-card-image img {
    max-height: 120px;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--dark);
    color: var(--white);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--success);
}

.product-badge.sale {
    background: var(--error);
}

.product-card-info {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card-info .product-category {
    font-size: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-card-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: none;
}

.product-card-info h3 a:hover {
    color: var(--primary);
}

.product-card-info .product-sku {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.product-card-info .product-desc {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
}

.product-card-actions {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    border-left: 1px solid var(--gray-300);
    min-width: 200px;
}

.product-price {
    text-align: right;
    display: none;
}

.logged-in .product-price {
    display: block;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.price-old {
    font-size: 13px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: 8px;
}

.price-unit {
    font-size: 11px;
    color: var(--gray-500);
    display: block;
}

.login-for-price {
    background: var(--gray-100);
    padding: 12px 16px;
    font-size: 12px;
    color: var(--gray-700);
    text-align: center;
    border: 1px dashed var(--gray-300);
}

.login-for-price a {
    color: var(--primary);
    font-weight: 700;
}

.login-for-price a:hover {
    text-decoration: underline;
}

.logged-in .login-for-price {
    display: none;
}

/* Grid view products - Compact Card Style (2 columns) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.product-card-inner {
    display: flex;
    padding: 16px;
    gap: 16px;
    flex-grow: 1;
}

.product-card a {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .product-image img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.product-card .product-info {
    flex: 1;
    min-width: 0;
}

.product-card .product-code {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.product-card .product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    line-height: 1.3;
}

.product-card .product-title a:hover {
    color: var(--primary);
}

.product-card .product-desc {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

.product-card .product-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
    font-size: 12px;
    color: var(--gray-700);
}

.product-card .product-meta-row svg {
    width: 14px;
    height: 14px;
    color: var(--gray-500);
}

.product-card .product-footer {
    border-top: 1px solid var(--gray-300);
}

.product-card .product-footer .btn {
    width: 100%;
    border-radius: 0 0 8px 8px;
    padding: 14px 20px;
    background: var(--dark-light);
    color: var(--white);
    border: none;
    font-size: 12px;
    gap: 10px;
}

.product-card .product-footer .btn:hover {
    background: var(--primary);
}

.product-card .product-footer .btn svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   FEATURES STRIP
   ========================================================================== */

.features-strip {
    background: var(--primary);
    padding: 48px 0;
}

.features-strip .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.feature-item svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 13px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 12px;
    opacity: 0.8;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--gray-900);
    color: var(--white);
}

.footer-main {
    padding: 64px 0;
}

.footer-main .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-column h4 {
    font-size: 12px;
    color: var(--primary-light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 13px;
    opacity: 0.7;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.6;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */

.page-header {
    background: var(--dark);
    color: var(--white);
    padding: 32px 0;
}

.page-header .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--primary-light);
}

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

.page-title h1 {
    font-size: 2rem;
}

.results-count {
    font-size: 13px;
    opacity: 0.7;
    color: var(--dark);
}

/* ==========================================================================
   LISTING PAGE
   ========================================================================== */

.catalog-categories-section {
    padding: 40px 0;
    background: var(--white);
}

.listing-section {
    padding-bottom: 40px;
}

.listing-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.listing-layout {
    display: block;
}

/* Filters Button */
.filters-sidebar {
    display: none;
}

.btn-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-filter svg {
    width: 16px;
    height: 16px;
}

/* Listing Content */
.listing-content {
    display: flex;
    flex-direction: column;
}

.listing-toolbar form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-300);
}

.toolbar-left {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.toolbar-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-info {
    font-size: 13px;
    color: var(--gray-500);
}

.toolbar-right {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-direction: column;
}

.products-count {
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
}

.view-options {
    display: flex;
    gap: 4px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.sort-options label {
    font-size: 12px;
    color: var(--gray-700);
    font-weight: 600;
}

.sort-options select {
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    font-size: 13px;
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

.product-detail {
    padding: 40px 0;
}

.product-detail .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.main-image {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 48px;
    margin-bottom: 16px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    max-height: 350px;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
}

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

/* Product Info */
.product-detail-info {
    padding: 16px 0;
}

.product-detail-info .product-category {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    text-transform: none;
}

.product-meta {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 24px;
}

.product-meta span {
    font-size: 13px;
    color: var(--gray-700);
}

.product-meta strong {
    color: var(--dark);
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stock-status.in-stock {
    color: var(--success);
}

.product-detail-price {
    margin-bottom: 24px;
    display: none;
}

.logged-in .product-detail-price {
    display: block;
}

.product-detail-price .price-current {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

.product-detail-price .price-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

.product-description {
    margin-bottom: 32px;
}

.product-description p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 24px;
}

.quantity-selector label {
    /* display: block; */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.quantity-input {
    display: flex;
    border: 1px solid var(--gray-300);
    width: fit-content;
    align-items: center;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-input input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.product-features {
    background: var(--gray-100);
    padding: 24px;
    border-left: 4px solid var(--primary);
}

.product-features h4 {
    font-size: 12px;
    margin-bottom: 16px;
}

.product-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-700);
}

.product-features ul li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Product Tabs */
.product-tabs {
    margin-top: 64px;
    background: var(--white);
    border: 1px solid var(--gray-300);
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--gray-300);
}

.tab-btn {
    padding: 16px 32px;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    padding: 32px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--gray-300);
}

.specs-table th,
.specs-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
}

.specs-table th {
    background: var(--gray-100);
    font-weight: 600;
    width: 200px;
}

/* ==========================================================================
   CART PAGE
   ========================================================================== */

.cart-section {
    padding: 40px 0;
}

.cart-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

.cart-items {
    background: var(--white);
    border: 1px solid var(--gray-300);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 16px;
    padding: 16px 24px;
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 16px;
    padding: 24px;
    align-items: center;
    border-bottom: 1px solid var(--gray-300);
}

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

.cart-product {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    padding: 8px;
    flex-shrink: 0;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-product-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: none;
}

.cart-product-info h4 a:hover {
    color: var(--primary);
}

.cart-product-info p {
    font-size: 11px;
    color: var(--gray-500);
}

.cart-price,
.cart-total {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.cart-quote {
    font-size: 15px;
    text-align: center;
}

.logged-in .cart-price,
.logged-in .cart-total {
    display: block;
}

.cart-quantity .quantity-input {
    border: 1px solid var(--gray-300);
}

.cart-quantity .quantity-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.cart-quantity input {
    width: 48px;
    height: 32px;
    font-size: 13px;
}

.cart-remove {
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--gray-300);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-remove:hover {
    background: var(--error);
    border-color: var(--error);
    color: var(--white);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border: 1px solid var(--gray-300);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    padding: 16px 24px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
}

.cart-summary-content {
    padding: 24px;
}

.summary-row {
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-300);
}

.logged-in .summary-row {
    display: flex;
}

.summary-row.total {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    border-bottom: none;
    padding-top: 0;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 16px;
}

.promo-code {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-300);
}

.promo-code label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.promo-input {
    display: flex;
    gap: 8px;
}

.promo-input input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    font-size: 13px;
}

/* ==========================================================================
   LOGIN PAGE
   ========================================================================== */

.login-section {
    padding: 64px 0;
}

.login-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border: 1px solid var(--gray-300);
}

.login-form-section {
    padding: 48px;
    border-right: 1px solid var(--gray-300);
}

.login-form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.login-form-section>p {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 32px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    font-size: 14px;
    transition: var(--transition);
}

.login-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    font-weight: normal;
}

.form-options a {
    color: var(--primary);
}

.form-options a:hover {
    text-decoration: underline;
}

.login-form .btn {
    width: 100%;
}

.login-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--gray-300);
}

.login-divider span {
    background: var(--white);
    padding: 0 16px;
    position: relative;
    font-size: 12px;
    color: var(--gray-500);
}

/* Register Section */
.register-section {
    padding: 48px;
    background: var(--gray-100);
}

.register-section h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.register-section>p {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 24px;
}

.register-benefits {
    margin-bottom: 32px;
}

.register-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
}

.register-benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.register-section .btn {
    width: 100%;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

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

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .listing-layout {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

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

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

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

    .product-card-horizontal {
        grid-template-columns: 150px 1fr;
    }

    .product-card-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        border-left: none;
        border-top: 1px solid var(--gray-300);
    }

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

    .listing-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

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

    .product-gallery {
        position: static;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .login-container {
        grid-template-columns: 1fr;
    }

    .login-form-section {
        border-right: none;
        border-bottom: 1px solid var(--gray-300);
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }

    .main-header .container {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 24px;
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin: 16px 0 0;
    }

    .search-bar input {
        width: 100%;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .product-card-horizontal {
        grid-template-columns: 1fr;
    }

    .product-card-image {
        padding: 32px;
    }

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

    .footer-main .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cart-header {
        display: none;
    }

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

/* ==========================================================================
   LOGIN / AUTH PAGE
   ========================================================================== */

.auth-section {
    padding: 60px 0 80px;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--gray-300);
}

.auth-card-header {
    margin-bottom: 32px;
}

.auth-card-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.auth-card-header p {
    color: var(--gray-700);
    font-size: 14px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    font-size: 14px;
    transition: var(--transition);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
}

.auth-card-register {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.register-benefits {
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-300);
}

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

.benefit-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: none;
}

.benefit-item p {
    font-size: 13px;
    color: var(--gray-700);
}

.register-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

.auth-fail {
    border: 1px solid #fe0000;
    background-color: #ffe6e6;
    margin-top: 30px;
    padding: 15px;
    border-radius: 10px;
}

/* ==========================================================================
   CHI SIAMO PAGE STYLES
   ========================================================================== */

/* Page Header */
.page-header {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 2px solid var(--gray-300);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
}

/* About Main */
.about-main {
    padding: 80px 0;
    background: var(--white);
}

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

.about-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.about-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-intro-content .lead {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-intro-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
}

.about-intro-image img {
    width: 100%;
    box-shadow: var(--shadow-lg);
}

/* About Stats */
.about-stats {
    padding: 60px 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Products */
.about-products {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.about-product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--white);
    border: 1px solid var(--gray-300);
    overflow: hidden;
    transition: var(--transition);
}

.about-product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.about-product-card .about-product-image {
    height: 100%;
    min-height: 200px;
}

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

.about-product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.about-product-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.about-product-content p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    flex: 1;
}

.about-product-content .btn {
    align-self: flex-start;
    margin-top: 16px;
}

/* About Values */
.about-values {
    padding: 80px 0;
    background: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-100);
    border: 2px solid transparent;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary);
    background: var(--white);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--primary);
}

.value-card:hover .value-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Responsive - Chi Siamo */
@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-products-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-product-card {
        grid-template-columns: 1fr;
    }

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

/* ==========================================================================
   ACCOUNT PAGE
   ========================================================================== */

.account-section {
    padding: 40px 0 80px;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.account-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-300);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-user {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--gray-300);
    background: var(--gray-100);
}

.user-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.user-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
    text-transform: none;
}

.user-info p {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 5px;
}

/* .account-nav {
    padding: 12px 0;
} */

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.account-nav-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.account-nav-item.active {
    background: var(--primary);
    color: var(--white);
}

.account-nav-item.logout {
    border-top: 1px solid var(--gray-300);
    margin-top: 12px;
    color: var(--error);
}

.account-nav-item.logout:hover {
    background: var(--error);
    color: var(--white);
}

.account-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Dashboard Cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.dashboard-card-icon.pending {
    background: var(--warning);
}

.dashboard-card-icon.shipping {
    background: #2196f3;
}

.dashboard-card-icon.completed {
    background: var(--success);
}

.dashboard-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}

.dashboard-card-label {
    font-size: 13px;
    color: var(--gray-500);
}

/* Orders Section */
.account-orders {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 24px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-300);
}

.section-title h2 {
    font-size: 1.25rem;
}

.view-all {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

.orders-table {
    overflow-x: auto;
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--gray-100);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-300);
}

.orders-table td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-300);
    font-size: 14px;
}

.orders-table tr:hover {
    background: var(--gray-100);
}

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.status-processing {
    background: #fff3e0;
    color: var(--warning);
}

.status-shipping {
    background: #e3f2fd;
    color: #1976d2;
}

.status-completed {
    background: #e8f5e9;
    color: var(--success);
}

.order-actions {
    display: flex;
    gap: 8px;
}

/* Reorder Section */
.account-reorder {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 24px;
}

.reorder-products {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reorder-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
}

.reorder-image {
    width: 80px;
    height: 80px;
    background: var(--white);
    padding: 8px;
    flex-shrink: 0;
}

.reorder-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reorder-info {
    flex: 1;
}

.reorder-code {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

.reorder-info h4 {
    font-size: 14px;
    margin: 4px 0;
    text-transform: none;
}

.reorder-info p {
    font-size: 12px;
    color: var(--gray-500);
}

.reorder-action {
    text-align: right;
}

.reorder-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-section {
    padding: 60px 0 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-intro h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.contact-intro p {
    color: var(--gray-700);
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 24px;
    display: flex;
    gap: 16px;
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: none;
}

.contact-card-content a {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

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

.contact-card-content p {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

.contact-departments h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.department-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.department-item {
    padding: 16px;
    background: var(--gray-100);
    border-left: 3px solid var(--primary);
}

.department-item h4 {
    font-size: 13px;
    margin-bottom: 4px;
    text-transform: none;
}

.department-item a {
    font-size: 13px;
    color: var(--primary);
}

.department-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 40px;
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-header p {
    color: var(--gray-700);
    font-size: 14px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    font-size: 14px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    height: 450px;
    background: var(--gray-300);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.map-info-card {
    background: var(--white);
    padding: 32px;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
    pointer-events: all;
}

.map-info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.directions {
    margin-bottom: 24px;
}

.direction-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-300);
}

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

.direction-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.direction-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.direction-item p {
    font-size: 12px;
    color: var(--gray-500);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    padding: 24px;
    background: var(--gray-100);
    border-left: 3px solid var(--primary);
}

.faq-item h4 {
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: none;
}

.faq-item p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

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

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

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

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

@media (max-width: 768px) {
    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .department-list {
        grid-template-columns: 1fr;
    }

    .map-info-card {
        max-width: 100%;
        margin: 0 24px;
    }
}

/* ==========================================================================
   CHECKOUT PAGE - B2B Quote Request
   ========================================================================== */

/* Checkout Progress Bar */
.checkout-progress {
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    padding: 24px 0;
}

.checkout-progress .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-300);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.progress-step span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active .step-number {
    background: var(--primary);
    color: var(--white);
}

.progress-step.active span {
    color: var(--primary);
}

.progress-step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.progress-step.completed span {
    color: var(--success);
}

.progress-line {
    width: 80px;
    height: 3px;
    background: var(--gray-300);
    margin: 0 16px;
    margin-bottom: 24px;
}

.progress-line.completed {
    background: var(--success);
}

/* Checkout Section */
.checkout-section {
    padding: 48px 0;
    background: var(--gray-100);
}

.checkout-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

/* Checkout Form Container */
.checkout-form-container {
    background: var(--white);
    border: 1px solid var(--gray-300);
}

.checkout-info-box {
    display: flex;
    gap: 20px;
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.info-box-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: none;
}

.info-box-content p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Checkout Form */
.checkout-form {
    padding: 32px;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-300);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--dark);
}

.form-section h3 svg {
    color: var(--primary);
}

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

.form-row:last-child {
    margin-bottom: 0;
}

.form-row-3 {
    grid-template-columns: 2fr 1fr 1fr;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    font-size: 14px;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

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

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-300);
    margin-top: 32px;
}

/* Checkout Sidebar */
.checkout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border: 1px solid var(--gray-300);
}

.order-summary h3 {
    padding: 16px 24px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
}

.order-summary-content {
    padding: 24px;
}

.order-products {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-product {
    display: flex;
    gap: 16px;
    align-items: center;
}

.order-product-image {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    padding: 8px;
    position: relative;
    flex-shrink: 0;
}

.order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-product-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-product-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: none;
    line-height: 1.3;
}

.order-product-info p {
    font-size: 11px;
    color: var(--gray-500);
}

.order-summary-divider {
    height: 1px;
    background: var(--gray-300);
    margin: 20px 0;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-700);
}

.order-summary-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border: 1px dashed var(--gray-300);
    margin-top: 16px;
}

.order-summary-note svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.order-summary-note p {
    font-size: 12px;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Help Box */
.checkout-help-box {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 24px;
}

.checkout-help-box h4 {
    font-size: 13px;
    margin-bottom: 8px;
}

.checkout-help-box>p {
    font-size: 12px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-contacts a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.help-contacts a:hover {
    text-decoration: underline;
}

/* Trust Badges */
.checkout-trust {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--gray-700);
}

.trust-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Checkout Responsive */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
        order: -1;
    }

    .order-products {
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
    }

    .order-product {
        flex-direction: column;
        min-width: 100px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .checkout-progress {
        padding: 16px 0;
    }

    .progress-step span {
        display: none;
    }

    .progress-line {
        width: 40px;
        margin-bottom: 0;
    }

    .checkout-info-box {
        flex-direction: column;
        text-align: center;
    }

    .info-box-icon {
        margin: 0 auto;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        gap: 16px;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.thank-you-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    min-height: calc(100vh - 200px);
}

.thank-you-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.thank-you-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 48px;
    text-align: center;
}

/* Success Icon */
.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-card h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.thank-you-subtitle {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 32px;
}

/* Request Details */
.request-details {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px;
    background: var(--gray-100);
    margin-bottom: 32px;
}

.request-details>div {
    text-align: center;
}

.request-details span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.request-details strong {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--primary);
}

/* Thank You Message */
.thank-you-message {
    display: flex;
    gap: 20px;
    text-align: left;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 131, 143, 0.05) 0%, rgba(0, 131, 143, 0.1) 100%);
    border: 1px solid rgba(0, 131, 143, 0.2);
    margin-bottom: 32px;
}

.thank-you-message .message-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thank-you-message h4 {
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: none;
}

.thank-you-message p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 12px;
}

.thank-you-message ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thank-you-message ul li {
    font-size: 13px;
    color: var(--gray-700);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.thank-you-message ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Request Summary */
.request-summary {
    margin-bottom: 32px;
    text-align: left;
}

.request-summary h3 {
    font-size: 13px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-300);
}

.summary-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-product {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--gray-100);
}

.summary-product .product-image {
    width: 50px;
    height: 50px;
    background: var(--white);
    padding: 6px;
    flex-shrink: 0;
}

.summary-product .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.summary-product .product-info span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.summary-product .product-info small {
    font-size: 12px;
    color: var(--gray-500);
}

/* Contact Options */
.thank-you-contact {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--gray-100);
}

.thank-you-contact>p {
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.contact-option:hover {
    text-decoration: underline;
}

/* Thank You Actions */
.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

/* Newsletter */
.thank-you-newsletter {
    padding-top: 32px;
    border-top: 1px solid var(--gray-300);
}

.thank-you-newsletter h4 {
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: none;
}

.thank-you-newsletter>p {
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    font-size: 14px;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Trust Section */
.thank-you-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.trust-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.trust-badge strong {
    display: block;
    font-size: 13px;
    color: var(--dark);
}

.trust-badge span {
    font-size: 12px;
    color: var(--gray-500);
}

/* Thank You Responsive */
@media (max-width: 768px) {
    .thank-you-card {
        padding: 32px 24px;
    }

    .thank-you-card h1 {
        font-size: 22px;
    }

    .request-details {
        flex-direction: column;
        gap: 16px;
    }

    .thank-you-message {
        flex-direction: column;
        text-align: center;
    }

    .thank-you-message .message-icon {
        margin: 0 auto;
    }

    .thank-you-message ul li {
        text-align: left;
    }

    .contact-options {
        flex-direction: column;
        gap: 16px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .thank-you-trust {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

/* ==========================================================================
   ORDER DETAIL PAGE
   ========================================================================== */

.order-detail-section {
    padding: 40px 0 80px;
    background: var(--gray-100);
}

.order-detail-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Order Status Banner */
.order-status-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    margin-bottom: 24px;
}

.order-status-banner.status-shipping {
    border-left: 4px solid var(--info);
}

.order-status-banner.status-processing {
    border-left: 4px solid var(--warning);
}

.order-status-banner.status-completed {
    border-left: 4px solid var(--success);
}

.order-status-banner .status-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-status-banner.status-shipping .status-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.order-status-banner.status-processing .status-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.order-status-banner.status-completed .status-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.order-status-banner .status-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
    text-transform: none;
}

.order-status-banner .status-info p {
    font-size: 13px;
    color: var(--gray-700);
}

.order-status-banner .status-tracking {
    margin-left: auto;
    text-align: right;
}

.order-status-banner .tracking-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.order-status-banner .tracking-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* Order Progress Track */
.order-progress {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 32px;
    margin-bottom: 32px;
}

.progress-track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.order-progress .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 150px;
}

.order-progress .progress-step .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-300);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.order-progress .progress-step.completed .step-icon {
    background: var(--success);
    color: var(--white);
}

.order-progress .progress-step span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.order-progress .progress-step small {
    font-size: 11px;
    color: var(--gray-500);
}

.progress-connector {
    flex: 1;
    height: 3px;
    background: var(--gray-300);
    margin-top: 20px;
    max-width: 100px;
}

.progress-connector.completed {
    background: var(--success);
}

/* Order Detail Layout */
.order-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.order-detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.order-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

/* Order Detail Cards */
.order-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
}

.order-detail-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--dark);
    color: var(--white);
}

.order-detail-card .card-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin: 0;
}

.order-detail-card .card-header .item-count {
    font-size: 12px;
    opacity: 0.7;
}

.order-detail-card .card-content {
    padding: 24px;
}

/* Order Items List */
.order-items-list {
    display: flex;
    flex-direction: column;
}

.order-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-300);
    align-items: center;
}

.order-item:first-child {
    padding-top: 0;
}

.order-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-item .item-image {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    padding: 8px;
}

.order-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item .item-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: none;
}

.order-item .item-code {
    font-size: 12px;
    color: var(--gray-500);
    display: block;
    margin-bottom: 8px;
}

.order-item .item-meta {
    display: flex;
    gap: 16px;
}

.order-item .item-qty {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    background: var(--gray-100);
    padding: 4px 10px;
}

.order-item .item-pricing {
    text-align: right;
}

.order-item .item-unit-price {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.order-item .item-total-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

/* Order Notes */
.order-notes-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    padding: 16px;
    background: var(--gray-100);
    border-left: 3px solid var(--primary);
}

/* Order Summary Details */
.order-summary-details {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-300);
}

.order-summary-details .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.order-summary-details .summary-row span {
    color: var(--gray-700);
}

/* Order Totals */
.order-totals {
    display: flex;
    flex-direction: column;
}

.order-totals .totals-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-700);
}

.order-totals .totals-row.total {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--dark);
}

/* Shipping/Billing Address */
.shipping-address,
.billing-address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray-700);
}

.shipping-address strong,
.billing-address strong {
    color: var(--dark);
}

.address-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.sdi-code {
    display: inline-block;
    background: var(--gray-100);
    padding: 4px 10px;
    font-size: 12px;
    font-family: monospace;
}

/* Order Actions Card */
.order-actions-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Order Detail Responsive */
@media (max-width: 1024px) {
    .order-detail-layout {
        grid-template-columns: 1fr;
    }

    .order-detail-sidebar {
        position: static;
    }

    .order-status-banner {
        flex-wrap: wrap;
    }

    .order-status-banner .status-tracking {
        margin-left: 0;
        width: 100%;
        text-align: left;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-300);
    }
}

@media (max-width: 768px) {
    .progress-track {
        flex-direction: column;
        gap: 0;
    }

    .order-progress .progress-step {
        flex-direction: row;
        max-width: 100%;
        text-align: left;
        gap: 16px;
        padding: 16px 0;
    }

    .order-progress .progress-step .step-icon {
        margin-bottom: 0;
    }

    .progress-connector {
        width: 3px;
        height: 30px;
        margin: 0 0 0 19px;
        max-width: none;
    }

    .order-item {
        grid-template-columns: 60px 1fr;
    }

    .order-item .item-pricing {
        grid-column: 2;
        text-align: left;
        margin-top: 8px;
    }
}

/* Flash container */
#flash-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Base flash */
.flash-message {
    min-width: 260px;
    max-width: 380px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-10px);
    animation: flashFadeIn 0.3s ease forwards;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Success */
.flash-success {
    background: linear-gradient(135deg, #28a745, #218838);
}

/* Error */
.flash-error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Animation */
@keyframes flashFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SECTORS PAGE
   ========================================================================== */
 
.sectors-intro {
    padding: 60px 0;
    background: var(--white);
}
 
.sectors-intro .container {
    max-width: 900px;
    text-align: center;
}
 
.sectors-intro-content h2 {
    margin-bottom: 16px;
}
 
.sectors-intro-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
}
 
.sectors-section {
    padding: 60px 0 100px;
    background: var(--gray-100);
}
 
.sectors-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}
 
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
 
.sector-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 40px 32px;
    transition: var(--transition);
}
 
.sector-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
 
.sector-icon {
    /* width: 80px;
    height: 80px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition); */
    margin-bottom: 24px;
}
 
/* .sector-card:hover .sector-icon {
    background: var(--accent);
} */
 
.sector-icon svg {
    color: var(--white);
}
 
.sector-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
 
.sector-tagline {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
 
.sector-desc {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.6;
}
 
.sector-features {
    /* margin-bottom: 24px; */
    padding-left: 0;
}
 
.sector-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--gray-700);
}
 
.sector-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
}
 
@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
 
@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-card {
        padding: 32px 24px;
    }
}
 
/* ==========================================================================
   MISSION & VISION PAGE
   ========================================================================== */
 
.mission-section {
    padding: 80px 0;
    background: var(--white);
}
 
.mission-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
 
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
 
.mission-badge,
.vision-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
 
.mission-content h2,
.vision-content h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 24px;
    text-transform: none;
}
 
.mission-text,
.vision-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}
 
.mission-image img,
.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
 
.vision-section {
    padding: 80px 0;
    background: var(--gray-100);
}
 
.vision-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
 
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
 
.vision-badge {
    background: var(--primary);
}
 
@media (max-width: 968px) {
    .mission-grid,
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-grid {
        direction: ltr;
    }
    
    .vision-image {
        order: -1;
    }
    
    .mission-image img,
    .vision-image img {
        height: 300px;
    }
}
 
/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
 
.services-hero {
    padding: 80px 0;
    background: var(--white);
}
 
.services-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
 
.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
 
.services-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
 
.services-hero-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
 
.services-hero-text .lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
}
 
.services-hero-text p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}
 
.services-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
 
.services-features {
    padding: 80px 0;
    background: var(--gray-100);
}
 
.services-features .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}
 
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
 
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}
 
.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
 
.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}
 
.service-card:hover .service-icon {
    background: var(--primary);
}
 
.service-icon svg {
    color: var(--primary);
    transition: var(--transition);
}
 
.service-card:hover .service-icon svg {
    color: var(--white);
}
 
.service-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}
 
.service-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}
 
.technology-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}
 
.technology-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
 
.technology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
 
.technology-content h2 {
    margin-bottom: 16px;
}
 
.technology-content .lead {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
}
 
.technology-list {
    list-style: none;
}
 
.technology-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
}
 
.technology-list li svg {
    color: var(--primary-light);
    flex-shrink: 0;
}
 
.technology-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
 
.tech-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    text-align: center;
}
 
.tech-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 8px;
}
 
.tech-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
 
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
 
@media (max-width: 968px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-hero-image img {
        height: 300px;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
 
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .technology-stats {
        grid-template-columns: 1fr;
    }
}