body.loading {
  background: #fff;
}

/* ===== FIXED SOCIAL SIDEBAR ===== */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-sidebar-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.social-sidebar.open .social-sidebar-links {
  max-height: 300px;
  opacity: 1;
}

.social-sidebar a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px 0 0 12px;
  border: 1px solid #1a1a1a;
  border-right: none;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.social-sidebar a:hover {
  background: #1a1a1a;
  color: #fff;
  transform: scale(1.1);
}

.social-toggle-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px 0 0 12px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: -4px 4px 12px rgba(0,0,0,0.2);
}

.social-toggle-btn:hover {
  background: #333;
}

.social-sidebar.open .social-toggle-btn {
  background: #444;
}

/* ===== BASE RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #000;
  background-color: #fff;
  line-height: 1.6;
  padding-top: 72px;
}

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

/* Hero */

@layer utilities {
  .transition-transform-scale {
    transition: transform 0.3s ease;
  }
  .hover-scale:hover {
    transform: scale(1.05);
  }
  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  .loading-fill {
    transform: scaleX(0);
    transform-origin: left;
    animation: fillScreen 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  }
  @keyframes fillScreen {
    to {
      transform: scaleX(1);
    }
  }
  .logo-slide {
    transform: translateY(150px);
    opacity: 0;
    animation:
      slideUpLogo 1s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards,
      moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
  }
  @keyframes slideUpLogo {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes moveToTop {
    to {
      transform: translateY(-120px);
    }
  }
  .tagline-fade-1 {
    transform: translateY(40px);
    opacity: 0;
    animation:
      fadeInUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.2s forwards,
      moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
  }
  .tagline-fade-2 {
    transform: translateY(40px);
    opacity: 0;
    animation:
      fadeInUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards,
      moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
  }
  @keyframes fadeInUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .counter-move {
    transform: translateX(-100vw);
    animation: moveWithBackground 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  }
  @keyframes moveWithBackground {
    0% {
      transform: translateX(-100vw);
    }
    100% {
      transform: translateX(10px);
    }
  }
  .pulse-animation {
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.7;
    }
  }
}

/* Loading screen — always active styles (mirrors page-transition-loader.active) */
#loading-screen .loading-fill {
  transform: scaleX(0);
  transform-origin: left;
  animation: fillScreen 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

#loading-screen .logo-slide {
  transform: translateY(150px);
  opacity: 0;
  animation:
    slideUpLogo 1s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#loading-screen .tagline-fade-1 {
  transform: translateY(40px);
  opacity: 0;
  animation:
    fadeInUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.2s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#loading-screen .tagline-fade-2 {
  transform: translateY(40px);
  opacity: 0;
  animation:
    fadeInUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#loading-screen .counter-move {
  transform: translateX(-100vw);
  animation: moveWithBackground 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Page transition loader styles */
#page-transition-loader.active {
  display: flex !important;
  opacity: 1 !important;
}

#page-transition-loader.active .loading-fill {
  transform: scaleX(0);
  transform-origin: left;
  animation: fillScreen 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

#page-transition-loader.active .logo-slide {
  transform: translateY(150px);
  opacity: 0;
  animation:
    slideUpLogo 1s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#page-transition-loader.active .tagline-fade-1 {
  transform: translateY(40px);
  opacity: 0;
  animation:
    fadeInUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.2s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#page-transition-loader.active .tagline-fade-2 {
  transform: translateY(40px);
  opacity: 0;
  animation:
    fadeInUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#page-transition-loader.active .counter-move {
  transform: translateX(-100vw);
  animation: moveWithBackground 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Hide content during page transition */
body > *:not(#page-transition-loader):not(#loading-screen) {
  transition: opacity 0.2s ease;
}

body.page-transitioning > *:not(#page-transition-loader):not(#loading-screen) {
  opacity: 0 !important;
  pointer-events: none;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.giant-text {
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.85;
  font-weight: 900;
  color: #f0f0f0;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.anim-left {
  animation: slideInLeft 1s cubic-bezier(0.65, 0, 0.35, 1) 0.1s both;
}
.anim-right {
  animation: slideInRight 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.2s both;
}
.anim-up-1 {
  animation: fadeUp 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.5s both;
}
.anim-up-2 {
  animation: fadeUp 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.7s both;
}
.anim-up-3 {
  animation: fadeUp 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.9s both;
}
.anim-scale {
  animation: scaleIn 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0s both;
}

.floating-image {
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.18));
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.floating-image:hover {
  transform: translateY(-12px) scale(1.02);
}

.underline-expand {
  position: relative;
  display: inline-block;
}
.underline-expand::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: black;
  transition: width 0.4s ease;
}
.underline-expand:hover::after {
  width: 100%;
}
/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 60px 80px;
}

.page-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  max-width: 1600px;
  margin: 0 auto;
}

/* LEFT */
.contact-form h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.form-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
}

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 25px;
}

.required {
  color: red;
  margin-right: 4px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #000;
}

button {
  margin-top: 20px;
  padding: 14px 40px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: background 0.3s ease;
}

button:hover {
  background: #333;
}

/* RIGHT */
.contact-info h2 {
  font-size: 20px;
  margin-bottom: 30px;
}

.info-box {
  border: 1px solid #ccc;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-text {
  font-size: 14px;
  line-height: 1.6;
}

.info-icon {
  font-size: 40px;
}

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

@media (max-width: 600px) {
  .contact-page {
    padding: 40px 20px;
  }

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

/* ===== SHOP PAGE ===== */
.product-hero {
  padding: 40px 0 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Image Gallery */
.product-gallery {
  position: sticky;
  top: 20px;
}

.main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #f5f5f5;
  margin-bottom: 20px;
  overflow: hidden;
}

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

.image-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.thumbnail-gallery {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.thumbnails-wrapper {
  flex: 1;
  overflow: hidden;
}

.thumbnails {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumbnail:hover {
  border-color: #000;
}

.thumbnail.active {
  border-color: #000;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.show-more-btn {
  width: 100%;
  padding: 12px;
  background-color: transparent;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background-color: #000;
  color: #fff;
}

/* Right Side - Product Details */
.product-details {
  padding: 20px 0;
}

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

.product-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.product-subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.product-customization {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.product-customization h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.option-group {
  margin-bottom: 20px;
}

.option-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.option-select {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f8f8;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-select:hover {
  border-color: #000;
}

.option-value {
  font-size: 14px;
  color: #000;
}

.change-text {
  font-size: 13px;
  color: #666;
}

.dropdown-container {
  position: relative;
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.active {
  max-height: 300px;
  opacity: 1;
  overflow-y: auto;
}

.dropdown-item {
  padding: 12px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: #f8f8f8;
}

.dropdown-item.selected {
  background-color: #000;
  color: #fff;
}

.option-select[data-dropdown] .change-text {
  transition: transform 0.3s ease;
}

.option-select.active .change-text {
  transform: rotate(180deg);
}

.selected-options {
  margin-top: 20px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 4px;
}

.selected-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.selected-item:last-child {
  margin-bottom: 0;
}

.selected-label {
  font-weight: 500;
}

.selected-value {
  color: #666;
}

.product-price {
  margin-bottom: 30px;
}

.price-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.price-amount {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
}

.price-from {
  font-size: 14px;
  color: #666;
}

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

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

.delivery-info {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

.delivery-info h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.delivery-time {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.delivery-note {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.product-accordion {
  margin-top: 20px;
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-btn:hover {
  color: #666;
}

.accordion-icon {
  font-size: 24px;
  font-weight: 300;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0;
}

.accordion-content.active {
  max-height: 500px;
  padding: 20px 0;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.detail-label {
  font-weight: 500;
  color: #000;
}

.detail-value {
  color: #666;
  text-align: right;
}

.contact-btn {
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery {
    position: static;
  }

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

@media (max-width: 768px) {
  .product-hero {
    padding: 20px 0 40px;
  }

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

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .price-amount {
    font-size: 24px;
  }
}

/* ===== ABOUT PAGE ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  height: 600px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 0;
}

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

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

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

.card-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 15px 24px;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: black !important;
  width: max-content;
  max-width: 90%;
  text-align: center;
}

.card:hover .card-overlay:hover {
  background-color: #000;
  color: white !important;
}

.card-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: normal;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.card:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

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

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

  .card {
    height: 500px;
  }
}

@layer utilities {
  .transition-transform-scale {
    transition: transform 0.3s ease;
  }
  .hover-scale:hover {
    transform: scale(1.05);
  }
  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  .pulse-animation {
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.7;
    }
  }
}

/* ===== PAGE TRANSITION LOADER ===== */
#page-transition-loader {
  position: fixed;
  top: 60px;
  left: 60px;
  right: 60px;
  bottom: 60px;
  background-color: white;
  border-radius: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

#page-transition-loader.active {
  display: flex !important;
  opacity: 1 !important;
}

.transition-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  transform: scaleX(0);
  transform-origin: left;
}

#page-transition-loader.active .transition-bg-fill,
#page-transition-loader.active .loading-fill {
  animation: fillScreen 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

#page-transition-loader.active .transition-logo-slide,
#page-transition-loader.active .logo-slide {
  animation:
    slideUpLogo 1s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#page-transition-loader.active .transition-tagline-1,
#page-transition-loader.active .tagline-fade-1 {
  animation:
    fadeInUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.2s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#page-transition-loader.active .transition-tagline-2,
#page-transition-loader.active .tagline-fade-2 {
  animation:
    fadeInUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards,
    moveToTop 1s cubic-bezier(0.65, 0, 0.35, 1) 2.5s forwards;
}

#page-transition-loader.active .transition-counter-move,
#page-transition-loader.active .counter-move {
  animation: moveWithBackground 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes fillScreen {
  to {
    transform: scaleX(1);
  }
}

@keyframes slideUpLogo {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes moveToTop {
  to {
    transform: translateY(-120px);
  }
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes moveWithBackground {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(10px);
  }
}

.transition-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 0 40px;
}

.transition-logo {
  font-size: 140px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  color: #1f2937;
  margin-bottom: 32px;
}

.transition-logo-slide,
.logo-slide {
  transform: translateY(150px);
  opacity: 0;
}

.transition-taglines {
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.transition-taglines p {
  margin: 0;
}

.transition-tagline-1,
.tagline-fade-1 {
  transform: translateY(40px);
  opacity: 0;
}

.transition-tagline-2,
.tagline-fade-2 {
  transform: translateY(40px);
  opacity: 0;
}

.transition-counter {
  position: fixed;
  bottom: 80px;
  right: 100px;
  font-size: 48px;
  font-weight: 100;
  line-height: 1;
  color: #1f2937;
  letter-spacing: -0.05em;
}

.transition-counter-move,
.counter-move {
  transform: translateX(-100vw);
  opacity: 1;
}

.loading-fill {
  transform: scaleX(0);
  transform-origin: left;
}

/* Hide content during page transition */
body > *:not(#page-transition-loader):not(#loading-screen) {
  transition: opacity 0.2s ease;
}

body.page-transitioning > *:not(#page-transition-loader):not(#loading-screen) {
  opacity: 0 !important;
  pointer-events: none;
}

/* Section title style */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c87c3a;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #111827;
  line-height: 1.2;
  margin-top: 0;
}
.section-heading em {
  font-style: italic;
  color: #9ca3af;
}

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

/* Hamburger Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  #navbar > div {
    justify-content: space-between !important;
  }

  header nav.flex-1 {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 72px);
    background: #000;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
  }

  header nav.flex-1.mobile-open {
    right: 0;
  }

  header nav.flex-1 ul {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0 !important;
    width: 100%;
  }

  header nav.flex-1 ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  header nav.flex-1 ul li a {
    display: block;
    width: 100%;
    padding: 16px 0 !important;
    font-size: 16px;
  }

  .navbar-search-desktop {
    display: none !important;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
  }

  .mobile-overlay.active {
    display: block;
  }

  footer {
    padding: 60px 20px 40px !important;
  }

  footer h2 {
    font-size: 32px !important;
    margin-bottom: 40px !important;
  }

  footer > div > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .max-w-\[1400px\] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  #cartContent {
    grid-template-columns: 1fr !important;
  }

  .masonry-grid {
    column-count: 1 !important;
  }

  section.relative.h-\[70vh\] {
    min-height: 400px !important;
  }
}

/* Tablet Styles (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  header nav.flex-1 ul {
    gap: 16px !important;
  }

  header nav.flex-1 ul li a {
    font-size: 14px;
    padding: 8px 12px !important;
  }

  .navbar-search-desktop input {
    width: 150px !important;
  }

  footer > div > div {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }

  .masonry-grid {
    column-count: 2 !important;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  header {
    padding: 0 12px !important;
  }

  .logo-container img {
    width: 100px !important;
  }

  header button,
  header a[title] {
    padding: 4px !important;
  }

  header button svg,
  header a[title] svg {
    width: 20px !important;
    height: 20px !important;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 24px !important;
  }
}

/* ===== SHOP DROPDOWN ===== */
.nav-item.has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 16px 8px 8px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 2000;
}

/* Invisible bridge fills the gap between nav item and dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.nav-dropdown a {
  display: block;
  padding: 8px 14px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #f3f3f3;
}

@media (max-width: 768px) {
  .nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-4px);
  }
  .nav-item.has-dropdown.dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
  }
}

/* ===== NAVBAR TRANSITION ===== */
#navbar {
  transition:
    width 0.4s ease,
    border-radius 0.4s ease,
    top 0.4s ease,
    left 0.4s ease,
    transform 0.4s ease;
}

/* ===== PAGE TRANSITION — HIDE CONTENT ===== */
body > *:not(#page-transition-loader):not(#loading-screen) {
  transition: opacity 0.2s ease;
}

body.page-transitioning > *:not(#page-transition-loader):not(#loading-screen) {
  opacity: 0 !important;
  pointer-events: none;
}

/* ===== BLOG ===== */
.blog-bg {
  background-color: #f5f0eb;
}

.blog-heading {
  color: #2c4a3e;
}

/* ===== TIMELINE (our-history) ===== */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

/* ===== FADE-UP ANIMATION (our-history, our-team) ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-wishlist-toggle.is-active,
.wishlist-btn.is-active {
  color: #111;
}
.js-wishlist-toggle.is-active svg,
.wishlist-btn.is-active svg {
  fill: currentColor;
}
