:root {
  --primary-color: #333;
  --gray-color: #505050;
  --background-light: #f8f8f8;
  --text-color: #555;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-light);
  width: 100%;
}

.store-products {
  padding: 0 15px;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.store-products h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

.product-section {
  margin-bottom: 60px;
}

.product-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.product-box {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 12px;
  transition: var(--transition);
  text-align: center;
  flex: 0 1 auto;
  max-width: 412px;
  min-width: 312px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.product-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 15px;
}

.product-media {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 5 / 5;
}

.product-image,
.product-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-box:hover .product-image,
.product-box:hover .product-video {
  transform: scale(1.05);
}

.btn-lp {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  width: 100%;
  max-width: 250px;
  cursor: pointer;
}

.btn-lp-salmon {
  background: #505050;
  color: #fff;
  border: none;
}

.btn-lp-salmon:hover,
.btn-lp-salmon:focus {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.btn-lp-salmon-light {
  background: linear-gradient(45deg, rgb(135, 135, 135), #505050);
  color: white;
  border: 1px solid var(--gray-color);
}

.btn-lp-salmon-light:hover,
.btn-lp-salmon-light:focus {
  background: linear-gradient(45deg, #fff5f3, #505050);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.store-section-call-to-action {
  margin-top: 15px;
}

.modal.fade .modal-dialog {
  transform: translateY(50px);
  transition: var(--transition);
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

.modal-content {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: none;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

.product-model-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.modal-header .close {
  font-size: 1.5rem;
  color: var(--primary-color);
  opacity: 0.7;
  transition: var(--transition);
  background: none;
  border: none;
}

.modal-header .close:hover {
  opacity: 1;
}

.modal-body {
  padding: 20px;
}

.modal-body .product-media {
  margin-bottom: 20px;
}

.modal-body .product-image {
  border-radius: var(--border-radius);
}

.featurete-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gray-color),
    transparent
  );
  margin: 40px 0;
}

@media (max-width: 768px) {
  .store-products {
    padding: 40px 15px;
  }

  .store-products h1 {
    font-size: 2rem;
  }

  .product-section h2 {
    font-size: 1.8rem;
  }

  .product-box {
    padding: 15px;
    max-width: 100%;
    min-width: 100%;
  }

  .product-box h3 {
    font-size: 1.3rem;
  }

  .btn-lp {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .modal-dialog {
    margin: 15px;
  }
}

@media (max-width: 480px) {
  .store-products h1 {
    font-size: 1.8rem;
  }

  .product-section h2 {
    font-size: 1.6rem;
  }

  .product-box h3 {
    font-size: 1.2rem;
  }

  .btn-lp {
    padding: 8px 16px;
    font-size: 0.85rem;
    max-width: 200px;
  }

  .featurete-divider {
    margin: 30px 0;
  }
}
