/* Bootstrap Icons are loaded from index.asp */

/* ===== Yatach New Style - Bootstrap 5 Based ===== */
/* This stylesheet extends Bootstrap 5 with custom Yatach styling */

/* ===== Base Overrides ===== */
:root {
  --yatach-primary: #0d6efd;
  --yatach-secondary: #6c757d;
  --yatach-success: #198754;
  --yatach-warning: #ffc107;
  --yatach-danger: #dc3545;
  --yatach-brown: #8b4513;
}

body {
  font-family: Arial, "Microsoft YaHei", sans-serif;
  background-color: #f5f5f5;
}

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

a {
  text-decoration: none;
  color: #0066cc;
}

a:hover {
  text-decoration: underline;
}

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

/* ===== Layout ===== */
.page-wrapper {
  max-width: 998px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ===== Top Bar ===== */
.top-bar {
  background: #333;
  color: #fff;
  padding: 10px 15px;
}

.top-bar-inner {
  max-width: 998px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

/* .logo {
  font-size: 22px;
  font-weight: bold;
} */

.logo .orange {
  color: #e85a17;
}

.top-links {
  display: flex;
  gap: 15px;
  font-size: 14px;
}

.top-links a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-links a:hover {
  color: #e85a17;
}

/* ===== Navigation ===== */
.nav-bar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.nav-bar-inner {
  max-width: 998px;
  margin: 0 auto;
  padding: 0 15px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  color: #8b4513;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: #f5f5f5;
}

/* Bootstrap Navbar Custom Styles */
.yatach-navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.yatach-navbar .navbar-brand img {
  height: 50px;
  width: auto;
}

.yatach-navbar .nav-link {
  color: var(--yatach-brown) !important;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 16px !important;
  transition: background-color 0.2s;
}

.yatach-navbar .nav-link:hover,
.yatach-navbar .nav-link.active {
  background-color: #f5f5f5;
}

/* Dropdown hover for desktop */
@media (min-width: 992px) {
  .yatach-navbar .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .yatach-navbar .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
    margin-top: 0;
  }
}

.yatach-navbar .dropdown-item {
  color: #333;
  padding: 10px 16px;
  font-size: 14px;
}

.yatach-navbar .dropdown-item:hover {
  background-color: #f5f5f5;
}

/* Dropdown Menu - Hover for desktop */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  
  /* Remove click requirement for desktop dropdowns */
  .dropdown-toggle::after {
    display: none;
  }
}

/* Dropdown menu base styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 180px;
  padding: 0.5rem 0;
  margin: 0;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  background-color: #f8f9fa;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  padding: 12px 15px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #8b4513;
  width: 100%;
  text-align: left;
}

/* ===== Banner Carousel ===== */
.yatach-carousel {
  position: relative;
  overflow: hidden;
}

.yatach-carousel .carousel-item {
  height: 500px;
}

.yatach-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .yatach-carousel .carousel-item {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .yatach-carousel .carousel-item {
    height: 220px;
  }
}

/* ===== Quick Action Buttons ===== */
.yatach-quick-btns {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.yatach-quick-btns .btn {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.yatach-quick-btns .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile adjustments for quick buttons */
@media (max-width: 768px) {
  .yatach-quick-btns {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .yatach-quick-btns .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* ===== Product Category Quick Nav (Mobile) ===== */
.yatach-category-nav {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: none;
}

@media (max-width: 768px) {
  .yatach-category-nav {
    display: block;
  }
}

.yatach-category-nav .category-item {
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: color 0.2s;
}

.yatach-category-nav .category-item:hover {
  color: var(--yatach-primary);
  text-decoration: none;
}

.yatach-category-nav .category-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 24px;
}

.yatach-category-nav .category-name {
  font-size: 12px;
  font-weight: 500;
}

/* ===== Main Content Sections ===== */
.yatach-section {
  padding: 50px 0;
}

.yatach-section-light {
  background: #f8f9fa;
}

.yatach-section-dark {
  background: #333;
  color: #fff;
}

/* ===== Welcome Section ===== */
.yatach-welcome {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.yatach-welcome h2 {
  color: var(--yatach-brown);
  font-size: 24px;
  margin-bottom: 15px;
}

.yatach-welcome p {
  line-height: 1.8;
  color: #555;
}

/* ===== Featured Product Card ===== */
.yatach-featured-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.yatach-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.yatach-featured-card .card-img-top {
  height: 350px;
  object-fit: cover;
}

.yatach-featured-card .card-body {
  padding: 25px;
}

.yatach-featured-card .card-title {
  color: var(--yatach-brown);
  font-size: 20px;
  margin-bottom: 15px;
}

.yatach-featured-card .card-text {
  color: #666;
  line-height: 1.7;
}

/* ===== News Cards ===== */
.yatach-news-card {
  background: #fff;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.yatach-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.yatach-news-card .card-body {
  padding: 20px;
}

.yatach-news-card .card-date {
  color: #999;
  font-size: 13px;
}

.yatach-news-card .card-title {
  color: #333;
  font-size: 16px;
  margin: 10px 0;
  line-height: 1.5;
}

.yatach-news-card .card-text {
  color: #666;
  font-size: 14px;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: 998px;
  margin: 0 auto 15px;
  background: #f0f0f0;
  padding: 10px 15px;
  font-size: 12px;
  color: #666;
  border-radius: 4px;
}

/* ===== Page Title ===== */
.page-title {
  font-size: 24px;
  color: #8b4513;
  padding: 20px 15px 10px;
  font-weight: bold;
}

.section-title {
  font-size: 18px;
  color: #8b4513;
  margin-bottom: 12px;
  font-weight: bold;
}

/* ===== Content Layout ===== */
.content-wrapper {
  max-width: 998px;
  margin: 0 auto;
  padding: 15px;
}

.two-column {
  display: flex;
  gap: 20px;
}

.main-content {
  flex: 1;
}

.sidebar {
  width: 280px;
}

/* ===== Welcome Section ===== */
.welcome-section {
  margin-bottom: 20px;
}

.welcome-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.btn-more {
  background: #5b9bd5;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 4px;
}

.btn-more:hover {
  background: #4a8ac4;
  text-decoration: none;
}

.welcome-text {
  color: #333;
  line-height: 1.8;
}

/* ===== Product Section ===== */
.product-showcase {
  margin-top: 20px;
}

.product-image {
  border: 1px solid #e0e0e0;
  padding: 15px;
  text-align: center;
  background: #fff;
}

.product-image img {
  max-width: 400px;
}

/* ===== News Section ===== */
.news-box {
  border: 1px solid #e0e0e0;
  padding: 12px;
  background: #fff;
}

.news-item {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

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

.news-title {
  color: #0066cc;
  font-size: 13px;
  line-height: 1.6;
  display: block;
  margin-bottom: 5px;
}

.news-title:hover {
  text-decoration: underline;
}

.news-date {
  color: #666;
  font-size: 12px;
  padding-left: 12px;
}

/* ===== Tables ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.data-table th {
  background: #f0e6d6;
  padding: 12px;
  text-align: left;
  font-weight: bold;
  border: 1px solid #e0e0e0;
  font-size: 13px;
}

.data-table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
  font-size: 13px;
}

.data-table tr:nth-child(even) {
  background: #fafafa;
}

.data-table tr:hover {
  background: #f5f5f5;
}

.data-table .product-thumb {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
  margin-top: 15px;
}

.pagination a {
  color: #0066cc;
}

.pagination select {
  padding: 3px 5px;
  border: 1px solid #ccc;
}

/* ===== Product Detail ===== */
.product-detail-header {
  background: #e8e8e8;
  padding: 20px;
  margin-bottom: 20px;
}

.product-detail-layout {
  display: flex;
  gap: 20px;
}

.product-main-image {
  width: 300px;
}

.product-main-image img {
  width: 100%;
  border: 1px solid #ccc;
}

.product-info {
  flex: 1;
}

.product-name-bar {
  background: #7a8b8b;
  color: #fff;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.accessory-item {
  text-align: center;
  width: 80px;
}

.accessory-item img {
  width: 70px;
  height: 70px;
  border: 1px solid #ccc;
  object-fit: contain;
}

.accessory-name {
  font-size: 11px;
  color: #333;
  margin-top: 5px;
}

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.spec-table td {
  padding: 10px;
  border: 1px solid #e0e0e0;
  font-size: 12px;
}

.spec-table td:first-child {
  background: #f9f9f9;
  width: 35%;
  font-weight: 500;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-label {
  font-size: 14px;
}

.form-input {
  flex: 1;
  max-width: 250px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  font-size: 13px;
}

.btn-submit {
  background: #f0f0f0;
  border: 1px solid #ccc;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 13px;
}

.btn-submit:hover {
  background: #e0e0e0;
}

.btn-primary {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #0052a3;
}

.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
}

/* ===== Contact Form ===== */
.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  position: relative;
}

.form-row .form-group label {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  width: 150px;
  text-align: right;
  flex-shrink: 0;
}

.form-row .form-group input,
.form-row .form-group select,
.form-row .form-group textarea {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-row .form-group input:focus,
.form-row .form-group select:focus,
.form-row .form-group textarea:focus {
  outline: none;
  border-color: #5b9bd5;
  box-shadow: 0 0 0 2px rgba(91, 155, 213, 0.1);
}

.form-group.full-width {
  width: 100%;
  min-width: 100%;
  flex-direction: row;
  align-items: flex-start;
}

.form-group.full-width label {
  width: 150px;
  text-align: right;
  flex-shrink: 0;
  margin-top: 10px;
}

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

.form-select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
}

.required {
  color: #e74c3c;
  font-weight: bold;
  margin-left: 5px;
  display: inline;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}

.captcha-container .required {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin-left: 5px;
}

.captcha-text {
  font-weight: 500;
  white-space: nowrap;
}

.captcha-input {
  width: 100px !important;
  flex: none !important;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.btn-submit {
  background: linear-gradient(to bottom, #7ab8e8, #5b9bd5);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
  background: linear-gradient(to bottom, #6aade8, #4a8ac4);
}

.btn-reset {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-reset:hover {
  background: #e0e0e0;
}

/* ===== Contact Page ===== */
.contact-info {
  padding: 15px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-section {
  margin-top: 20px;
}

.contact-list {
  margin-left: 15px;
}

.contact-row {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.contact-label {
  width: 150px;
  font-weight: 500;
}

/* ===== Sitemap ===== */
.sitemap-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.sitemap-section {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
}

.sitemap-section h2 {
  color: #8b4513;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 10px;
}

.sitemap-list a {
  color: #0066cc;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: all 0.2s;
}

.sitemap-list a:hover {
  color: #5b9bd5;
  padding-left: 5px;
  background: #f5f5f5;
}

/* ===== Footer ===== */
.footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 15px;
  margin-top: 20px;
}

.footer-content {
  max-width: 998px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #666;
  padding: 0 15px;
}

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

.footer-links a {
  color: #0066cc;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-contact-item {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-link:hover {
  color: #0066cc;
  text-decoration: underline;
}

.footer-contact-link svg {
  flex-shrink: 0;
}

.footer-contact-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  margin-bottom: 8px;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  z-index: 1000;
}

.footer-contact-item:hover .footer-contact-tooltip {
  opacity: 1;
  visibility: visible;
}

.footer-contact-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}

/* ===== Promo Page ===== */
.promo-content {
  text-align: center;
  padding: 20px;
}

.promo-image {
  max-width: 300px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.promo-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.promo-desc {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.promo-desc p {
  margin-bottom: 15px;
}

/* ===== Login Form ===== */
.login-form {
  max-width: 400px;
  margin: 30px auto;
  padding: 20px;
}

/* ===== Mobile Product List (Accordion) ===== */
.mobile-product-list {
  display: none;
}

.product-card {
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  background: #fff;
}

.product-card-main {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #fafafa;
}

.product-card-link {
  display: flex;
  align-items: center;
  flex: 1;
  text-decoration: none;
}

.product-card-link:hover {
  text-decoration: none;
}

.product-card-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  transition: transform 0.3s;
  border-radius: 4px;
}

.product-card-toggle:hover {
  background: #e0e0e0;
}

.product-card.expanded .product-card-toggle {
  transform: rotate(180deg);
}

.product-card-thumb {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 12px;
  border: 1px solid #ddd;
}

.product-card-name {
  flex: 1;
  font-weight: bold;
  color: #0066cc;
}

.product-card-body {
  display: none;
  padding: 12px;
  border-top: 1px solid #e0e0e0;
}

.product-card.expanded .product-card-body {
  display: block;
}

.product-card-features {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.6;
}

.product-card-date {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.product-card-detail-link {
  display: inline-block;
  padding: 6px 12px;
  background: #5b9bd5;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
}

.product-card-detail-link:hover {
  background: #4a8ac4;
  text-decoration: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
  }
  
  .top-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Navigation */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-item {
    border-bottom: 1px solid #e0e0e0;
  }

  /* Banner */
  .banner {
    max-width: 100%;
    margin: 0;
    height: 180px;
  }
  
  /* Quick Buttons */
  .quick-buttons {
    max-width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  
  .quick-btn {
    height: 45px;
    font-size: 13px;
  }
  
  /* Two Column Layout */
  .two-column {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    margin-top: 20px;
  }
  
  /* Tables - Hide desktop table, show mobile accordion */
  .desktop-table {
    display: none;
  }
  
  .mobile-product-list {
    display: block;
  }
  
  /* Product Detail */
  .product-detail-layout {
    flex-direction: column;
  }
  
  .product-main-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .accessories {
    justify-content: center;
  }
  
  /* Forms */
  .form-row {
    flex-direction: column;
  }
  
  .form-row .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form-row .form-group label {
    width: auto;
    text-align: left;
    margin-bottom: 5px;
  }
  
  .required {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-left: 5px;
  }
  
  .form-group.full-width {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form-group.full-width label {
    width: auto;
    text-align: left;
    margin-top: 0;
    margin-bottom: 5px;
  }
  
  .form-textarea {
    width: 100%;
  }
  
  .captcha-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .captcha-input {
    width: 100% !important;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Sitemap */
  .sitemap-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Page Title */
  .page-title {
    font-size: 20px;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    max-width: 100%;
    font-size: 11px;
  }
  
  /* Content Wrapper */
  .content-wrapper {
    max-width: 100%;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .banner {
    max-width: 100%;
    margin: 0;
    height: 150px;
  }
  
  .banner-indicator {
    width: 24px;
    height: 20px;
    font-size: 11px;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .top-links {
    font-size: 11px;
    gap: 10px;
  }
  
  .section-title {
    font-size: 16px;
  }
  
  .welcome-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .product-image img {
    max-width: 100%;
  }
}
