/* ==========================================================================
   CLOTHSCARTO - PREMIUM CSS STYLE SHEET
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Premium Coastal Sand & Ocean Slate */
  --color-sand: #F4F1EA;
  --color-sand-light: #FBFBFA;
  --color-sand-dark: #E6E1D3;
  --color-terracotta: #D08B6B;
  --color-terracotta-light: #F7EDE8;
  --color-terracotta-dark: #B97252;
  --color-teal: #2F6B6A;
  --color-teal-light: #EBF2F1;
  --color-teal-dark: #1E4645;
  --color-slate: #1A2B2C;
  --color-slate-light: #2A3F40;
  --color-white: #FFFFFF;
  
  /* Status Colors */
  --color-sale: #D05353;
  --color-success: #4D8B62;

  /* Typography */
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Transitions & Animation */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  
  /* Layout Spacing */
  --header-height: 80px;
  --promo-height: 40px;
}

/* ==========================================================================
   Resets & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-sand-light);
  color: var(--color-slate);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

ul {
  list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-sand-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-sand-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-terracotta);
}

/* Helper Utilities */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-slate);
  color: var(--color-white);
  border: 1px solid var(--color-slate);
}

.btn-primary:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-slate);
  border: 1.5px solid var(--color-slate);
}

.btn-secondary:hover {
  background-color: var(--color-slate);
  color: var(--color-white);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-slate);
  border: 1px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-white:hover {
  background-color: var(--color-slate);
  border-color: var(--color-slate);
  color: var(--color-white);
}

/* ==========================================================================
   Announcement Promo Bar
   ========================================================================== */
.promo-bar {
  background-color: var(--color-slate);
  color: var(--color-white);
  height: var(--promo-height);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

.promo-bar-content {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: slidePromo 15s linear infinite;
  white-space: nowrap;
}

.promo-bar-divider {
  color: var(--color-terracotta);
  font-weight: 900;
}

@keyframes slidePromo {
  0% { transform: translateX(5%); }
  50% { transform: translateX(-5%); }
  100% { transform: translateX(5%); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
  height: var(--header-height);
  background-color: var(--color-sand-light);
  border-bottom: 1px solid rgba(26, 43, 44, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background-color: rgba(251, 251, 250, 0.95);
  backdrop-filter: blur(10px);
  height: 70px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.header-container {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }
}

/* Desktop Nav Links (Left side) */
.desktop-nav {
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate);
  padding: 10px 0;
  display: block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.sale-link {
  color: var(--color-sale);
}

/* Dropdown Menu styling (Mega Menu style) */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-sand-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 30px;
  min-width: 450px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 100;
  display: block;
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.dropdown-column h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-sand);
  padding-bottom: 5px;
}

.dropdown-column a {
  display: block;
  font-size: 13px;
  color: var(--color-slate);
  margin-bottom: 10px;
  font-weight: 400;
}

.dropdown-column a:hover {
  color: var(--color-teal);
  padding-left: 5px;
}

/* Logo (Center) */
.logo-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  height: 52px;
  width: auto;
  transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo {
  height: 44px;
}

/* Header Utilities (Right side) */
.header-utilities {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.utility-btn {
  color: var(--color-slate);
  padding: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.utility-btn:hover {
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

.utility-btn .icon {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-teal);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-elastic);
}

.cart-badge.pop {
  transform: scale(1.3);
}

/* Mobile Hamburger Menu */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-slate);
  transition: var(--transition-smooth);
}

/* Search Overlay Bar */
.search-overlay-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 43, 44, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.search-overlay-bar.active {
  opacity: 1;
  pointer-events: auto;
}

.search-input-wrapper {
  width: 80%;
  max-width: 600px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-sand);
}

.search-input {
  width: 100%;
  padding: 15px 0;
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--color-white);
  border: none;
}

.search-input::placeholder {
  color: rgba(251,251,250, 0.4);
}

.search-close-btn {
  font-size: 32px;
  color: var(--color-white);
  padding: 10px;
}

.search-close-btn:hover {
  color: var(--color-terracotta);
}

/* ==========================================================================
   Mobile Nav Drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 1100;
  padding: 30px;
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  transition: var(--transition-slow);
}

.mobile-drawer.active {
  left: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-sand);
  padding-bottom: 15px;
}

.drawer-logo {
  height: 38px;
}

.drawer-close {
  font-size: 32px;
  color: var(--color-slate);
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-slate);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Side Cart Drawer
   ========================================================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 1100;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-sand-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-slate);
}

.cart-drawer-close {
  font-size: 28px;
  color: var(--color-slate);
}

.cart-drawer-close:hover {
  color: var(--color-terracotta);
}

.cart-drawer-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.cart-empty-state {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(26,43,44,0.6);
}

.empty-cart-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  stroke-width: 1;
  color: var(--color-sand-dark);
}

.cart-empty-state p {
  font-size: 15px;
  margin-bottom: 24px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--color-sand);
  padding-bottom: 20px;
}

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background-color: var(--color-sand);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 12px;
  color: rgba(26,43,44,0.6);
  margin-bottom: 8px;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}

.cart-item-qty-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-sand-dark);
}

.qty-btn {
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 700;
}

.qty-value {
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
}

.cart-item-remove {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-sale);
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--color-sand-dark);
  background-color: var(--color-sand-light);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cart-shipping-note {
  font-size: 11px;
  color: var(--color-success);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.checkout-btn {
  width: 100%;
}

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-text-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  display: block;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--color-slate);
  margin-bottom: 18px;
  text-transform: uppercase;
}

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

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(26,43,44,0.7);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Hero 3-Column Image Grid */
.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .hero-image-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.hero-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(26,43,44,0.7) 0%, rgba(26,43,44,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-card-title {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hero-card-desc {
  font-size: 12px;
  color: rgba(251,251,250,0.8);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   Product Slider Carousel (Horizontal Scroll Section)
   ========================================================================== */
.section-slider {
  padding: 80px 0;
  background-color: var(--color-sand);
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  border-bottom: 1.5px solid var(--color-terracotta);
  padding-bottom: 4px;
}

.section-link:hover {
  color: var(--color-slate);
  border-color: var(--color-slate);
}

.slider-wrapper {
  position: relative;
}

.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.product-carousel::-webkit-scrollbar {
  height: 4px;
}

.product-card {
  min-width: 280px;
  width: 22%;
  flex-shrink: 0;
  scroll-snap-align: start;
  background-color: var(--color-white);
  padding: 15px;
  border-radius: 0;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(26,43,44,0.01);
}

@media (max-width: 1024px) {
  .product-card {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .product-card {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .product-card {
    width: 80%;
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(26,43,44,0.04);
}

.product-card-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background-color: var(--color-sale);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 8px;
  text-transform: uppercase;
  z-index: 10;
}

.product-card-badge.new {
  background-color: var(--color-teal);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: var(--color-sand);
  overflow: hidden;
  margin-bottom: 15px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

/* Quick Add Button */
.quick-add-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26,43,44,0.9);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 0;
  text-align: center;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.product-img-wrapper:hover .quick-add-btn {
  transform: translateY(0);
}

.product-info {
  text-align: left;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-slate);
}

.product-price-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.price-current {
  color: var(--color-slate);
}

.price-old {
  text-decoration: line-through;
  color: rgba(26,43,44,0.4);
}

.price-discount {
  color: var(--color-sale);
  font-weight: 700;
}

/* Color dot indicators */
.color-swatches {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(26,43,44,0.1);
  cursor: pointer;
}

/* Slider Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  z-index: 10;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background-color: var(--color-slate);
  color: var(--color-white);
}

.carousel-btn-prev {
  left: -22px;
}

.carousel-btn-next {
  right: -22px;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
}

/* ==========================================================================
   Full Width Parallax banner
   ========================================================================== */
.middle-banner {
  position: relative;
  height: 400px;
  background-color: var(--color-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.middle-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.9);
}

.banner-overlay-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  padding: 0 20px;
}

.banner-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 15px;
  display: block;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}

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

/* ==========================================================================
   Two-Column Lifestyle Collage
   ========================================================================== */
.lifestyle-collage {
  padding: 80px 0;
  background-color: var(--color-sand-light);
}

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

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

.collage-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.collage-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.collage-item:hover .collage-item-img {
  transform: scale(1.03);
}

.collage-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(26,43,44,0.6) 0%, rgba(26,43,44,0) 100%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.collage-item-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* ==========================================================================
   Highlight Feature Showcase 1 (Beach Lifestyle & Text)
   ========================================================================== */
.highlight-feature-1 {
  padding: 80px 0;
  background-color: var(--color-white);
}

.highlight-grid-1 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

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

.highlight-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 4 / 5;
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.highlight-img-box:hover .highlight-img {
  transform: scale(1.02);
}

.highlight-text-box {
  padding: 20px 0;
}

.highlight-pre {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-terracotta);
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--color-slate);
}

.highlight-title span {
  font-family: var(--font-serif);
  text-transform: none;
  font-style: italic;
  font-weight: 400;
}

.highlight-desc {
  font-size: 16px;
  color: rgba(26,43,44,0.7);
  margin-bottom: 30px;
}

/* Icon / Feature Lists */
.features-icon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-icon-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-check {
  color: var(--color-teal);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.feature-text h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 12px;
  color: rgba(26,43,44,0.6);
  line-height: 1.4;
}

/* ==========================================================================
   Highlight Feature Showcase 2 (Utility & Comfort split)
   ========================================================================== */
.highlight-feature-2 {
  padding: 80px 0;
  background-color: var(--color-sand);
}

.highlight-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26,43,44,0.02);
}

@media (max-width: 992px) {
  .highlight-grid-2 {
    grid-template-columns: 1fr;
  }
}

.highlight-left-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.highlight-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.highlight-left-img:hover img {
  transform: scale(1.03);
}

.highlight-right-content {
  background-color: var(--color-teal);
  color: var(--color-white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.utility-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-terracotta-light);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.utility-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.utility-desc {
  font-size: 15px;
  color: rgba(251,251,250,0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.utility-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.utility-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.utility-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-terracotta);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
  padding: 100px 0;
  background-color: var(--color-white);
  text-align: center;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.newsletter-desc {
  font-size: 15px;
  color: rgba(26,43,44,0.6);
  margin-bottom: 35px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  border-bottom: 1.5px solid var(--color-slate);
  padding-bottom: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 15px;
  font-size: 15px;
  color: var(--color-slate);
}

.newsletter-input::placeholder {
  color: rgba(26,43,44,0.4);
}

.newsletter-submit {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-slate);
  padding: 10px 20px;
  transition: var(--transition-smooth);
}

.newsletter-submit:hover {
  color: var(--color-terracotta);
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */
.main-footer {
  background-color: var(--color-slate);
  color: var(--color-white);
  padding-top: 80px;
  border-top: 1px solid rgba(251,251,250,0.05);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 60px 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
}

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

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  height: 48px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(251,251,250,0.6);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 20px;
  height: 20px;
  color: rgba(251,251,250,0.7);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

/* Footer Link Columns */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 24px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 13px;
  color: rgba(251,251,250,0.6);
  font-weight: 400;
}

.footer-column a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(251,251,250,0.05);
  padding: 30px 0;
  background-color: #152223;
}

.footer-bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.copyright-text {
  font-size: 11px;
  color: rgba(251,251,250,0.4);
}

.payment-methods {
  display: flex;
  gap: 10px;
}

.payment-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(251,251,250,0.5);
  background-color: rgba(251,251,250,0.04);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ==========================================================================
   Micro-Animations & Load States
   ========================================================================== */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.fade-in-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}
