* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Serif', serif;
  color: #2d2d2d;
  line-height: 1.6;
}

/* TOP BANNER */
.top-banner {
  font-size: 14px;
  background-color: #3d2e1f;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  font-weight: 400;
}

.top-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 15px;
}

/* header */

header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  font-family: 'Libre Baskerville', serif;
}

.logo-main {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 7px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 5px;
  margin-left: 8px;
}

nav ul {
  display: flex;
  list-style-type: none;
  gap: 35px;
}

nav a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #999;
}

nav a.gift-shop {
  color: red;
}

.header-icons a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
}

/* Hero Section  */
.hero {
  position: relative;
  height: 85vh;
  background: url('https://cdn.sanity.io/images/juawghyg/production/c8d4e392711314cb524d6b6e1497333c70d4774d-5504x3072.jpg?rect=0,580,5504,2292&w=2000&h=833&q=80&auto=format') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 70px;
  padding-top: 60px;
}

.hero-content {
  max-width: 600px;
}

.hero-subtitle {
  color: darkred;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 15px;
}

.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 72px;
  line-height: 1.1;
  margin-top: 30px;
  font-weight: 700;
  color: darkred;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #2d2d2d;
  border: 2px solid #2d2d2d;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  color: white;
  background-color: #29230b;
}

.cat-button:hover {
  background-color: #2d2d2d;
  color: #fff;
}

.section-heading {
  /* text-align: center; */
  padding: 60px 20px 40px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Product Grid  */
.product-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-cards {
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-cards:hover .product-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #000;
  color: white;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid white;
}

.product-info {
  padding: 0 0 10px;
}

.product-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* margin-bottom: 5px; */
}

.product-varient {
  font-size: 13px;
  color: #666;
  /* margin-bottom: 8px; */
}

.product-price {
  display: flex;
  /* gap: 10px; */
  align-items: center;
}

.sale-price {
  font-size: 13px;
  font-weight: 600;
  /* margin-bottom: 10px; */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.gift-card {
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gift-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: darkred;
  border: 2px solid white;
  color: white;
  font-size: 26px;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 10;
  padding: 10px;
}

.label::before {
  content: '↗';
  margin-right: 12px;
  font-size: 22px;
}

.softest-gifts-section {
  display: grid;
  grid-template-columns: 48% 52%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 0;
  align-items: start;
}

.hero-side {
  position: relative;
  overflow: hidden;
  height: fit-content;
  /* padding: 20px 0 20px 20px; */
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.content-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 40px 40px 60px;
  background-color: #f8f5f2;
}

.content-header {
  margin-bottom: 50px;
}

.section-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #2d2d2d;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: #2d2d2d;
  margin-bottom: 25px;
  font-weight: 400;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.shop-link:hover {
  opacity: 0.7;
}

.products-carousel {
  display: flex;
  gap: 15px;
  overflow: hidden;
}

.product-card {
  flex: 0 0 calc(33.333% - 10px);
  min-width: 0;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #2d2d2d;
}

.product-variant {
  font-size: 12px;
  color: #666;
}

.product-color {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.color-swatch.ivory {
  background-color: #f5f5dc;
}

.color-swatch.brown {
  background-color: #8b7355;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.original-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.sale-price {
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
}

@media (max-width: 1024px) {
  .softest-gifts-section {
    grid-template-columns: 1fr;
  }

  .hero-side {
    height: 60vh;
  }

  .content-side {
    padding: 60px 40px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .content-side {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .product-card {
    flex: 0 0 100%;
  }

  .products-carousel {
    flex-direction: column;
  }
}

.instagram-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f3f0;
}

.instagram-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.instagram-subtitle {
  font-size: 14px;
  margin-bottom: 40px;
  color: #666;
}

.instagram-subtitle a {
  color: #2d2d2d;
  text-decoration: underline;
}

.gallery-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 20px;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.scroll-button {
  display: none;
}

/* Footer Section */
.footer {
  border-top: 1px solid #ddd;
  background-color: #f5f3f0;
  padding: 60px 20px 40px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-column h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #666;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid #2d2d2d;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'IBM Plex Serif', serif;
  background: transparent;
}

.newsletter-submit {
  padding: 12px 25px;
  background: transparent;
  border: none;
  border-left: 1px solid #2d2d2d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-submit:hover {
  background: #2d2d2d;
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: #2d2d2d;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #666;
}

/* Logo Section */
.logo-section {
  background-color: #f5f3f0;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.large-logo {
  font-size: 180px;
  font-weight: 400;
  letter-spacing: -8px;
  color: #2d2d2d;
  line-height: 1;
  text-transform: lowercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.footer-links a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #666;
}

.copyright {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-container {
    padding: 12px 20px;
  }

  nav ul {
    gap: 20px;
  }

  nav a {
    font-size: 13px;
  }

  .hero {
    height: 70vh;
    padding: 40px 40px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-title {
    font-size: 56px;
  }

  .section-heading {
    padding: 50px 30px 30px;
    font-size: 14px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 30px 60px;
    gap: 25px;
  }

  .grid {
    gap: 15px;
  }

  .label {
    font-size: 22px;
    padding: 12px 20px;
  }

  .softest-gifts-section {
    grid-template-columns: 1fr;
    margin: 40px auto;
  }

  .hero-side {
    height: 60vh;
  }

  .content-side {
    padding: 60px 40px;
  }

  .section-title {
    font-size: 42px;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .large-logo {
    font-size: 120px;
  }
}

/* Small Tablets (768px and below) */
@media (max-width: 768px) {
  .top-banner {
    font-size: 12px;
    padding: 6px 10px;
  }

  .header-container {
    padding: 10px 15px;
  }

  .logo-main {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 6px;
    margin-left: 6px;
  }

  nav {
    display: none;
  }

  .header-icons {
    gap: 15px;
  }

  .header-icons a {
    font-size: 16px;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
    padding: 30px 25px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-title {
    font-size: 42px;
    margin-top: 20px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 12px;
    margin-top: 25px;
  }

  .section-heading {
    padding: 40px 20px 25px;
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 50px;
    gap: 20px;
  }

  .product-badge {
    font-size: 9px;
    padding: 5px 10px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
  }

  .label {
    font-size: 18px;
    padding: 10px 16px;
    letter-spacing: 2px;
  }

  .label::before {
    font-size: 18px;
    margin-right: 8px;
  }

  .content-side {
    padding: 40px 25px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .shop-link {
    font-size: 12px;
  }

  .product-card {
    flex: 0 0 100%;
  }

  .products-carousel {
    flex-direction: column;
    gap: 20px;
  }

  .instagram-section {
    padding: 40px 15px;
  }

  .instagram-title {
    font-size: 14px;
  }

  .instagram-subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .gallery-item {
    width: 250px;
    height: 250px;
  }

  .footer {
    padding: 50px 20px 30px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .newsletter-input {
    font-size: 13px;
    padding: 10px 12px;
  }

  .newsletter-submit {
    padding: 10px 20px;
    font-size: 11px;
  }

  .logo-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 20px;
  }

  .large-logo {
    font-size: 80px;
    letter-spacing: -4px;
  }

  .footer-links {
    width: 100%;
  }

  .copyright {
    font-size: 11px;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .top-banner {
    font-size: 11px;
    padding: 5px;
  }

  .top-banner a {
    margin-left: 8px;
  }

  .header-container {
    padding: 8px 12px;
  }

  .logo-main {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .logo-tagline {
    display: none;
  }

  nav {
    display: none;
  }

  .header-icons {
    gap: 12px;
  }

  .header-icons a {
    font-size: 14px;
  }

  .hero {
    height: 50vh;
    min-height: 350px;
    padding: 20px 15px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-title {
    font-size: 32px;
    margin-top: 15px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 11px;
    margin-top: 20px;
    letter-spacing: 1px;
  }

  .section-heading {
    padding: 30px 15px 20px;
    font-size: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 15px 40px;
    gap: 25px;
  }

  .product-badge {
    font-size: 8px;
    padding: 4px 8px;
    top: 10px;
    right: 10px;
  }

  .product-info {
    padding: 12px 0;
  }

  .product-name {
    font-size: 11px;
  }

  .product-varient {
    font-size: 12px;
  }

  .sale-price {
    font-size: 13px;
  }

  .container {
    padding: 0 10px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  .label {
    font-size: 16px;
    padding: 8px 14px;
    letter-spacing: 1.5px;
  }

  .label::before {
    font-size: 16px;
    margin-right: 6px;
  }

  .softest-gifts-section {
    margin: 30px auto;
  }

  .hero-side {
    height: 50vh;
  }

  .content-side {
    padding: 30px 20px;
  }

  .content-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .shop-link {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .products-carousel {
    gap: 15px;
  }

  .product-title {
    font-size: 11px;
  }

  .product-color {
    font-size: 11px;
  }

  .color-swatch {
    width: 14px;
    height: 14px;
  }

  .original-price {
    font-size: 11px;
  }

  .sale-price {
    font-size: 13px;
  }

  .instagram-section {
    padding: 30px 10px;
  }

  .instagram-title {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .instagram-subtitle {
    font-size: 12px;
    margin-bottom: 25px;
  }

  .gallery-scroll {
    padding: 0 10px;
    gap: 10px;
  }

  .gallery-item {
    width: 200px;
    height: 200px;
  }

  .footer {
    padding: 40px 15px 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column h3 {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    font-size: 12px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    font-size: 12px;
    padding: 10px 12px;
  }

  .newsletter-submit {
    padding: 10px 15px;
    font-size: 10px;
    border-left: none;
    border-top: 1px solid #2d2d2d;
  }

  .social-icons {
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
  }

  .social-icons a {
    font-size: 18px;
  }

  .logo-section {
    padding: 40px 15px;
    gap: 30px;
  }

  .large-logo {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    font-size: 10px;
  }

  .copyright {
    font-size: 10px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  nav {
    display: none;
  }

  .large-logo {
    font-size: 48px;
  }

  .gallery-item {
    width: 180px;
    height: 180px;
  }
}