.main {
  min-height: calc(100vh - 70px);
  margin-top: 70px;
}


.backpack-collection {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(249, 246, 240, 0.8) 100%);
}

.backpack-collection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.backpack-collection__header {
  margin-bottom: 60px;
  text-align: center;
}

.backpack-collection__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 48px;
}

.backpack-collection__title i {
  font-size: 42px;
}

.backpack-collection__subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.6;
}

.backpack-collection__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.backpack-collection__filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 12px 24px;
  color: var(--text-color);
  font-weight: 500;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.backpack-collection__filter-btn:hover,
.backpack-collection__filter-btn.active {
  border-color: var(--main-color);
  color: white;
  background: var(--main-color);
  transform: translateY(-2px);
}

.backpack-collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 500px) {
  .backpack-collection__grid {
    grid-template-columns: 1fr;
  }
}

.backpack-collection__item {
  position: relative;
  height: max-content;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
}

.backpack-collection__item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.backpack-collection__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 8px 15px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  background: var(--secondary-color);
}

.backpack-collection__badge--new {
  background: var(--accent-color);
}

.backpack-collection__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.backpack-collection__content {
  padding: 25px;
}

.backpack-collection__name {
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 24px;
}

.backpack-collection__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.backpack-collection__stars {
  display: flex;
  gap: 2px;
}

.backpack-collection__stars i {
  color: #FFD700;
  font-size: 14px;
}

.backpack-collection__rating-text {
  opacity: 0.7;
  color: var(--text-color);
  font-size: 14px;
}

.backpack-collection__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.backpack-collection__feature {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 15px;
  padding: 6px 12px;
  color: var(--main-color);
  font-weight: 500;
  font-size: 12px;
  background: rgba(42, 127, 98, 0.1);
}

.backpack-collection__description {
  margin-bottom: 20px;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.backpack-collection__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.backpack-collection__current-price {
  color: var(--main-color);
  font-weight: 700;
  font-size: 24px;
}

.backpack-collection__original-price {
  opacity: 0.5;
  color: var(--text-color);
  font-size: 16px;
  text-decoration: line-through;
}

.backpack-collection__discount {
  border-radius: 10px;
  padding: 4px 8px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  background: var(--secondary-color);
}

.backpack-collection__add-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 15px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  background: var(--main-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.backpack-collection__add-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}


.shelter-systems {
  padding: 80px 0;
  color: white;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-color) 100%);
}

.shelter-systems__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.shelter-systems__header {
  margin-bottom: 60px;
  text-align: center;
}

.shelter-systems__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 48px;
}

.shelter-systems__description {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.6;
}

.shelter-systems__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.shelter-systems__featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.shelter-systems__featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 25px;
  padding: 10px 20px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
  background: #FFD700;
}

.shelter-systems__featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.shelter-systems__featured-content {
  padding: 30px;
}

.shelter-systems__featured-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 28px;
}

.shelter-systems__featured-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.shelter-systems__spec {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.shelter-systems__spec i {
  color: var(--secondary-color);
  font-size: 16px;
}

.shelter-systems__featured-description {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.shelter-systems__featured-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.shelter-systems__featured-current {
  font-weight: 700;
  font-size: 32px;
}

.shelter-systems__featured-original {
  opacity: 0.6;
  font-size: 20px;
  text-decoration: line-through;
}

.shelter-systems__featured-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 18px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.shelter-systems__featured-btn:hover {
  background: #ff6b1a;
  transform: translateY(-2px);
}

.shelter-systems__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shelter-systems__item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.shelter-systems__item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.shelter-systems__item-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 15px;
  padding: 6px 12px;
  color: white;
  font-weight: 600;
  font-size: 11px;
  background: var(--secondary-color);
}

.shelter-systems__item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .shelter-systems__item-image {
    height: 300px;
  }
}

.shelter-systems__item-content {
  padding: 20px;
}

.shelter-systems__item-title {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 18px;
}

.shelter-systems__item-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.shelter-systems__item-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  font-size: 13px;
}

.shelter-systems__item-features i {
  width: 16px;
  color: var(--secondary-color);
}

.shelter-systems__item-description {
  margin-bottom: 15px;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.5;
}

.shelter-systems__item-price {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 20px;
}


.adventure-apparel {
  padding: 80px 0;
  background: var(--secondary-bg-color);
}

.adventure-apparel__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.adventure-apparel__header {
  margin-bottom: 60px;
  text-align: center;
}

.adventure-apparel__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 48px;
}

.adventure-apparel__subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.6;
}

.adventure-apparel__categories {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.adventure-apparel__category {
  border: 2px solid rgba(42, 127, 98, 0.1);
  border-radius: 20px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(249, 246, 240, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.adventure-apparel__category-header {
  margin-bottom: 40px;
  text-align: center;
}

.adventure-apparel__category-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 32px;
}

.adventure-apparel__category-description {
  opacity: 0.7;
  color: var(--text-color);
  font-size: 16px;
}

.adventure-apparel__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.adventure-apparel__product {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
}

.adventure-apparel__product:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.adventure-apparel__product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 8px 15px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  background: var(--secondary-color);
}

.adventure-apparel__product-badge--monsoon {
  background: var(--accent-color);
}

.adventure-apparel__product-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.adventure-apparel__product-info {
  padding: 25px;
}

.adventure-apparel__product-name {
  margin-bottom: 12px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 20px;
}

.adventure-apparel__product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.adventure-apparel__product-rating i {
  color: #FFD700;
  font-size: 14px;
}

.adventure-apparel__product-rating span {
  opacity: 0.7;
  color: var(--text-color);
  font-size: 14px;
}

.adventure-apparel__product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.adventure-apparel__product-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  padding: 5px 10px;
  color: var(--main-color);
  font-weight: 500;
  font-size: 11px;
  background: rgba(42, 127, 98, 0.1);
}

.adventure-apparel__product-description {
  margin-bottom: 20px;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
}

.adventure-apparel__product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adventure-apparel__current {
  color: var(--main-color);
  font-weight: 700;
  font-size: 22px;
}

.adventure-apparel__original {
  opacity: 0.5;
  color: var(--text-color);
  font-size: 16px;
  text-decoration: line-through;
}


.camping-essentials {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(58, 90, 120, 0.05) 0%, rgba(42, 127, 98, 0.05) 100%);
}

.camping-essentials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.camping-essentials__header {
  margin-bottom: 60px;
  text-align: center;
}

.camping-essentials__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 48px;
}

.camping-essentials__subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.6;
}

.camping-essentials__layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

.camping-essentials__categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.camping-essentials__category {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 20px;
  color: var(--text-color);
  font-weight: 500;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.camping-essentials__category:hover,
.camping-essentials__category.active {
  border-color: var(--main-color);
  color: white;
  background: var(--main-color);
  transform: translateX(10px);
}

.camping-essentials__category i {
  width: 24px;
  font-size: 20px;
}

.camping-essentials__content {
  position: relative;
}

.camping-essentials__tab {
  display: none;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--secondary-bg-color);
}

.camping-essentials__tab.active {
  display: block;
}

.camping-essentials__featured-product {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(42, 127, 98, 0.1);
  padding-bottom: 30px;
}

.camping-essentials__featured-image {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .camping-essentials__featured-image {
    height: 350px;
  }
}

.camping-essentials__featured-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.camping-essentials__featured-title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 28px;
}

.camping-essentials__featured-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.camping-essentials__spec {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 12px;
  background: rgba(42, 127, 98, 0.1);
}

.camping-essentials__spec i {
  color: var(--main-color);
  font-size: 16px;
}

.camping-essentials__featured-description {
  margin-bottom: 20px;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.camping-essentials__featured-price {
  margin-bottom: 0;
  color: var(--main-color);
  font-weight: 700;
  font-size: 28px;
}

.camping-essentials__product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.camping-essentials__mini-product {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 12px;
  padding: 15px;
  background: rgba(42, 127, 98, 0.05);
  transition: all 0.3s ease;
}

.camping-essentials__mini-product:hover {
  background: rgba(42, 127, 98, 0.1);
  transform: translateY(-3px);
}

.camping-essentials__mini-product img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.camping-essentials__mini-info h4 {
  margin-bottom: 5px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 16px;
}

.camping-essentials__mini-info span {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 18px;
}


.tech-navigation {
  padding: 80px 0;
  color: white;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
}

.tech-navigation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tech-navigation__header {
  margin-bottom: 60px;
  text-align: center;
}

.tech-navigation__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 48px;
}

.tech-navigation__subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.6;
}

.tech-navigation__showcase {
  margin-bottom: 60px;
}

.tech-navigation__hero-product {
  position: relative;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.tech-navigation__hero-badge {
  position: absolute;
  top: -15px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 25px;
  padding: 12px 25px;
  box-shadow: 0 5px 15px rgba(255, 126, 51, 0.3);
  color: white;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff6b1a 100%);
}

.tech-navigation__hero-content {
  margin-top: 10px;
}

.tech-navigation__hero-image {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
}

.tech-navigation__hero-title {
  margin-bottom: 25px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 32px;
}

.tech-navigation__hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.tech-navigation__hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.tech-navigation__hero-feature i {
  margin-top: 2px;
  color: var(--secondary-color);
  font-size: 20px;
}

.tech-navigation__hero-feature strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.tech-navigation__hero-feature span {
  opacity: 0.8;
  font-size: 14px;
}

.tech-navigation__hero-description {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.tech-navigation__hero-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}


.tech-navigation__hero-current {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 36px;
}

.tech-navigation__hero-original {
  opacity: 0.6;
  font-size: 24px;
  text-decoration: line-through;
}

.tech-navigation__hero-discount {
  border-radius: 20px;
  padding: 8px 15px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tech-navigation__hero-actions {
  display: flex;
  gap: 15px;
}

.tech-navigation__hero-primary {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 12px;
  padding: 18px 30px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff6b1a 100%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-navigation__hero-primary:hover {
  box-shadow: 0 10px 25px rgba(255, 126, 51, 0.3);
  transform: translateY(-2px);
}

.tech-navigation__hero-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 18px 30px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-navigation__hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.tech-navigation__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tech-navigation__product-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tech-navigation__product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
}

.tech-navigation__card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 8px 15px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  background: var(--secondary-color);
}

.tech-navigation__card-badge--waterproof {
  background: var(--accent-color);
}

.tech-navigation__card-badge--emergency {
  background: #ef4444;
}

.tech-navigation__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tech-navigation__card-content {
  padding: 25px;
}

.tech-navigation__card-title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
}

.tech-navigation__card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tech-navigation__stars {
  display: flex;
  gap: 2px;
}

.tech-navigation__stars i {
  color: #FFD700;
  font-size: 14px;
}

.tech-navigation__card-rating span {
  opacity: 0.8;
  font-size: 14px;
}

.tech-navigation__card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tech-navigation__card-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 15px;
  padding: 6px 12px;
  color: white;
  font-weight: 500;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.tech-navigation__card-description {
  margin-bottom: 20px;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.5;
}

.tech-navigation__card-price {
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 24px;
}

.tech-navigation__card-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 15px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff6b1a 100%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-navigation__card-button:hover {
  box-shadow: 0 8px 20px rgba(255, 126, 51, 0.3);
  transform: translateY(-2px);
}

.tech-navigation__info-banner {
  margin-top: 60px;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-color) 100%);
}

.tech-navigation__info-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.tech-navigation__info-content i {
  color: var(--secondary-color);
  font-size: 32px;
}

.tech-navigation__info-content h4 {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 24px;
}

.tech-navigation__info-content p {
  opacity: 0.9;
  font-size: 16px;
}


@media (max-width: 768px) {
  .main {
    margin-top: 60px;
  }


  .backpack-collection {
    padding: 60px 0;
  }

  .backpack-collection__title {
    flex-direction: column;
    gap: 10px;
    font-size: 36px;
  }

  .backpack-collection__filter {
    flex-direction: column;
    align-items: center;
  }


  .shelter-systems {
    padding: 60px 0;
  }

  .shelter-systems__title {
    flex-direction: column;
    gap: 10px;
    font-size: 36px;
  }

  .shelter-systems__showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shelter-systems__featured-specs {
    grid-template-columns: 1fr;
  }


  .adventure-apparel {
    padding: 60px 0;
  }

  .adventure-apparel__title {
    flex-direction: column;
    gap: 10px;
    font-size: 36px;
  }

  .adventure-apparel__category {
    padding: 25px;
  }

  .adventure-apparel__category-title {
    flex-direction: column;
    gap: 8px;
    font-size: 28px;
  }

  .adventure-apparel__products {
    grid-template-columns: 1fr;
  }


  .camping-essentials {
    padding: 60px 0;
  }

  .camping-essentials__title {
    flex-direction: column;
    gap: 10px;
    font-size: 36px;
  }

  .camping-essentials__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .camping-essentials__categories {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
  }

  .camping-essentials__category {
    flex-shrink: 0;
    min-width: 150px;
  }

  .camping-essentials__featured-product {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .camping-essentials__featured-specs {
    grid-template-columns: 1fr;
  }

  .camping-essentials__product-list {
    grid-template-columns: 1fr;
  }


  .tech-navigation {
    padding: 60px 0;
  }

  .tech-navigation__title {
    flex-direction: column;
    gap: 10px;
    font-size: 36px;
  }

  .tech-navigation__hero-features {
    grid-template-columns: 1fr;
  }

  .tech-navigation__hero-actions {
    flex-direction: column;
  }

  .tech-navigation__grid {
    grid-template-columns: 1fr;
  }

  .tech-navigation__info-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .backpack-collection__container,
  .shelter-systems__container,
  .adventure-apparel__container,
  .camping-essentials__container,
  .tech-navigation__container {
    padding: 0 15px;
  }

  .backpack-collection__title,
  .shelter-systems__title,
  .adventure-apparel__title,
  .camping-essentials__title,
  .tech-navigation__title {
    font-size: 28px;
  }

  .backpack-collection__filter-btn,
  .camping-essentials__category {
    padding: 10px 15px;
    font-size: 14px;
  }

  .shelter-systems__featured-content,
  .camping-essentials__tab,
  .adventure-apparel__category {
    padding: 20px;
  }

  .tech-navigation__hero-product {
    padding: 25px;
  }

  .tech-navigation__hero-primary,
  .tech-navigation__hero-secondary {
    padding: 15px 20px;
    font-size: 16px;
  }
}