/* ============================================
   ZARA-STYLE HOMEPAGE DESIGN
   ============================================ */

/* Performance optimizations - prevent layout shifts */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body.homepage {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Remove margin from homepage-main - hero should start at top */
main.homepage-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Hero section should start at the very top */
section.hero-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Ensure all main containers respect viewport width */
section.products-section,
section.contact-section {
  max-width: 100vw;
  overflow-x: hidden;
}

/* CSS Variables for Carousel Controls */
:root {
  --carousel-control-size: 50px;
  --carousel-control-size-mobile: 40px;
  --carousel-control-bg: #ffffff;
  --carousel-control-bg-hover: #000000;
  --carousel-control-icon-color: #000000;
  --carousel-control-icon-color-hover: #ffffff;
  --carousel-control-icon-size: 16px;
  --carousel-control-icon-size-mobile: 14px;
  --carousel-control-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --carousel-control-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.2);
  --carousel-control-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --carousel-indicator-size: 8px;
  --carousel-indicator-active-width: 24px;
  --carousel-indicator-bg: #e5e5e5;
  --carousel-indicator-active-bg: #000000;
}

/* Homepage Main Container */
.homepage-main {
  margin-top: 60px;
  padding: 0;
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   HERO SECTION - AEON ABAYA STYLE WITH VIDEO
   ============================================ */

.hero-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-video-wrapper {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-video {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* Optimize video rendering for instant playback */
  will-change: contents;
  transform: translateZ(0);
  /* Force hardware acceleration */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Ensure video is always visible and ready */
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  /* CRITICAL: Hide all browser video controls and overlays */
  pointer-events: none;
}

/* Hide all native video controls */
.hero-video::-webkit-media-controls {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.hero-video::-webkit-media-controls-panel {
  display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
  display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Firefox */
.hero-video::-moz-media-controls {
  display: none !important;
}

/* IE/Edge */
.hero-video::-ms-media-controls {
  display: none !important;
}

.hero-fallback-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 0.5s ease-in-out;
}

/* Fallback image visibility is now handled by JS for better control */
.hero-video.playing~.hero-fallback-image {
  opacity: 0;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  pointer-events: none;
}

/* Video overlay for better button visibility */
.hero-video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-button {
  display: inline-block;
  padding: 16px 48px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Montserrat", sans-serif;
  border-radius: 0;
  pointer-events: auto;
  box-shadow: none;
}

.hero-button:hover {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
}

/* ============================================
   CAROUSEL CONTROLS - SHARED STYLES
   ============================================ */

/* Base Carousel Control Styles */
.hero-carousel .carousel-control,
.products-carousel .carousel-control {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: auto;
}

/* NEW: Drag support styles */
.carousel {
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel:active {
  cursor: grabbing;
}

.carousel .item img {
  pointer-events: none;
  /* Prevent image dragging from interfering with carousel swipe */
  -webkit-user-drag: none;
}

.hero-carousel:hover .carousel-control {
  opacity: 1;
}

.hero-carousel .carousel-control:hover,
.products-carousel .carousel-control:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.hero-carousel .carousel-control:active,
.products-carousel .carousel-control:active {
  transform: translateY(-50%) scale(0.95);
}

/* Carousel Control Icons */
.hero-carousel .carousel-control .glyphicon,
.products-carousel .carousel-control .glyphicon {
  color: #000000;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  cursor: pointer;
  opacity: 1;
  z-index: 16;
}

.hero-carousel .carousel-control:hover .glyphicon,
.products-carousel .carousel-control:hover .glyphicon {
  color: #ffffff;
  opacity: 1;
}

.hero-carousel .carousel-control:active .glyphicon,
.products-carousel .carousel-control:active .glyphicon {
  transform: translate(-50%, -50%) scale(0.9);
}

/* Hero Carousel Control Positioning */
.hero-carousel .carousel-control.left {
  left: 40px;
  right: auto;
}

.hero-carousel .carousel-control.right {
  right: 40px;
  left: auto;
}

/* ============================================
   CAROUSEL INDICATORS - SHARED STYLES
   ============================================ */

/* Base Indicator Styles */
.hero-carousel .carousel-indicators,
.products-carousel .carousel-indicators {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.hero-carousel .carousel-indicators li,
.products-carousel .carousel-indicators li {
  width: var(--carousel-indicator-size);
  height: var(--carousel-indicator-size);
  border-radius: 0;
  background-color: var(--carousel-indicator-bg);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: var(--carousel-control-transition);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero-carousel .carousel-indicators li:hover,
.products-carousel .carousel-indicators li:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-carousel .carousel-indicators li.active,
.products-carousel .carousel-indicators li.active {
  background-color: var(--carousel-indicator-active-bg);
  width: var(--carousel-indicator-active-width);
  opacity: 1;
}

/* Hero Carousel Indicators Specific */
.hero-carousel .carousel-indicators {
  bottom: 40px;
  z-index: 12;
}

.hero-carousel .carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel .carousel-indicators li:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.4);
  transform: scale(1.2);
}

.hero-carousel .carousel-indicators li.active {
  background-color: #000000;
  border-color: #000000;
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
  padding: 80px 5%;
  background-color: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.section-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
}

/* Products Carousel */
.products-carousel {
  position: relative;
  padding: 0 60px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.products-carousel.desktop-carousel {
  display: block;
}

.products-carousel.mobile-carousel {
  display: none;
}

.products-carousel .carousel-inner {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.products-carousel .item {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.products-carousel .row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin: 0 auto;
  padding: 0;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Product Card */
.product-card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(55.333% - 20px);
  min-width: 0;
  background: transparent;
  border: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-link {
  text-decoration: none;
  display: block;
  position: relative;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-top: 130%;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 15px;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.02);
  opacity: 0.9;
}

.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000000;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-info {
  padding: 0;
  text-align: start;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-brand {
  font-size: 13px;
  /* Increased from 11px */
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 8px 0;
  font-family: "Montserrat", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.product-name {
  margin: 0 0 10px 0;
  font-size: 15px;
  /* Increased from 14px */
  font-weight: 300;
  color: #000000;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.product-name a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-name a:hover {
  color: #666666;
}

.product-price {
  margin: 0;
  font-size: 17px;
  /* Increased from 16px */
  font-weight: 400;
  color: #000000;
  font-family: "Montserrat", sans-serif;
}

.product-price .regular-price {
  color: #000000;
}

.product-price .original-price {
  color: #999999;
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 300;
  margin-right: 8px;
}

.product-price .sale-price {
  color: #000000;
  font-size: 17px;
  font-weight: 400;
}

/* ============================================
   PRODUCTS CAROUSEL - SPECIFIC STYLES
   ============================================ */

/* Products Carousel Control Specific Styles */
.products-carousel .carousel-control {
  width: 40px;
  height: 40px;
  --carousel-control-icon-size: 14px;
}

.products-carousel .carousel-control.left {
  left: 0;
  right: auto;
}

.products-carousel .carousel-control.right {
  right: 0;
  left: auto;
}

/* Products Carousel Indicators Specific */
.products-carousel .carousel-indicators {
  bottom: -40px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: 80px 5%;
  background-color: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.contact-section h1,
.contact-section h1.normal,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section h5,
.contact-section h6,
.contact-section p,
.contact-section .container-fluid1,
.contact-section .bg-grey,
.contact-section .form-control,
.contact-section .btn,
.contact-section textarea,
.contact-section input {
  font-family: "Montserrat", sans-serif !important;
}

.contact-section h1.normal {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .hero-video-wrapper {
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
  }

  .hero-video,
  .hero-fallback-image {
    height: 100%;
  }

  .hero-content {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-button {
    padding: 14px 42px;
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .products-section {
    padding: 60px 4%;
  }

  .products-carousel {
    padding: 0 50px;
    max-width: 100%;
    overflow: hidden;
  }

  .product-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .products-carousel.desktop-carousel {
    display: none;
  }

  .products-carousel.mobile-carousel {
    display: block;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .homepage-main {
    margin-top: 0;
  }

  .hero-video-wrapper {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }

  .hero-carousel .carousel-inner {
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
  }

  .hero-video,
  .hero-fallback-image {
    height: 100%;
  }

  .hero-content {
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 15px;
  }

  .hero-button {
    padding: 12px 36px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  /* Mobile Carousel Controls for Products */
  .products-carousel .carousel-control {
    width: 40px;
    height: 40px;
    opacity: 0.8;
  }

  .products-carousel .carousel-control .glyphicon {
    font-size: 14px;
  }

  .products-section {
    padding: 50px 3%;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .products-carousel {
    padding: 0 40px;
    max-width: 100%;
    overflow: hidden;
  }

  .product-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .products-carousel .row {
    gap: 20px;
  }

  .product-image-wrapper {
    padding-top: 135%;
  }

  .product-brand {
    font-size: 12px;
    /* Increased from 10px */
  }

  .product-name {
    font-size: 14px;
    /* Increased from 13px */
  }

  .product-price {
    font-size: 15px;
    /* Increased from 14px */
  }

  .products-carousel .carousel-control {
    width: 35px;
    height: 35px;
  }

  .products-carousel .carousel-control.left {
    left: 0;
    max-width: 100%;
  }

  .products-carousel .carousel-control.right {
    right: 0;
    max-width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-video-wrapper {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }

  .hero-video,
  .hero-fallback-image {
    height: 100%;
  }

  .hero-content {
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px;
  }

  .hero-button {
    padding: 10px 28px;
    font-size: 10px;
    letter-spacing: 1px;
  }


  .products-section {
    padding: 40px 2%;
  }

  .section-title {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .products-carousel {
    padding: 0 50px;
    max-width: 100%;
    overflow: hidden;
  }

  .product-card {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .products-carousel .row {
    gap: 15px;
  }

  .products-carousel .carousel-control.left {
    left: 0;
    max-width: 100%;
  }

  .products-carousel .carousel-control.right {
    right: 0;
    max-width: 100%;
  }

  .product-image-wrapper {
    padding-top: 140%;
    margin-bottom: 10px;
  }

  .product-brand {
    font-size: 11px;
    /* Increased from 9px */
    margin-bottom: 5px;
  }

  .product-name {
    font-size: 14px;
    /* Increased from 12px */
    margin-bottom: 8px;
  }

  .product-price {
    font-size: 15px;
    /* Increased from 13px */
  }

  .product-price .original-price {
    font-size: 13px;
  }

  .product-price .sale-price {
    font-size: 15px;
  }

  .sale-badge {
    font-size: 9px;
    padding: 3px 6px;
    top: 8px;
    right: 8px;
  }

  .products-carousel .carousel-control {
    width: 30px;
    height: 30px;
  }

  .products-carousel .carousel-control .glyphicon {
    font-size: 12px;
  }

  /* Small Mobile Indicators */
  .hero-carousel .carousel-indicators li,
  .products-carousel .carousel-indicators li {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }

  .hero-carousel .carousel-indicators li.active,
  .products-carousel .carousel-indicators li.active {
    width: 20px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hero-video-wrapper {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }

  .hero-video,
  .hero-fallback-image {
    height: 100%;
  }

  .hero-content {
    padding: 0 8px;
  }

  .hero-button {
    padding: 9px 24px;
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .products-section {
    padding: 30px 2%;
  }

  .section-title {
    font-size: 12px;
  }

  .products-carousel {
    padding: 0 35px;
    max-width: 100%;
    overflow: hidden;
  }

  .product-card {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }

  .products-carousel .row {
    gap: 10px;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE EXTRA SMALL (< 320px)
   ============================================ */
@media (max-width: 319px) {
  .homepage-main {
    margin-top: 0;
  }

  .hero-video-wrapper {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }

  .hero-video,
  .hero-fallback-image {
    height: 100%;
  }

  .hero-content {
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 8px;
  }

  .hero-button {
    padding: 8px 20px;
    font-size: 8px;
    letter-spacing: 0.8px;
  }

  /* Extra Small Mobile Carousel Controls */
  .hero-carousel .carousel-control {
    width: 32px;
    height: 32px;
    opacity: 0.6;
  }

  .hero-carousel:hover .carousel-control {
    opacity: 0.6;
  }

  .hero-carousel .carousel-control.left {
    left: 10px;
    max-width: calc(100% - 10px);
  }

  .hero-carousel .carousel-control.right {
    right: 10px;
    max-width: calc(100% - 10px);
  }

  .hero-carousel .carousel-control .glyphicon {
    font-size: 12px;
  }

  .hero-carousel .carousel-indicators {
    bottom: 20px;
  }

  .hero-carousel .carousel-indicators li {
    width: 7px;
    height: 7px;
  }

  .hero-carousel .carousel-indicators li.active {
    width: 20px;
  }

  .products-section {
    padding: 25px 1.5%;
  }

  .section-title {
    font-size: 11px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
  }

  .products-carousel {
    padding: 0 30px;
    max-width: 100%;
    overflow: hidden;
  }

  .product-card {
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }

  .products-carousel .row {
    gap: 8px;
  }

  .product-image-wrapper {
    padding-top: 145%;
    margin-bottom: 8px;
  }

  .product-brand {
    font-size: 8px;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }

  .product-name {
    font-size: 10px;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .product-price {
    font-size: 11px;
  }

  .product-price .original-price {
    font-size: 10px;
  }

  .product-price .sale-price {
    font-size: 11px;
  }

  .sale-badge {
    font-size: 8px;
    padding: 2px 5px;
    top: 6px;
    right: 6px;
  }

  .products-carousel .carousel-control {
    width: 28px;
    height: 28px;
  }

  .products-carousel .carousel-control.left {
    left: 0;
    max-width: 100%;
  }

  .products-carousel .carousel-control.right {
    right: 0;
    max-width: 100%;
  }

  .products-carousel .carousel-control .glyphicon {
    font-size: 11px;
  }

  .products-carousel .carousel-indicators {
    bottom: -35px;
  }

  .contact-section {
    padding: 30px 2%;
  }

  .contact-section h1.normal {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

/* ============================================
   CONTACT & ABOUT PAGE BUTTONS
   ============================================ */

.btn-default,
.btn.btn-default {
  background-color: var(--zara-black, #000000);
  color: var(--zara-white, #ffffff);
  border: none;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: opacity 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.btn-default:hover,
.btn.btn-default:hover {
  opacity: 0.8;
  background-color: var(--zara-black, #000000);
  color: var(--zara-white, #ffffff);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--zara-black, #000000);
  border: 1px solid var(--zara-black, #000000);
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.btn-outline-primary:hover {
  background-color: var(--zara-black, #000000);
  color: var(--zara-white, #ffffff);
}

.form-control {
  border: 1px solid var(--zara-border, #e5e5e5);
  border-radius: 0;
  padding: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--zara-black, #000000);
}