/* Main Content */
.main-content {
  width: 100%;
  flex: 1;
}

/* Shop Categories Section */
.shop-categories {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: #ffffff;
}

.category-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
}

.category-image {
  width: 100%;
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
}

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

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

.category-link {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.category-link a {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.category-link a:hover {
  opacity: 0.7;
}

/* Responsive Design for Shop Categories */
@media (max-width: 1024px) {
  .shop-categories {
    grid-template-columns: 1fr;
  }

  .category-image {
    height: 70vh;
    max-height: 600px;
  }

  .category-link {
    bottom: 35px;
    left: 35px;
  }

  .category-link a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .category-image {
    height: 60vh;
    max-height: 500px;
  }

  .category-link {
    bottom: 30px;
    left: 30px;
  }

  .category-link a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .category-image {
    height: 50vh;
    max-height: 400px;
  }

  .category-link {
    bottom: 25px;
    left: 25px;
  }

  .category-link a {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .category-image {
    height: 45vh;
    max-height: 350px;
  }

  .category-link {
    bottom: 20px;
    left: 20px;
  }

  .category-link a {
    font-size: 13px;
  }
}

/* Just In Section */
.just-in-section {
  width: 100%;
  padding: 50px 0 60px 0;
  background-color: #ffffff;
}

.just-in-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 60px;
  margin-bottom: 35px;
}

.just-in-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1;
}

.just-in-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0;
}

.just-in-link:hover {
  opacity: 0.7;
}

.just-in-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 0 60px;
}

.just-in-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.just-in-grid {
  display: flex;
  gap: 15px;
  width: max-content;
}

.just-in-product-card {
  flex: 0 0 auto;
  width: 280px;
  background-color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.just-in-product-card:hover {
  transform: translateY(-5px);
}

.just-in-product-image {
  width: 100%;
  height: 360px;
  background-color: #f5f5f5;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.just-in-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.just-in-product-card:hover .just-in-product-image img {
  transform: scale(1.05);
}

.just-in-product-info {
  padding: 0 5px;
}

.just-in-product-brand {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 5px 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.just-in-product-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 36px;
}

.just-in-product-price {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: 0;
}

/* Responsive Design for Just In Section */
@media (max-width: 1024px) {
  .just-in-header {
    padding: 0 40px;
    margin-bottom: 30px;
  }

  .just-in-title {
    font-size: 36px;
  }

  .just-in-link {
    font-size: 14px;
  }

  .just-in-scroll-container {
    padding: 0 40px;
  }

  .just-in-product-card {
    width: 250px;
  }

  .just-in-product-image {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .just-in-section {
    padding: 40px 0 50px 0;
  }

  .just-in-header {
    padding: 0 30px;
    margin-bottom: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .just-in-title {
    font-size: 32px;
  }

  .just-in-link {
    font-size: 13px;
  }

  .just-in-scroll-container {
    padding: 0 30px;
  }

  .just-in-grid {
    gap: 12px;
  }

  .just-in-product-card {
    width: 220px;
  }

  .just-in-product-image {
    height: 280px;
    margin-bottom: 10px;
  }

  .just-in-product-brand {
    font-size: 10px;
  }

  .just-in-product-name {
    font-size: 13px;
    min-height: 33px;
  }

  .just-in-product-price {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .just-in-section {
    padding: 35px 0 45px 0;
  }

  .just-in-header {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .just-in-title {
    font-size: 28px;
  }

  .just-in-link {
    font-size: 12px;
  }

  .just-in-scroll-container {
    padding: 0 20px;
  }

  .just-in-grid {
    gap: 10px;
  }

  .just-in-product-card {
    width: 200px;
  }

  .just-in-product-image {
    height: 260px;
    margin-bottom: 8px;
  }

  .just-in-product-brand {
    font-size: 9px;
    margin-bottom: 4px;
  }

  .just-in-product-name {
    font-size: 12px;
    margin-bottom: 6px;
    min-height: 30px;
  }

  .just-in-product-price {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .just-in-title {
    font-size: 24px;
  }

  .just-in-product-card {
    width: 180px;
  }

  .just-in-product-image {
    height: 240px;
  }
}

/* New Brands Section */
.new-brands-section {
  width: 100%;
  padding: 60px 60px 80px 60px;
  background-color: #ffffff;
}

.new-brands-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}

.new-brands-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1;
}

.new-brands-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0;
}

.new-brands-link:hover {
  opacity: 0.7;
}

.new-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  background-color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.brand-card:hover {
  transform: translateY(-5px);
}

.brand-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 15px 0 0 0;
  padding: 0;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

/* Responsive Design for New Brands Section */
@media (max-width: 1200px) {
  .new-brands-section {
    padding: 50px 40px 70px 40px;
  }

  .new-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .brand-name {
    font-size: 15px;
    margin-top: 12px;
  }
}

@media (max-width: 1024px) {
  .new-brands-section {
    padding: 45px 40px 60px 40px;
  }

  .new-brands-header {
    margin-bottom: 35px;
  }

  .new-brands-title {
    font-size: 36px;
  }

  .new-brands-link {
    font-size: 14px;
  }

  .new-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .brand-name {
    font-size: 14px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .new-brands-section {
    padding: 40px 30px 50px 30px;
  }

  .new-brands-header {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .new-brands-title {
    font-size: 32px;
  }

  .new-brands-link {
    font-size: 13px;
  }

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

  .brand-name {
    font-size: 13px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .new-brands-section {
    padding: 35px 20px 45px 20px;
  }

  .new-brands-header {
    margin-bottom: 25px;
  }

  .new-brands-title {
    font-size: 28px;
  }

  .new-brands-link {
    font-size: 12px;
  }

  .new-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brand-name {
    font-size: 12px;
    margin-top: 8px;
  }
}

@media (max-width: 360px) {
  .new-brands-title {
    font-size: 24px;
  }

  .new-brands-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .brand-name {
    font-size: 14px;
    margin-top: 10px;
  }
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../../imgs/main1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 40px;
}

.hero-title {
  font-size: 56px;
  font-weight: 400;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 25px 0;
  letter-spacing: 1px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.3;
}

.hero-description {
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 40px 0;
  letter-spacing: 0.5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.hero-button {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.hero-button:hover {
  background-color: white;
  color: #333;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 500px;
  }

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

  .hero-subtitle {
    font-size: 30px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-button {
    padding: 14px 35px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 450px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-button {
    padding: 12px 30px;
    font-size: 12px;
  }

  .scroll-indicator {
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-content {
    padding: 20px 15px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

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

  .hero-description {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .hero-button {
    padding: 10px 25px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-indicator svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 24px;
  }

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

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

  .hero-button {
    padding: 8px 20px;
    font-size: 10px;
  }
}

/* Featured Collections Section */
.featured-collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 60px 40px;
}

.collection-card {
  position: relative;
  width: 100%;
  padding-bottom: 140%;
  overflow: hidden;
  background-color: #f5f5f5;
}

.collection-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

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

.collection-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  padding: 20px;
}

.collection-title {
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.collection-description {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.collection-button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 14px 30px;
  background-color: black;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
  z-index: 3;
}

.collection-button:hover {
  background-color: #333;
  transform: translateX(-50%) translateY(-2px);
}

/* Responsive Design for Featured Collections */
@media (max-width: 1024px) {
  .collection-title {
    font-size: 36px;
  }

  .collection-description {
    font-size: 15px;
  }

  .collection-button {
    padding: 12px 25px;
    font-size: 11px;
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .featured-collections {
    grid-template-columns: 1fr;
  }

  .collection-card {
    padding-bottom: 120%;
  }

  .collection-title {
    font-size: 32px;
  }

  .collection-description {
    font-size: 14px;
  }

  .collection-button {
    padding: 12px 24px;
    font-size: 11px;
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .collection-card {
    padding-bottom: 130%;
  }

  .collection-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .collection-description {
    font-size: 13px;
  }

  .collection-button {
    padding: 10px 20px;
    font-size: 10px;
    bottom: 25px;
  }
}

@media (max-width: 360px) {
  .collection-title {
    font-size: 24px;
  }

  .collection-description {
    font-size: 12px;
  }

  .collection-button {
    padding: 8px 16px;
    font-size: 9px;
    bottom: 20px;
  }
}

/* About Emma Manley Section */
.about-emma-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-content {
  max-width: 900px;
  text-align: center;
  padding: 0 40px;
  margin-bottom: 50px;
}

.about-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #888;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3px;
}

.about-text strong {
  font-weight: 600;
  color: #666;
}

.about-image {
  width: 100%;
  max-width: 840px;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-footer {
  max-width: 900px;
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #888;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3px;
}

.about-description strong {
  font-weight: 600;
  color: #666;
}

.about-button {
  display: inline-block;
  padding: 16px 35px;
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
}

.about-button:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Design for About Emma Section */
@media (max-width: 1024px) {
  .about-emma-section {
    padding: 60px 0;
  }

  .about-content {
    margin-bottom: 40px;
  }

  .about-text {
    font-size: 17px;
  }

  .about-image {
    margin-bottom: 40px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-button {
    padding: 14px 30px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .about-emma-section {
    padding: 50px 0;
  }

  .about-content {
    padding: 0 30px;
    margin-bottom: 35px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-image {
    padding: 0 30px;
    margin-bottom: 35px;
  }

  .about-footer {
    padding: 0 30px;
    gap: 25px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-button {
    padding: 14px 28px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .about-emma-section {
    padding: 40px 0;
  }

  .about-content {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-image {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .about-footer {
    padding: 0 20px;
    gap: 20px;
  }

  .about-description {
    font-size: 14px;
  }

  .about-button {
    padding: 12px 24px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .about-text {
    font-size: 14px;
  }

  .about-description {
    font-size: 13px;
  }

  .about-button {
    padding: 10px 20px;
    font-size: 9px;
  }
}

/* Stella Bomber Section */
.stella-bomber-section {
  width: 100%;
  height: 1500px;
  background-image: url(../../imgs/main4-1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.stella-bomber-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.bomber-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.bomber-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 8px;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.bomber-product-image {
  width: 100%;
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 2px;
}

.bomber-product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.bomber-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
  max-width: 700px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.bomber-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
}

.bomber-button:hover {
  background-color: #ffffff;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive Design for Stella Bomber Section */
@media (max-width: 1024px) {
  .stella-bomber-section {
    padding: 80px 40px;
    min-height: 650px;
  }

  .bomber-content {
    gap: 35px;
  }

  .bomber-title {
    font-size: 46px;
    letter-spacing: 6px;
  }

  .bomber-product-image {
    max-width: 360px;
    padding: 25px;
  }

  .bomber-description {
    font-size: 15px;
  }

  .bomber-button {
    padding: 14px 35px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .stella-bomber-section {
    padding: 60px 30px;
    min-height: 600px;
  }

  .bomber-content {
    gap: 30px;
  }

  .bomber-title {
    font-size: 38px;
    letter-spacing: 5px;
  }

  .bomber-product-image {
    max-width: 320px;
    padding: 20px;
  }

  .bomber-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .bomber-button {
    padding: 14px 30px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .stella-bomber-section {
    padding: 50px 20px;
    min-height: 550px;
  }

  .bomber-content {
    gap: 25px;
  }

  .bomber-title {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .bomber-product-image {
    max-width: 280px;
    padding: 15px;
  }

  .bomber-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .bomber-button {
    padding: 12px 25px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .bomber-title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .bomber-product-image {
    max-width: 240px;
    padding: 12px;
  }

  .bomber-description {
    font-size: 13px;
  }

  .bomber-button {
    padding: 10px 20px;
    font-size: 9px;
  }
}

/* Newsletter Section */
.newsletter-section {
  width: 100%;
  display: flex;
  min-height: 700px;
  background-color: #f5f5f5;
}

.newsletter-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  background-color: #f5f5f5;
}

.phone-mockup {
  max-width: 400px;
  width: 100%;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.newsletter-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background-color: #ffffff;
}

.newsletter-header {
  margin-bottom: 40px;
}

.manley-logo {
  position: relative;
  display: inline-block;
}

.manley-logo span {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 12px;
  color: #ffffff;
  background-color: #3d4f52;
  padding: 15px 60px;
  display: inline-block;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.manley-logo::before,
.manley-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}

.manley-logo::before {
  left: -30px;
  border-width: 30px 30px 30px 0;
  border-color: transparent #3d4f52 transparent transparent;
}

.manley-logo::after {
  right: -30px;
  border-width: 30px 0 30px 30px;
  border-color: transparent transparent transparent #3d4f52;
}

/* Teal triangles */
.manley-logo span::before,
.manley-logo span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}

.manley-logo span::before {
  left: -45px;
  border-width: 30px 0 30px 30px;
  border-color: transparent transparent transparent #7fc4c4;
}

.manley-logo span::after {
  right: -45px;
  border-width: 30px 30px 30px 0;
  border-color: transparent #7fc4c4 transparent transparent;
}

.newsletter-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.newsletter-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.newsletter-tagline {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  margin: 0 0 10px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.newsletter-offer {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  margin: 20px 0 30px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.newsletter-offer strong {
  font-weight: 600;
}

.newsletter-signup-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-email-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  transition: border-color 0.3s ease;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: #000;
}

.newsletter-email-input::placeholder {
  color: #999;
}

.newsletter-signup-button {
  padding: 14px 30px;
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
}

.newsletter-signup-button:hover {
  background-color: #fff;
  color: #000;
}

.newsletter-privacy {
  font-size: 12px;
  font-weight: 300;
  color: #666;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* Responsive Design for Newsletter Section */
@media (max-width: 1024px) {
  .newsletter-section {
    flex-direction: column;
  }

  .newsletter-left {
    padding: 50px 30px;
  }

  .phone-mockup {
    max-width: 350px;
  }

  .newsletter-right {
    padding: 60px 40px;
  }

  .manley-logo span {
    font-size: 32px;
    letter-spacing: 10px;
    padding: 12px 50px;
  }

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

@media (max-width: 768px) {
  .newsletter-left {
    padding: 40px 20px;
  }

  .phone-mockup {
    max-width: 300px;
  }

  .newsletter-right {
    padding: 50px 30px;
  }

  .newsletter-header {
    margin-bottom: 30px;
  }

  .manley-logo span {
    font-size: 28px;
    letter-spacing: 8px;
    padding: 10px 40px;
  }

  .manley-logo::before,
  .manley-logo::after {
    display: none;
  }

  .manley-logo span::before,
  .manley-logo span::after {
    display: none;
  }

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

  .newsletter-subtitle,
  .newsletter-tagline,
  .newsletter-offer {
    font-size: 14px;
  }

  .newsletter-signup-form {
    flex-direction: column;
  }

  .newsletter-signup-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter-left {
    padding: 30px 20px;
  }

  .phone-mockup {
    max-width: 250px;
  }

  .newsletter-right {
    padding: 40px 25px;
  }

  .newsletter-header {
    margin-bottom: 25px;
  }

  .manley-logo span {
    font-size: 24px;
    letter-spacing: 6px;
    padding: 8px 30px;
  }

  .newsletter-title {
    font-size: 22px;
  }

  .newsletter-subtitle,
  .newsletter-tagline,
  .newsletter-offer {
    font-size: 13px;
  }

  .newsletter-email-input {
    padding: 12px 16px;
    font-size: 13px;
  }

  .newsletter-signup-button {
    padding: 12px 25px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .newsletter-right {
    padding: 30px 20px;
  }

  .manley-logo span {
    font-size: 20px;
    letter-spacing: 5px;
    padding: 8px 25px;
  }

  .newsletter-title {
    font-size: 20px;
  }

  .newsletter-subtitle,
  .newsletter-tagline,
  .newsletter-offer {
    font-size: 12px;
  }
}

/* Leather T-Shirt Section */
.leather-tshirt-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  background-color: #d4cfc9;
}

.tshirt-image-top {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}

.tshirt-image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tshirt-title {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 8px;
  color: #ffffff;
  text-align: center;
  z-index: 2;
  margin: 0;
  line-height: 1.1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.tshirt-image-bottom {
  grid-column: 1;
  grid-row: 2;
  overflow: hidden;
}

.tshirt-image-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tshirt-content {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
  background: linear-gradient(
    135deg,
    rgba(97, 117, 138, 0.7) 0%,
    rgba(97, 117, 138, 0.5) 100%
  );
}

.tshirt-description {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px 0;
  max-width: 600px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.tshirt-description strong {
  font-weight: 500;
}

.tshirt-button {
  padding: 16px 40px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  display: inline-block;
}

.tshirt-button:hover {
  background-color: #ffffff;
  color: #61758a;
  transform: translateY(-2px);
}

/* Responsive Design for Leather T-Shirt Section */
@media (max-width: 1024px) {
  .leather-tshirt-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .tshirt-image-top {
    grid-column: 1;
    grid-row: 1;
    min-height: 400px;
  }

  .tshirt-title {
    font-size: 48px;
    letter-spacing: 6px;
    top: 40px;
  }

  .tshirt-image-bottom {
    grid-column: 1;
    grid-row: 2;
    min-height: 350px;
  }

  .tshirt-content {
    grid-column: 1;
    grid-row: 3;
    padding: 60px 40px;
  }

  .tshirt-description {
    font-size: 16px;
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .tshirt-image-top {
    min-height: 350px;
  }

  .tshirt-title {
    font-size: 42px;
    letter-spacing: 5px;
    top: 30px;
  }

  .tshirt-image-bottom {
    min-height: 300px;
  }

  .tshirt-content {
    padding: 50px 30px;
  }

  .tshirt-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .tshirt-button {
    padding: 14px 35px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .tshirt-image-top {
    min-height: 300px;
  }

  .tshirt-title {
    font-size: 36px;
    letter-spacing: 4px;
    top: 25px;
  }

  .tshirt-image-bottom {
    min-height: 250px;
  }

  .tshirt-content {
    padding: 40px 25px;
  }

  .tshirt-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .tshirt-button {
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 360px) {
  .tshirt-image-top {
    min-height: 250px;
  }

  .tshirt-title {
    font-size: 30px;
    letter-spacing: 3px;
    top: 20px;
  }

  .tshirt-image-bottom {
    min-height: 200px;
  }

  .tshirt-content {
    padding: 35px 20px;
  }

  .tshirt-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .tshirt-button {
    padding: 10px 25px;
    font-size: 10px;
  }
}

/* Customer Review Section */
.customer-review-section {
  width: 100%;
  padding: 100px 60px;
  background-color: #f5f2ed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-content {
  max-width: 900px;
  text-align: center;
}

.review-quote {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0 0 30px 0;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  quotes: "" " " "" "'" "'";
}

.review-quote::before {
  content: open-quote;
}

.review-quote::after {
  content: close-quote;
}

.review-author {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #b8997a;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* Responsive Design for Customer Review Section */
@media (max-width: 1024px) {
  .customer-review-section {
    padding: 80px 50px;
  }

  .review-quote {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .review-author {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .customer-review-section {
    padding: 70px 40px;
  }

  .review-content {
    max-width: 700px;
  }

  .review-quote {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .review-author {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .customer-review-section {
    padding: 60px 30px;
  }

  .review-content {
    max-width: 100%;
  }

  .review-quote {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .review-author {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 360px) {
  .customer-review-section {
    padding: 50px 25px;
  }

  .review-quote {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .review-author {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

/* Manley Bride Section */
.manley-bride-section {
  width: 100%;
  padding: 80px 0;
  background-color: #ffffff;
}

.bride-main-title {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 8px;
  text-align: center;
  color: #000000;
  margin: 0 0 60px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.bride-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.bride-image-left {
  width: 100%;
  height: 100%;
}

.bride-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bride-content-right {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bride-text-content {
  margin-bottom: 40px;
}

.bride-intro {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 20px 0;
}

.bride-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #6a6a6a;
  margin: 0 0 30px 0;
}

.bride-button {
  display: inline-block;
  padding: 14px 35px;
  background-color: transparent;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.bride-button:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

.bride-quote {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: #7a7a7a;
  margin: 0 0 15px 0;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  quotes: "" " " "" "'" "'";
}

.bride-quote::before {
  content: open-quote;
}

.bride-quote::after {
  content: close-quote;
}

.bride-quote-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #999999;
  margin: 0;
}

.bride-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery-row {
  display: block;
  height: 300px;
}

.gallery-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Design for Manley Bride Section */
@media (max-width: 1200px) {
  .bride-main-title {
    font-size: 70px;
    letter-spacing: 6px;
    margin-bottom: 50px;
  }

  .bride-content-right {
    padding: 50px;
  }

  .bride-intro {
    font-size: 15px;
  }

  .bride-description {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .bride-main-title {
    font-size: 60px;
    letter-spacing: 5px;
    margin-bottom: 40px;
  }

  .bride-container {
    grid-template-columns: 1fr;
  }

  .bride-content-right {
    padding: 50px 40px;
  }

  .gallery-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-row img {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .manley-bride-section {
    padding: 60px 0;
  }

  .bride-main-title {
    font-size: 50px;
    letter-spacing: 4px;
    margin-bottom: 35px;
  }

  .bride-content-right {
    padding: 40px 30px;
  }

  .bride-text-content {
    margin-bottom: 30px;
  }

  .bride-intro {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .bride-description {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .bride-button {
    padding: 12px 30px;
    font-size: 11px;
    margin-bottom: 30px;
  }

  .bride-quote {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .bride-quote-author {
    font-size: 10px;
  }

  .gallery-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .gallery-row img {
    height: 80px;
  }

  .bride-gallery {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .manley-bride-section {
    padding: 50px 0;
  }

  .bride-main-title {
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 30px;
  }

  .bride-content-right {
    padding: 35px 25px;
  }

  .bride-text-content {
    margin-bottom: 25px;
  }

  .bride-intro {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .bride-description {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .bride-button {
    padding: 11px 25px;
    font-size: 10px;
    margin-bottom: 25px;
  }

  .bride-quote {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .bride-quote-author {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-row img {
    height: 100px;
  }

  .bride-gallery {
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .bride-main-title {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }

  .bride-content-right {
    padding: 30px 20px;
  }

  .bride-intro {
    font-size: 12px;
  }

  .bride-description {
    font-size: 11px;
  }

  .bride-button {
    padding: 10px 22px;
    font-size: 9px;
  }

  .bride-quote {
    font-size: 14px;
  }

  .gallery-row img {
    height: 80px;
  }
}

/* Tote Bag Section */
.tote-bag-section {
  width: 100%;
  background-color: #ffffff;
  padding: 0;
}

.tote-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.tote-image-left {
  width: 100%;
  height: 100%;
  position: relative;
}

.tote-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tote-content-right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}

.tote-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #000000;
  margin: 0 0 30px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.tote-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 40px 0;
}

.tote-image-bottom {
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.tote-image-bottom img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
}

.tote-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  text-align: center;
  align-self: center;
  max-width: fit-content;
}

.tote-button:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive Design for Tote Bag Section */
@media (max-width: 1200px) {
  .tote-content-right {
    padding: 70px 50px;
  }

  .tote-title {
    font-size: 50px;
    margin-bottom: 25px;
  }

  .tote-description {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .tote-image-bottom img {
    margin-bottom: 35px;
  }
}

@media (max-width: 1024px) {
  .tote-container {
    grid-template-columns: 1fr;
  }

  .tote-content-right {
    padding: 60px 40px;
  }

  .tote-title {
    font-size: 46px;
    margin-bottom: 22px;
  }

  .tote-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .tote-image-bottom img {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .tote-content-right {
    padding: 50px 30px;
  }

  .tote-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .tote-description {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .tote-button {
    padding: 14px 35px;
    font-size: 12px;
  }

  .tote-image-bottom img {
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .tote-content-right {
    padding: 40px 25px;
  }

  .tote-title {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .tote-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .tote-button {
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .tote-image-bottom {
    margin-top: 15px;
  }

  .tote-image-bottom img {
    margin-bottom: 25px;
  }
}

@media (max-width: 360px) {
  .tote-content-right {
    padding: 35px 20px;
  }

  .tote-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .tote-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .tote-button {
    padding: 11px 25px;
    font-size: 10px;
  }

  .tote-image-bottom img {
    margin-bottom: 20px;
  }
}

/* Blog Section */
.blog-section {
  width: 100%;
  padding: 80px 40px;
  background-color: #f8f6f3;
}

.blog-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 50px 0;
  color: #2a2a2a;
}

.blog-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  overflow: hidden;
}

.blog-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 20px 20px 15px 20px;
  min-height: 60px;
}

.blog-read-more {
  color: #2a2a2a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin: 0 20px 10px 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: #000000;
}

.blog-date {
  font-size: 13px;
  color: #888888;
  margin: 0 20px 8px 20px;
}

.blog-tags {
  font-size: 12px;
  color: #999999;
  margin: 0 20px 20px 20px;
  line-height: 1.5;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #2a2a2a;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
}

.carousel-nav.prev {
  left: -20px;
}

.carousel-nav.next {
  right: -20px;
}

/* Responsive Design for Blog Section */
@media (max-width: 1200px) {
  .blog-cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .blog-card-title {
    font-size: 17px;
    min-height: 55px;
  }

  .blog-image {
    height: 220px;
  }
}

@media (max-width: 1024px) {
  .blog-section {
    padding: 70px 30px;
  }

  .blog-title {
    font-size: 30px;
    margin-bottom: 45px;
  }

  .blog-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-image {
    height: 200px;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 25px;
  }

  .blog-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .blog-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-image {
    height: 250px;
  }

  .blog-card-title {
    font-size: 16px;
    margin: 18px 18px 12px 18px;
    min-height: auto;
  }

  .blog-read-more,
  .blog-date,
  .blog-tags {
    margin-left: 18px;
    margin-right: 18px;
  }

  .carousel-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 50px 20px;
  }

  .blog-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .blog-image {
    height: 220px;
  }

  .blog-card-title {
    font-size: 15px;
    margin: 15px 15px 10px 15px;
  }

  .blog-read-more {
    font-size: 13px;
    margin: 0 15px 8px 15px;
  }

  .blog-date {
    font-size: 12px;
    margin: 0 15px 6px 15px;
  }

  .blog-tags {
    font-size: 11px;
    margin: 0 15px 15px 15px;
  }
}

@media (max-width: 360px) {
  .blog-section {
    padding: 40px 15px;
  }

  .blog-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-card-title {
    font-size: 14px;
  }
}

/* Greeting Cards Section */
.greeting-cards-section {
  width: 100%;
  margin: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.greeting-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 8px;
  margin: 0 0 40px 0;
  color: #2a2a2a;
}

.greeting-image {
  width: 100%;
  margin: 0 auto 40px auto;
  overflow: hidden;
}

.greeting-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.greeting-image:hover img {
  transform: scale(1.02);
}

.greeting-content {
  max-width: 800px;
  margin: 0 auto;
}

.greeting-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 30px 0;
}

.greeting-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #2a2a2a;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border: 2px solid #2a2a2a;
  transition: all 0.3s ease;
}

.greeting-button:hover {
  background-color: #ffffff;
  color: #2a2a2a;
}

/* Responsive Design for Greeting Cards Section */
@media (max-width: 1024px) {
  .greeting-cards-section {
    padding: 70px 35px;
  }

  .greeting-title {
    font-size: 42px;
    letter-spacing: 6px;
    margin-bottom: 35px;
  }

  .greeting-description {
    font-size: 17px;
  }

  .greeting-button {
    padding: 14px 35px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .greeting-cards-section {
    padding: 60px 30px;
  }

  .greeting-title {
    font-size: 36px;
    letter-spacing: 5px;
    margin-bottom: 30px;
  }

  .greeting-image {
    margin-bottom: 35px;
  }

  .greeting-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .greeting-description br {
    display: none;
  }

  .greeting-button {
    padding: 13px 32px;
    font-size: 13px;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 480px) {
  .greeting-cards-section {
    padding: 50px 25px;
  }

  .greeting-title {
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 25px;
  }

  .greeting-image {
    margin-bottom: 30px;
  }

  .greeting-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .greeting-button {
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}

@media (max-width: 360px) {
  .greeting-cards-section {
    padding: 40px 20px;
  }

  .greeting-title {
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .greeting-image {
    margin-bottom: 25px;
  }

  .greeting-description {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .greeting-button {
    padding: 11px 24px;
    font-size: 11px;
  }
}

/* Customer Testimonials Section */
.testimonials-section {
  width: 100%;
  padding: 80px 40px;
  background-color: #f5f3f0;
  text-align: center;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 400;
  color: #8c7a6b;
  margin: 0 0 60px 0;
  letter-spacing: 1px;
  line-height: 1.4;
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.testimonial-container {
  flex: 1;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 50px 40px;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  position: absolute;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 25px 0;
  quotes: "" " " "" "'" "'";
}

.testimonial-stars {
  font-size: 24px;
  color: #d4af37;
  margin: 0 0 20px 0;
  letter-spacing: 4px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 500;
  color: #8c7a6b;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}

.testimonial-date {
  font-size: 13px;
  color: #999999;
  margin: 0 0 20px 0;
}

.testimonial-link {
  display: inline-block;
  font-size: 14px;
  color: #8c7a6b;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 500;
}

.testimonial-link:hover {
  color: #2a2a2a;
}

.testimonial-nav {
  background-color: rgba(140, 122, 107, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  color: #8c7a6b;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav:hover {
  background-color: rgba(140, 122, 107, 0.3);
  color: #2a2a2a;
}

.testimonial-nav:active {
  transform: scale(0.95);
}

.testimonial-nav.prev {
  order: -1;
}

.testimonial-nav.next {
  order: 1;
}

/* Responsive Design for Testimonials Section */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 70px 35px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .testimonials-carousel {
    gap: 25px;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .testimonial-nav {
    width: 45px;
    height: 45px;
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 30px;
  }

  .testimonials-title {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.3;
  }

  .testimonials-carousel {
    gap: 20px;
  }

  .testimonial-container {
    min-height: 320px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-quote {
    font-size: 17px;
    line-height: 1.5;
  }

  .testimonial-stars {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 50px 25px;
  }

  .testimonials-title {
    font-size: 20px;
    margin-bottom: 35px;
  }

  .testimonials-carousel {
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-container {
    min-height: 300px;
  }

  .testimonial-card {
    padding: 35px 25px;
  }

  .testimonial-quote {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .testimonial-stars {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .testimonial-author {
    font-size: 13px;
  }

  .testimonial-date {
    font-size: 12px;
  }

  .testimonial-link {
    font-size: 13px;
  }

  .testimonial-nav {
    position: relative;
    margin: 0 10px;
  }

  .testimonials-carousel {
    gap: 0;
  }

  .testimonial-nav.prev,
  .testimonial-nav.next {
    order: 0;
  }
}

@media (max-width: 360px) {
  .testimonials-section {
    padding: 40px 20px;
  }

  .testimonials-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .testimonial-container {
    min-height: 280px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-quote {
    font-size: 15px;
  }

  .testimonial-stars {
    font-size: 18px;
  }

  .testimonial-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* Sale & Samples Section */
.sale-samples-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url(../../imgs/main11.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sale-samples-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.sale-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.sale-title {
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 40px 0;
  letter-spacing: 3px;
  text-transform: capitalize;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sale-button {
  display: inline-block;
  padding: 16px 45px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.sale-button:hover {
  background-color: #ffffff;
  color: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Sale & Samples Section */
@media (max-width: 1024px) {
  .sale-samples-section {
    height: 500px;
  }

  .sale-title {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .sale-button {
    padding: 15px 40px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .sale-samples-section {
    height: 450px;
  }

  .sale-title {
    font-size: 36px;
    margin-bottom: 30px;
    letter-spacing: 2px;
  }

  .sale-button {
    padding: 14px 35px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .sale-samples-section {
    height: 400px;
  }

  .sale-overlay {
    padding: 30px 20px;
  }

  .sale-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .sale-button {
    padding: 13px 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 360px) {
  .sale-samples-section {
    height: 350px;
  }

  .sale-title {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
  }

  .sale-button {
    padding: 12px 25px;
    font-size: 10px;
  }
}

/* Instagram Section */
.instagram-section {
  width: 100%;
  padding: 80px 40px;
  background-color: #e8e4df;
}

.instagram-header {
  text-align: left;
  margin-bottom: 60px;
  padding-left: 20px;
}

.instagram-title {
  font-size: 42px;
  font-weight: 400;
  color: #2c2c2c;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.3;
}

.instagram-handle {
  font-size: 18px;
  color: #8b7b6f;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.instagram-handle:hover {
  color: #2c2c2c;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.instagram-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.instagram-item:hover {
  transform: scale(1.02);
}

.instagram-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Responsive Design for Instagram Section */
@media (max-width: 1024px) {
  .instagram-section {
    padding: 60px 30px;
  }

  .instagram-title {
    font-size: 36px;
  }

  .instagram-grid {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 50px 20px;
  }

  .instagram-title {
    font-size: 28px;
    letter-spacing: 1.5px;
  }

  .instagram-handle {
    font-size: 16px;
  }

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

  .instagram-header {
    margin-bottom: 40px;
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .instagram-section {
    padding: 40px 15px;
  }

  .instagram-title {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .instagram-handle {
    font-size: 14px;
  }

  .instagram-grid {
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .instagram-title {
    font-size: 20px;
  }

  .instagram-grid {
    gap: 8px;
  }
}

/* Products Grid Section */
.products-grid-section {
  width: 100%;
  background-color: #ffffff;
  padding: 0;
}

.products-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
}

.product-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 150%;
  overflow: hidden;
  background-color: #fafafa;
  cursor: pointer;
}

.product-grid-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.product-grid-item:hover .product-grid-image img {
  transform: scale(1.05);
}

.product-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  padding: 20px;
}

.product-grid-item:hover .product-grid-overlay {
  opacity: 1;
}

.product-grid-name {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 8px 0;
  text-align: center;
  line-height: 1.3;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  letter-spacing: 0.5px;
}

.product-grid-price {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  text-align: center;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  letter-spacing: 0.3px;
}

/* Responsive Design for Products Grid */
@media (max-width: 1200px) {
  .products-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid-name {
    font-size: 14px;
  }

  .product-grid-price {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .products-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid-item {
    padding-bottom: 160%;
  }

  .product-grid-name {
    font-size: 13px;
  }

  .product-grid-price {
    font-size: 12px;
  }

  .product-grid-overlay {
    padding: 15px;
  }
}

/* Brand Label Section */
.brand-label-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.circular-label {
  width: 400px;
  height: 400px;
  position: relative;
  animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circular-text {
  width: 100%;
  height: 100%;
}

.circular-text-top,
.circular-text-bottom {
  fill: #c49a9a;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.circular-text-top {
  font-weight: 500;
}

.circular-text-bottom {
  font-weight: 300;
  letter-spacing: 1.5px;
}

/* Responsive Design for Brand Label Section */
@media (max-width: 1024px) {
  .brand-label-section {
    padding: 70px 35px;
  }

  .circular-label {
    width: 350px;
    height: 350px;
  }

  .circular-text-top,
  .circular-text-bottom {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .brand-label-section {
    padding: 60px 30px;
    min-height: 80vh;
  }

  .circular-label {
    width: 300px;
    height: 300px;
  }

  .circular-text-top,
  .circular-text-bottom {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .circular-text-bottom {
    letter-spacing: 1.2px;
  }
}

@media (max-width: 480px) {
  .brand-label-section {
    padding: 50px 25px;
    min-height: 70vh;
  }

  .circular-label {
    width: 250px;
    height: 250px;
  }

  .circular-text-top,
  .circular-text-bottom {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .circular-text-bottom {
    letter-spacing: 1px;
  }
}

@media (max-width: 360px) {
  .brand-label-section {
    padding: 40px 20px;
    min-height: 60vh;
  }

  .circular-label {
    width: 220px;
    height: 220px;
  }

  .circular-text-top,
  .circular-text-bottom {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .circular-text-bottom {
    letter-spacing: 0.8px;
  }
}
