:root {
  --primary-color: #ff6b35;
  --secondary-color: #004e89;
  --dark-color: #1a1a2e;
  --light-color: #f4f4f4;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #ddd;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: var(--dark-color);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info@hiddenforestlane.pro {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-info@hiddenforestlane.pro span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-main {
  padding: 20px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--primary-color);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
}

.cart-icon {
  width: 30px;
  height: 30px;
  fill: var(--text-dark);
  transition: var(--transition);
}

.cart-icon:hover {
  fill: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle svg {
  width: 30px;
  height: 30px;
  fill: var(--text-dark);
}

.hero {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--dark-color) 100%
  );
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("attached_assets/stock_images/team_of_workers_in_s_7d5af102.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--light-color);
}

.product-info@hiddenforestlane.pro {
  padding: 20px;
}

.product-category {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.product-price {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background-color: #003d6b;
  transform: translateY(-2px);
}

.features {
  background-color: var(--light-color);
}

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

.feature-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  fill: var(--primary-color);
}

.feature-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

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

footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #888;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 40px 0;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

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

.product-details h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: var(--warning-color);
  font-size: 18px;
}

.product-details .product-price {
  font-size: 36px;
  margin-bottom: 20px;
}

.product-description {
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--text-light);
}

.product-options {
  margin-bottom: 30px;
}

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

.option-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.size-options,
.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-option,
.color-option {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  background-color: #fff;
}

.size-option:hover,
.color-option:hover,
.size-option.active,
.color-option.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--light-color);
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition);
}

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

.quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.cart-page {
  min-height: 60vh;
  padding: 40px 0;
}

.cart-table {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.cart-table thead {
  background-color: var(--light-color);
}

.cart-table th,
.cart-table td {
  padding: 20px;
  text-align: left;
}

.cart-table th {
  font-weight: 600;
  color: var(--dark-color);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.cart-item-info@hiddenforestlane.pro {
  display: flex;
  gap: 20px;
  align-items: center;
}

.remove-btn {
  background-color: transparent;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition);
}

.remove-btn:hover {
  color: #c0392b;
  transform: scale(1.2);
}

.cart-summary {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 400px;
  margin-left: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  border-bottom: none;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  fill: var(--border-color);
}

.empty-cart h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.thank-you-page {
  text-align: center;
  padding: 80px 20px;
  min-height: 60vh;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  fill: var(--success-color);
}

.thank-you-page h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.thank-you-page p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.catalog-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--border-color);
  background-color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .header-main .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.mobile-active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

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

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

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

  .cart-table {
    display: block;
    overflow-x: auto;
  }

  .cart-table th,
  .cart-table td {
    padding: 15px 10px;
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info@hiddenforestlane.pro {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 26px;
  }

  .section {
    padding: 50px 0;
  }

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

  .cart-item-info@hiddenforestlane.pro {
    flex-direction: column;
    align-items: flex-start;
  }
}
