:root {
    /* Brand Colors */
    --off-white: #DEDCDB;
    --darker-off-white: #D1CFCE;
    --light-blue: #2E3F55;
    --dark-blue: #0C1D33;
    --black: #0B0B0B;
    --accent-yellow: #FBAF2B;
    --accent-yellow-dark: #E09A1F;
    
    /* Semantic Colors */
    --primary-color: #FBAF2B;
    --primary-dark: #E09A1F;
    --secondary-color: #2E3F55;
    --secondary-dark: #0C1D33;
    
    --text-dark: #0B0B0B;
    --text-light: #2E3F55;
    --text-lighter: rgba(46, 63, 85, 0.6);
    --text-on-dark: #DEDCDB;
    
    --bg-light: #DEDCDB;
    --bg-white: #DEDCDB;
    --bg-dark: #0C1D33;
    --bg-darker: #0B0B0B;
    --bg-card: #D1CFCE;
    
    --border-color: rgba(46, 63, 85, 0.15);
    --border-accent: #2E3F55;
    
    /* Semantic State Colors */
    --success-color: #4CAF50;
    --error-color: #D32F2F;
    --warning-color: #FFA726;
    --info-color: #29B6F6;
    
    /* Footer Colors */
    --footer-text: rgba(222, 220, 219, 0.9);
    --footer-text-dim: rgba(222, 220, 219, 0.7);
    --footer-border: rgba(222, 220, 219, 0.15);
    
    --shadow-sm: 0 2px 8px rgba(11, 11, 11, 0.08);
    --shadow-md: 0 4px 12px rgba(11, 11, 11, 0.12);
    --shadow-lg: 0 8px 24px rgba(11, 11, 11, 0.16);
    --shadow-hover: 0 12px 32px rgba(11, 11, 11, 0.2);
    
    /* Typography - Modern Sans-Serif Stack */
    --font-primary: 'Work Sans', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    --font-heading: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Sharp, modern borders */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    
    /* Spacing system (8px base) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    --container-max: 1200px;
    --container-padding: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.navbar {
    background: var(--dark-blue);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(251, 175, 43, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 2.5rem;
    width: auto;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--off-white);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--accent-yellow);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    color: var(--off-white);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 6px;
    z-index: 1001;
    position: relative;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(251, 175, 43, 0.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

.mobile-menu-toggle:active {
    background: rgba(251, 175, 43, 0.2);
}

.hamburger {
    width: 100%;
    height: 3px;
    background: var(--accent-yellow);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    color: var(--off-white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background: var(--accent-yellow-dark);
    box-shadow: 0 0 0 3px rgba(251, 175, 43, 0.3);
    filter: brightness(1.1);
}

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

.btn-secondary:hover {
    background: var(--off-white);
    color: var(--black);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--light-blue);
    border-color: var(--light-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-outline:hover {
    background: var(--light-blue);
    color: var(--off-white);
    box-shadow: 0 0 0 3px rgba(93, 185, 229, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    color: var(--off-white);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-yellow);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.about-section {
    background: var(--bg-card);
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.0625rem;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

/* Featured products grid - 2 columns centered, wider cards */
.products-grid.products-grid-featured {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 100%;
    margin: 0;
}

.products-grid-featured .product-image {
    padding-top: 75%;
}

.product-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-yellow);
    border-width: 2px;
}

.product-card-locked {
    opacity: 0.7;
    position: relative;
}

.product-card-locked:hover {
    transform: none;
    cursor: not-allowed;
}

.product-link-disabled {
    display: block;
    cursor: not-allowed;
    pointer-events: none;
}

.coming-soon-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: var(--accent-yellow);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-card);
}

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

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

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--light-blue);
}

.testimonials-section {
    background: var(--bg-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.testimonial-stars {
    color: var(--accent-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-product {
    color: var(--text-lighter);
    font-size: 0.9375rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    color: var(--off-white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-yellow);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.catalog-wrapper {
    margin-top: 2rem;
}

/* Hide filters by default - can be shown later if needed */
.filters-sidebar {
    display: none;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filters-header h2 {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-reset {
    background: transparent;
    color: var(--light-blue);
    font-size: 0.875rem;
    text-decoration: underline;
    padding: 0;
    font-weight: 600;
}

.filter-reset:hover {
    color: var(--accent-yellow);
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.filter-option span {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.catalog-controls {
    display: none; /* Hidden since we removed filters */
}

.catalog-main {
    max-width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.results-count {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.mobile-filter-toggle {
    display: none;
    padding: 0.5rem 1rem;
    background: var(--light-blue);
    color: var(--off-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-lighter);
}

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

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--accent-yellow);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0;
}

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

.gallery-main {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(222, 220, 219, 0.95);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-nav:hover {
    background: var(--off-white);
    box-shadow: var(--shadow-md);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.thumbnail {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Product Info */
.product-info-section {
    padding-bottom: 3rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.product-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.product-features,
.product-specifications {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.product-features h2,
.product-specifications h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-features ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.product-specifications tr {
    border-bottom: 1px solid var(--border-color);
}

.product-specifications th,
.product-specifications td {
    padding: 0.75rem 0;
    text-align: left;
}

.product-specifications th {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}

.product-specifications td {
    color: var(--text-light);
}

.order-form-section,
.contact-form-section {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
}

.order-form-section h2,
.contact-form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(251, 175, 43, 0.1);
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.error-message {
    display: block;
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
}

.form-actions {
    margin-top: 2rem;
}

.form-note {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    text-align: center;
}

.form-success {
    background: var(--dark-blue);
    color: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    border: 2px solid var(--accent-yellow);
    box-shadow: var(--shadow-md);
}

.product-testimonials {
    margin-top: 3rem;
}

.product-testimonials h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-testimonials .testimonial-card {
    margin-bottom: 1.5rem;
}

.related-products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.related-products h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--black);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--light-blue);
}

.contact-item a:hover {
    text-decoration: underline;
    color: var(--accent-yellow);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-lighter);
    margin-top: 0.25rem;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links-vertical a {
    color: var(--light-blue);
}

.social-links-vertical a:hover {
    color: var(--accent-yellow);
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer {
    background: var(--black);
    color: var(--off-white);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--accent-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-yellow);
}

.footer-col p,
.footer-col li {
    color: var(--footer-text);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-col a {
    color: var(--footer-text-dim);
}

.footer-col a:hover {
    color: var(--accent-yellow);
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.footer-logo-image {
    height: 10rem;
    width: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-size: 2.625rem;
    color: var(--off-white);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
}

.footer-logo-text .logo-accent {
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--footer-border);
}

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

@media (max-width: 968px) {
    :root {
        --container-padding: 20px;
    }
    
    section {
        padding: 3.5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero {
        height: 550px;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid.products-grid-featured {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .product-link {
        flex-direction: row;
        align-items: stretch;
    }
    
    .products-grid-featured .product-link {
        flex-direction: row;
        align-items: stretch;
    }
    
    .product-image {
        width: 200px;
        min-width: 200px;
        padding-top: 0 !important;
        height: auto;
        aspect-ratio: 1;
    }
    
    .product-image img {
        position: relative;
    }
    
    .product-info {
        flex: 1;
        padding: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.125rem;
    }
    
    .coming-soon-badge {
        bottom: 0.5rem;
        left: 0.5rem;
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        letter-spacing: 0.03em;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .catalog-wrapper {
        margin-top: 1.5rem;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-detail-info h1 {
        font-size: 2rem;
    }
    
    .product-detail-info p,
    .product-detail-info ul {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .product-gallery {
        position: static;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.875rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card blockquote p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        right: -140px;
        width: 140px;
        background: var(--dark-blue);
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 0.875rem;
        padding: 1rem 1rem;
        white-space: nowrap;
        border-bottom: 3px solid transparent;
        color: var(--off-white);
        transition: all 0.2s ease;
        display: block;
        text-decoration: none;
        width: 140px;
        box-sizing: border-box;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(251, 175, 43, 0.1);
        color: var(--accent-yellow);
        border-bottom: 3px solid var(--accent-yellow);
        width: 140px;
    }
    
    .nav-menu a:focus {
        outline: 2px solid var(--accent-yellow);
        outline-offset: -2px;
        background: rgba(251, 175, 43, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .faq-section {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid.products-grid-featured {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-link {
        flex-direction: row;
        align-items: stretch;
    }
    
    .products-grid-featured .product-link {
        flex-direction: row;
        align-items: stretch;
    }
    
    .product-image {
        width: 140px;
        min-width: 140px;
        padding-top: 0 !important;
        height: auto;
        aspect-ratio: 1;
    }
    
    .product-image img {
        position: relative;
    }
    
    .product-info {
        padding: 1rem;
        flex: 1;
    }
    
    .product-info h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-description {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .coming-soon-badge {
        bottom: 0.5rem;
        left: 0.5rem;
        padding: 0.375rem 0.625rem;
        font-size: 0.625rem;
        letter-spacing: 0.03em;
    }
    
    .catalog-wrapper {
        margin-top: 1rem;
    }
    
    .filters-sidebar {
        display: none; /* Always hide on mobile */
    }
    
    .mobile-filter-toggle {
        display: none; /* No filters to toggle */
    }
    
    .catalog-controls {
        display: none; /* No controls needed */
    }
    
    .product-title {
        font-size: 1.875rem;
    }
    
    .product-price-large {
        font-size: 1.5rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        display: none;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-bottom {
        border-top: none;
        padding-top: 0;
    }
    
    .cta-section h2 {
        font-size: 1.875rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    .hero-buttons,
    .btn,
    .footer,
    .filters-sidebar {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}
