/* ===== BEOR STORE - Main Stylesheet ===== */
/* Based on wallpaneel.com layout */
/* ========================================= */

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-hover: #d63850;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0f3460;
  --border: #e5e7eb;
  --success: #10b981;
  --discount: #ef4444;
  --star: #f59e0b;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1280px;
  --header-h: 80px;
}

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

html { scroll-behavior: smooth; height: 100%; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input { font-family: inherit; }

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

/* ===== Announcement Bar ===== */
.announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.announcement-bar span { opacity: 0.9; }

/* ===== Header ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img { height: 40px; width: auto; }
.header-logo span {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Navigation */
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.header-nav a:hover { color: var(--accent); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }
.header-nav a.active { color: var(--accent); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #fff;
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 50;
}
.nav-item:hover .nav-dropdown,
.nav-item.active .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  transition: all 0.2s;
}
.nav-dropdown a:hover {
  color: var(--accent);
  background: var(--bg-light);
  padding-left: 28px;
}
.nav-dropdown a::after { display: none; }

/* Header Icons */
.header-icons { display: flex; align-items: center; gap: 16px; }
.header-icons a, .header-icons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.2s;
  color: var(--text);
  position: relative;
}
.header-icons a:hover, .header-icons button:hover { background: var(--bg-light); }
.header-icons svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Mobile Menu Toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 20px;
  color: #fff;
  width: 100%;
}
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 650px;
}
.hero-content p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Hero Grid (multiple sections) ===== */
.hero-grid-sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
}
.hero-grid-section {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  cursor: pointer;
}
.hero-grid-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  position: absolute;
  inset: 0;
}
.hero-grid-section:hover img { transform: scale(1.05); }
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}
.hero-grid-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  z-index: 2;
  color: #fff;
}
.hero-grid-content .tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-grid-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-grid-content p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 16px;
}
.hero-grid-content .btn-link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.hero-grid-content .btn-link:hover { border-color: #fff; }
.hero-grid-content .btn-link svg { width: 16px; height: 16px; }

/* ===== Section Headers ===== */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .subtitle {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Room Categories ===== */
.room-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.room-category {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.room-category:hover {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.room-category .icon { margin-bottom: 12px; }
.room-category .icon svg { width: 36px; height: 36px; color: var(--accent); }
.room-category h4 { font-size: 14px; font-weight: 600; }
.room-category p { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card .product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .product-card-body .add-to-cart {
  margin-top: auto;
}
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-light);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--discount);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  z-index: 2;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-actions button, .product-card-actions a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  color: var(--text);
}
.product-card-actions button:hover, .product-card-actions a:hover {
  background: var(--accent);
  color: #fff;
}
.product-card-actions svg { width: 16px; height: 16px; }

.product-card-body { padding: 16px; }
.product-card-body .category-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-body h3 a { color: var(--text); }
.product-card-body h3 a:hover { color: var(--accent); }
.product-card-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-card-price .current {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.product-card-price .original {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}
.product-card-price .regular {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.product-card .add-to-cart {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.product-card .add-to-cart:hover { background: var(--accent); }

/* View All Button */
.view-all-wrap { text-align: center; margin-top: 40px; }
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s;
}
.view-all-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  gap: 12px;
}
.view-all-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.view-all-btn:hover svg { transform: translateX(4px); }

/* ===== Banners Between Sections ===== */
.banner-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 80px 20px;
  color: #fff;
}
.banner-content .subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.8;
}
.banner-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.banner-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 24px;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  transition: all 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow-md); background: #fff; }
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--accent); }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== Comparison ===== */
.comparison-section { background: var(--bg-light); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.comparison-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.comparison-item .label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
}
.comparison-item .label.before { background: #fef2f2; color: var(--discount); }
.comparison-item .label.after { background: #ecfdf5; color: var(--success); }
.comparison-item img { width: 100%; }

/* ===== Features Strip ===== */
.features-strip {
  background: var(--primary);
  color: #fff;
  padding: 32px 0;
}
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-strip-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0.8;
}
.feature-strip-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.feature-strip-item p { font-size: 13px; opacity: 0.7; }

/* ===== Footer ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #fff;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 20px;
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  background: var(--bg-light);
  padding: 16px 0;
  font-size: 14px;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text); }
.breadcrumbs .sep { margin: 0 8px; }

/* ===== Page Header ===== */
.page-header {
  background: var(--primary);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Catalog Page ===== */
.page-main { flex: 1 0 auto; }

.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 40px 0; }

/* Sidebar Filters */
.filter-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.filter-sidebar h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.filter-group { margin-bottom: 24px; }
.filter-group h4 { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group label { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 14px; cursor: pointer; }
.filter-group input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; }
.filter-group .count { color: var(--text-light); font-size: 12px; margin-left: auto; }

/* Catalog Header */
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.catalog-header .result-count { font-size: 14px; color: var(--text-light); }
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.catalog-sort select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
.catalog-sort select:focus { outline: none; border-color: var(--accent); }

.catalog-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.pagination a:hover, .pagination a.active { border-color: var(--accent); color: var(--accent); background: rgba(233,69,96,0.05); }
.pagination a.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===== Contact Page ===== */
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(233,69,96,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-detail h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--text-light); margin: 0; }

.contact-form { background: var(--bg-light); padding: 40px; border-radius: var(--radius-lg); }
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

/* ===== Mobile Nav Overlay ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open {
  display: block;
  opacity: 1;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 201;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu .close-btn {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.mobile-menu .close-btn button { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.mobile-menu .close-btn svg { width: 20px; height: 20px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu a.active { color: var(--accent); font-weight: 600; }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid-sections { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .room-categories { grid-template-columns: repeat(3, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catalog-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }

  .hero { min-height: 450px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }
  .hero-grid-sections { grid-template-columns: 1fr; }
  .hero-grid-section { min-height: 320px; }

  .section { padding: 48px 0; }
  .section-header h2 { font-size: 28px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .room-categories { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-strip-item { flex-direction: column; text-align: center; }
  .comparison-grid { grid-template-columns: 1fr; }

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

  .catalog-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .banner-section { min-height: 320px; }
  .banner-content h2 { font-size: 28px; }
  .banner-content { padding: 48px 20px; }

  .page-header { padding: 40px 0; }
  .page-header h1 { font-size: 30px; }

  .comparison-grid { gap: 16px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card-body { padding: 10px; }
  .product-card-body h3 { font-size: 13px; }
  .product-card-price .current, .product-card-price .regular { font-size: 15px; }
  .product-card .add-to-cart { padding: 10px; font-size: 12px; }
  .catalog-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ===== Fix for mobile touch ===== */
@media (hover: none) and (pointer: coarse) {
  .product-card-actions {
    opacity: 1;
    transform: translateX(0);
  }
  .hero-grid-section { cursor: default; }
  .room-category { cursor: default; }
}

/* ===== Utility Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }

/* ===== Portfolio / Punime Gallery ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img {
  transform: scale(1.08);
}
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  .portfolio-item {
    aspect-ratio: 3 / 4;
  }
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-section-inner {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .cta-section { padding: 50px 20px; }
  .cta-section h2 { font-size: 24px; }
}

}
