/* Paste your navbar CSS here */
:root {
  --primary-color: #6e000c;
  --primary-color-alpha: rgba(110, 0, 12, 0.7);
  --text-dark: #000000;
  --text-light: #ffffff;
  --text-gray: #59413f;
  --bg-light: #f9f9f9;
  --bg-gray: #ffffff;
  --border-color: rgba(110, 0, 12, 0.7);
  --btn-dark: #1a1c1c;
  --font-heading: 'Gotham', sans-serif;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  width: 100%;
  background-color: var(--bg-light);
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 20px;
}

.section-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-title {
  font-family: var(--font-heading);
  border-left: 4px solid var(--primary-color);
  padding-left: 24px;
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.section-subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: var(--text-gray);
  margin: 12px 0 0 28px;
  line-height: 1.5;
  max-width: 600px;
}

.view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color-alpha);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.view-all-icon img {
  width: 10px;
  transform: rotate(0deg);
}

.hero-wrapper {
  background-color: var(--bg-gray);
  padding: 0 20px;
}

.hero-wrapper .container {
  padding: 0;
  max-width: 100%;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 858px;
  overflow: hidden;
  border-radius: 4px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(110, 0, 12, 1) 0%,
    rgba(183, 129, 135, 0.49) 59.5%,
    rgba(255, 255, 255, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 53px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.hero-desc {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 50px 0;
}

.btn-primary {
  background-color: var(--text-light);
  color: var(--primary-color);
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  opacity: 1;
}

.categories-wrapper {
  padding: 90px 40px;
  background-color: var(--bg-gray);
}

.categories-wrapper .container {
  max-width: 100%;
  padding: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.category-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}

.category-card.large {
  height: 600px;
}

.category-card.small {
  height: 270px;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.category-title {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 39px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.category-desc {
  color: var(--text-light);
  font-size: 16px;
  margin: 0 0 20px 0;
}

.category-link {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products-wrapper {
  padding: 0 40px 90px 40px;
  background-color: var(--bg-gray);
}

.products-wrapper .container {
  max-width: 100%;
  padding: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 700px;
}

.product-image-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 22px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 500;
}

.product-details {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.product-text {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
  text-align: center;
}

.product-title {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.product-desc {
  color: var(--text-gray);
  font-size: 14px;
  margin: 0;
}

.product-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
}

.btn-add-bag {
  background-color: var(--btn-dark);
  color: var(--text-light);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: 'Gotham', sans-serif;
}

.btn-add-bag:hover {
  background-color: #333;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  .hero-wrapper {
    padding: 60px 15px;
  }

  .hero-banner {
    height: 600px;
    border-radius: 3px;
  }

  .hero-overlay {
    padding: 60px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 14px;
  }

  /* Categories Section */
  .categories-wrapper {
    padding: 60px 30px;
  }

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

  .category-col {
    gap: 30px;
  }

  .category-card.large {
    height: 400px;
  }

  .category-card.small {
    height: 200px;
  }

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

  /* Products Section */
  .products-wrapper {
    padding: 0 30px 60px 30px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-card {
    height: 530px;
  }

  .product-image-wrapper {
    height: 380px;
  }

  .product-details {
    padding: 25px 15px;
  }

  .product-title {
    font-size: 18px;
  }

  .product-price {
    font-size: 16px;
  }

  /* Section Header */
  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 22px;
    padding-left: 16px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  /* Section Header */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
  }

  .section-header-left {
    gap: 8px;
  }

  .section-title {
    font-size: 20px;
    padding-left: 16px;
  }

  .section-subtitle {
    font-size: 12px;
    margin-left: 16px;
    line-height: 1.4;
  }

  /* Navbar adjustments are in navbar.css */

  /* Hero Section */
  .hero-wrapper {
    padding: 40px 12px;
  }

  .hero-banner {
    height: 450px;
    border-radius: 2px;
  }

  .hero-overlay {
    padding: 30px;
    background: linear-gradient(
      180deg,
      rgba(110, 0, 12, 0.95) 0%,
      rgba(110, 0, 12, 0.7) 50%,
      rgba(183, 129, 135, 0.3) 100%
    );
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero-desc {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .btn-primary {
    padding: 15px 30px;
    font-size: 13px;
  }

  /* Categories Section */
  .categories-wrapper {
    padding: 40px 25px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .categories-grid {
    gap: 20px;
  }

  .category-col {
    gap: 20px;
  }

  .category-card.large {
    height: 300px;
  }

  .category-card.small {
    height: 180px;
  }

  .category-overlay {
    padding: 25px;
  }

  .category-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .category-desc {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .category-link {
    font-size: 12px;
  }

  /* Products Section */
  .products-wrapper {
    padding: 0 25px 40px 25px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card {
    height: 380px;
  }

  .product-image-wrapper {
    height: 250px;
  }

  .product-badge {
    top: 12px;
    right: 12px;
    font-size: 12px;
    padding: 3px 8px;
  }

  .product-details {
    padding: 20px 12px;
  }

  .product-text {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .product-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .product-desc {
    font-size: 12px;
  }

  .product-price {
    font-size: 14px;
  }

  .btn-add-bag {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  /* Hero Section */
  .hero-wrapper {
    padding: 40px 10px;
  }

  .hero-banner {
    height: 380px;
    border-radius: 2px;
  }

  .hero-overlay {
    padding: 20px;
  }

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

  .hero-desc {
    font-size: 12px;
  }

  /* Categories */
  .category-card.large {
    height: 250px;
  }

  .category-card.small {
    height: 150px;
  }

  .category-overlay {
    padding: 20px;
  }

  .category-title {
    font-size: 18px;
  }

  /* Products - Show 1 per row on very small screens */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    height: auto;
    max-height: 450px;
  }

  .product-image-wrapper {
    height: 280px;
  }

  .product-title {
    font-size: 15px;
  }
}
