/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores baseada no logo OFICINA LASER */
    --wood-dark: #5C4A3A;           /* Marrom escuro da madeira */
    --wood-medium: #8B6F47;          /* Marrom médio */
    --wood-light: #A68B5B;           /* Marrom claro */
    --laser-orange: #FF8C00;         /* Laranja do feixe de laser */
    --laser-yellow: #FFB347;         /* Amarelo do brilho */
    --laser-glow: #FFD700;           /* Dourado do brilho intenso */
    --gray-dark: #2C2C2C;            /* Cinza escuro do laser head */
    --gray-medium: #4A4A4A;          /* Cinza médio */
    --gray-light: #F5F5F5;           /* Cinza muito claro */
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --border: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

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

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

.header-info {
    display: flex;
    gap: 32px;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.header-item .icon {
    font-size: 14px;
    opacity: 0.8;
}

.header-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    gap: 20px;
}

.main-nav .logo {
    flex-shrink: 0;
}

.main-nav .nav-links {
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 120px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--laser-orange);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--wood-dark);
}

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

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-view,
.btn-order,
.btn-whatsapp {
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--laser-orange);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--laser-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-view {
    background: var(--wood-dark);
    color: var(--white);
    width: 100%;
    margin-top: 16px;
    padding: 12px;
}

.btn-view:hover {
    background: var(--wood-medium);
    transform: translateY(-2px);
}

.btn-order {
    background: var(--wood-dark);
    color: var(--white);
    font-size: 16px;
    padding: 16px 40px;
}

.btn-order:hover {
    background: var(--wood-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Home Page */
.home-page {
    width: 100%;
}

/* Hero Section */
.hero-section {
    color: var(--white);
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    display: block;
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(92, 74, 58, 0.75) 0%, rgba(44, 44, 44, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 100px 24px;
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--laser-orange);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--wood-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

/* Products Section */
.featured-products-section {
    padding: 100px 24px;
    background: var(--white);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--wood-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 60px;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--laser-orange);
}

.product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-light) 0%, #e8e8e8 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 179, 71, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-image.placeholder {
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.product-image.placeholder svg {
    opacity: 0.3;
}

.product-info {
    padding: 20px;
    position: relative;
}

.product-header {
    margin-bottom: 12px;
    min-height: 24px;
}

.featured-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--laser-orange) 0%, var(--laser-yellow) 100%);
    color: var(--white);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.product-name {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-sku {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--laser-orange) 0%, var(--laser-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.product-arrow {
    font-size: 24px;
    color: var(--laser-orange);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.product-card:hover .product-arrow {
    transform: translateX(5px);
}

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

/* Catalog Page */
.catalog-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.catalog-hero {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 179, 71, 0.02) 100%);
    padding: 50px 24px 40px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.catalog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.catalog-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--wood-dark);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.title-accent {
    background: linear-gradient(135deg, var(--laser-orange) 0%, var(--laser-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.catalog-header .subtitle {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.catalog-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}

.catalog-filters {
    margin-bottom: 40px;
    position: sticky;
    top: 80px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-radius: 12px;
    margin-top: -20px;
    border-bottom: 1px solid var(--border);
}

.filters-container {
    max-width: 1000px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
}

.category-filter {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s;
}

.category-filter:hover::before {
    left: 100%;
}

.category-filter:hover {
    border-color: var(--laser-orange);
    background: rgba(255, 140, 0, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.1);
}

.category-filter.active {
    background: var(--laser-orange);
    color: var(--white);
    border-color: var(--laser-orange);
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
}

.filter-icon,
.category-icon {
    font-size: 14px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.category-filter:hover .filter-icon,
.category-filter:hover .category-icon {
    transform: scale(1.1);
}

.products-section {
    margin-top: 40px;
}

.products-count {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.no-products {
    padding: 100px 24px;
    text-align: center;
}

.empty-state {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    color: var(--text-light);
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.empty-title {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.empty-message {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-back-catalog {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--laser-orange) 0%, var(--laser-yellow) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-back-catalog:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

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

/* Product Detail Page */
.product-detail-page {
    padding: 60px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 600px;
    background: var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

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

.main-image.placeholder {
    color: var(--text-light);
    font-size: 16px;
}

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

.thumbnail-images img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: var(--laser-orange);
    transform: scale(1.05);
}

.product-details {
    padding: 20px 0;
}

.breadcrumb {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 14px;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-title {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.product-meta span {
    padding: 8px 16px;
    background: var(--gray-light);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-medium);
}

.product-price-large {
    margin-bottom: 32px;
}

.product-price-large .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--laser-orange);
    letter-spacing: -1px;
}

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

.product-description h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--wood-dark);
    font-weight: 600;
}

.product-description p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 16px;
}

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

.product-not-found {
    text-align: center;
    padding: 120px 24px;
}

.product-not-found h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.btn-back {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: var(--wood-dark);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--wood-medium);
    transform: translateY(-2px);
}

/* Order Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gray-light);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-medium);
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gray-medium);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--wood-dark);
    font-weight: 700;
}

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

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

.form-control {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--laser-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.contact-methods {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
}

.radio-label:hover {
    border-color: var(--laser-orange);
    background: rgba(255, 140, 0, 0.05);
}

.radio-label input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--laser-orange);
    font-weight: 600;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-submit {
    flex: 1;
    padding: 16px;
    background: var(--wood-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: var(--wood-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-cancel {
    padding: 16px 32px;
    background: var(--gray-light);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: var(--gray-medium);
    color: var(--white);
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* About Section */
.about-section {
    padding: 100px 24px;
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--wood-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-image {
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.image-placeholder {
    color: var(--text-light);
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--gray-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Footer */
.main-footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 80px 24px 32px;
    margin-top: 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 24px;
    color: var(--laser-orange);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Validation */
.validation-message {
    color: var(--error-color);
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .header-info {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .hero-section {
        padding: 80px 20px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-images {
        position: static;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .section-title {
        font-size: 32px;
    }

    .catalog-hero {
        padding: 40px 20px 30px;
    }

    .catalog-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .catalog-header .subtitle {
        font-size: 14px;
    }

    .catalog-content {
        padding: 40px 20px;
    }

    .catalog-filters {
        position: static;
        margin-top: 0;
        padding: 10px 0;
    }

    .category-filters {
        padding: 0 10px;
        gap: 6px;
    }

    .category-filter {
        padding: 6px 14px;
        font-size: 12px;
    }

    .product-image-wrapper {
        height: 250px;
    }

    .product-info {
        padding: 20px;
    }

    .product-name {
        font-size: 20px;
        min-height: auto;
    }

    .product-price {
        font-size: 24px;
    }

    .empty-icon {
        width: 80px;
        height: 80px;
    }

    .empty-title {
        font-size: 24px;
    }

    .product-title {
        font-size: 28px;
    }

    .modal-content {
        padding: 32px 24px;
    }
}

/* Admin Area Styles */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f5f5f5;
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
}

.admin-logo {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo h2 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--laser-orange);
}

.admin-logo p {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-nav {
    flex: 1;
    padding: 20px 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.admin-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.admin-nav-item.active {
    background: rgba(255, 140, 0, 0.15);
    color: var(--laser-orange);
    border-left-color: var(--laser-orange);
}

.admin-nav-item span {
    font-size: 20px;
}

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

.admin-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 0;
}

.admin-header {
    background: white;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0;
}

.btn-view-site {
    padding: 10px 20px;
    background: var(--laser-orange);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-site:hover {
    background: var(--laser-yellow);
    transform: translateY(-2px);
}

.admin-content main {
    padding: 32px;
}

/* Admin Dashboard */
.admin-dashboard {
    max-width: 1200px;
}

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

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 48px;
}

.stat-info h3 {
    font-size: 36px;
    margin: 0;
    color: var(--laser-orange);
}

.stat-info p {
    margin: 5px 0 0 0;
    color: var(--text-medium);
    font-size: 14px;
}

.admin-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.admin-action-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.admin-action-card:hover {
    border-color: var(--laser-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.admin-action-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.admin-action-card p {
    color: var(--text-medium);
    margin: 0;
}

/* Admin Tables */
.admin-header-actions {
    margin-bottom: 24px;
}

.admin-header-actions .btn-primary {
    padding: 12px 24px;
    background: var(--laser-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-header-actions .btn-primary:hover {
    background: var(--laser-yellow);
    transform: translateY(-2px);
}

.products-table,
.categories-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.products-table table,
.categories-table table {
    width: 100%;
    border-collapse: collapse;
}

.products-table thead,
.categories-table thead {
    background: var(--gray-light);
}

.products-table th,
.categories-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-table td,
.categories-table td {
    padding: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-medium);
}

.products-table tbody tr:hover,
.categories-table tbody tr:hover {
    background: var(--gray-light);
}

.btn-edit,
.btn-delete {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.btn-edit {
    background: var(--laser-orange);
    color: white;
}

.btn-edit:hover {
    background: var(--laser-yellow);
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.btn-delete:hover {
    background: #c82333;
}

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

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--wood-dark) 100%);
    padding: 24px;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.login-title {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: center;
}

.login-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 32px;
    font-size: 15px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--laser-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--laser-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover:not(:disabled) {
    background: var(--laser-yellow);
    transform: translateY(-2px);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-end;
}

.btn-secondary {
    padding: 12px 24px;
    background: var(--gray-light);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.uploaded-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.image-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.btn-remove-image {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Image Cropper */
.cropper-modal {
    max-width: 720px;
}

.cropper-stage {
    position: relative;
    width: min(90vw, 520px);
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 20px;
    touch-action: none;
}

.cropper-stage img {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    user-select: none;
    -webkit-user-drag: none;
}

.cropper-frame {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.35) inset;
    pointer-events: none;
}

.cropper-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cropper-controls label {
    font-weight: 600;
    color: var(--text-dark);
}

.cropper-controls input[type="range"] {
    flex: 1;
}

/* Access Denied */
.access-denied-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    padding: 24px;
}

.access-denied-container {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 500px;
}

.access-denied-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.access-denied-container p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.badge-published {
    display: inline-block;
    padding: 4px 10px;
    background: #28a745;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-unpublished {
    display: inline-block;
    padding: 4px 10px;
    background: #dc3545;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .admin-content {
        margin-left: 0;
    }

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

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