/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
} */

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #000000;
}

/* Typography System */
.montserrat-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #9B2C7B;
  text-transform: uppercase;
}

.montserrat-paragraph {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #9B2C7B;
}

.montserrat-shopTitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #9B2C7B;
}

.montserrat-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #000000;
}

/* Product catalog image sizing */
.card-img-top {
  width: 100%;
  min-height: 150px;
  max-height: 400px;
  object-fit: contain;
  background: #fff;
}

/* Base Pill Definition */
.pill-base {
  background: #EDCEE1;
  color: #9B2C7B;
  border-radius: 25px;
  border: none;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 44, 123, 0.2);
  padding: 12px 20px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-base:hover {
  background: #F4E4F1; /* Lighter than EDCEE1 */
  color: #9B2C7B;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 44, 123, 0.3);
}

.pill-base:focus {
  color: #9B2C7B;
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 44, 123, 0.3);
}

/* Shop Button - Extends Base Pill */
.btn-shop-view {
  background: #EDCEE1;
  color: #9B2C7B;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 44, 123, 0.2);
  padding: 12px 24px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  min-width: 100px;
  text-align: center;
}

.btn-shop-view:hover {
  background: #F4E4F1;
  color: #9B2C7B;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 44, 123, 0.3);
}

.btn-shop-view:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(155, 44, 123, 0.2);
}

.btn-shop-view:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 44, 123, 0.3);
}

.btn-shop-view:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-shop-view:disabled:hover {
  background: #e0e0e0;
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Elegant Flower Shop Navigation */
.elegant-nav {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

.elegant-nav .container {
  display: flex;
  align-items: center;
}

/* Only apply flex to desktop navbar (exclude mobile collapse) */
.elegant-nav .navbar-collapse.d-none {
  /* Allow Bootstrap default collapse behavior on mobile (display:none/block).
     On desktop, d-lg-flex class handles display. w-100 makes it full width so margin-left:auto works. */
  flex-grow: 1;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .elegant-nav .navbar-collapse.d-lg-none {
    display: none !important;
  }
}


/* Navbar Brand */
.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.nav-pills {
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.2);
  border: 2px solid #8B5A3C;
  transition: all 0.3s ease;
}

.elegant-brand {
  color: #8B5A3C !important;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.elegant-nav-pills {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  align-items: center;
}

.nav-pill-item {
  margin: 0;
}

.nav-pill-link {
  display: inline-block;
  padding: 12px 24px;
  color: #8B5A3C;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 25px;
  background: transparent;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-pill-link:hover,
.nav-pill-link.active {
  background: #8B5A3C;
  color: white !important;
  border-color: #8B5A3C;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.3);
}

.nav-pill-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.nav-pill-link:hover::before {
  width: 100%;
  height: 100%;
}

/* Single Pill Navigation for Desktop */
.single-pill-nav {
  display: flex;
  background: #EDCEE1;
  border-radius: 30px;
  padding: 0px 10px;
  box-shadow: 0 4px 15px rgba(155, 44, 123, 0.2);
  gap: 4px;
  align-items: center;
  min-width: 500px;
  width: auto;
  margin-left: auto !important; /* Force right alignment */
}

/* Navigation Wrapper for Flexbox Alignment */
.nav-wrapper {
  display: flex !important;
  align-items: center;
  gap: 15px;
}


.nav-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: #9B2C7B;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 25px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  min-width: 0;
}

.nav-link-item:hover,
.nav-link-item.active {
  background: #F4E4F1;
  color: #9B2C7B !important;
  transform: scale(1.05);
  text-decoration: none;
}

.nav-link-item.active {
  background: #F4E4F1;
  box-shadow: 0 2px 8px rgba(155, 44, 123, 0.2);
}

/* Ensure cart link and all nav items use pill colors */
.nav-link-item,
.nav-link-item:link,
.nav-link-item:visited,
.nav-link-item:focus,
#cart-link {
  color: #9B2C7B !important;
  text-decoration: none !important;
}

.nav-link-item:hover,
.nav-link-item:focus,
#cart-link:hover,
#cart-link:focus {
  color: #9B2C7B !important;
  text-decoration: none !important;
}

/* Responsive adjustments for single pill nav */
@media (min-width: 992px) and (max-width: 1200px) {
  .single-pill-nav {
    min-width: 450px;
  }
  
  .nav-link-item {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (min-width: 1201px) {
  .single-pill-nav {
    min-width: 550px;
  }
  
  .nav-link-item {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Mobile Navigation Styling - Pill Style */
.mobile-nav-link {
  display: block !important;
  background: #EDCEE1 !important;
  color: #9B2C7B !important;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 25px !important;
  margin: 8px 15px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  text-align: center;
  border: none !important;
  box-shadow: 0 4px 15px rgba(155, 44, 123, 0.2) !important;
  transition: all 0.3s ease !important;
}

.mobile-nav-link:hover {
  background: #F4E4F1 !important;
  color: #9B2C7B !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(155, 44, 123, 0.3) !important;
}

.mobile-nav-link.active {
  background: #F4E4F1 !important;
  color: #9B2C7B !important;
  text-decoration: none !important;
  transform: scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(155, 44, 123, 0.4) !important;
}

.mobile-nav-link:focus {
  color: #9B2C7B !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(155, 44, 123, 0.3) !important;
}

/* Responsive breakpoints */
@media (min-width: 992px) {
  .elegant-nav .navbar-collapse.d-lg-block {
    display: flex !important;
    justify-content: flex-end !important;
  }
}

@media (max-width: 991px) {
  .single-pill-nav {
    display: none !important;
  }
  
  .navbar-nav {
    width: 100%;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-item {
    width: 100%;
    margin: 0;
  }
  
  /* Mobile navbar collapse styling */
  .navbar-collapse {
    padding: 0 10px;
  }
}

@media (min-width: 992px) {
  .mobile-nav-link {
    display: none !important;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  aspect-ratio: 767 / 324;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('/images/site/home/fondo-shop-now-con-logo-compu.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero background image styling */
.hero-background-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Fallback gradient if image doesn't load */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  z-index: -1;
}

.hero-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  position: relative;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.3rem !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  margin-bottom: 2.5rem;
}


/* Shop Now Image Button */
.shop-now-btn-image {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.shop-now-image {
  max-width: 600px;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2));
}

.shop-now-btn-image:hover .shop-now-image {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.3));
}

/* Mission Sections */
.mission-section {
  padding: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mission-overlay {
  width: 100%;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-section h2 {
  color: #9B2C7B;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-section p {
  color: inherit;
}

.mission-content {
  background: white;
  padding: 5px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
}

/* Mobile adjustments for mission section */
@media (max-width: 768px) {
  .mission-section {
    background-size: cover;
    min-height: 350px;
  }
}

/* About Sections */
.about-section {
  padding: 60px 0;
  background: #EDCEE1;
}

.about-section h2 {
  color: #9B2C7B;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  background: EDCEE1 ;
  padding: 10px;
  
  margin-bottom: 10px;
}

/* Vision Section */
.vision-section {
  padding: 30px 0;
  background: white;
}

.vision-content {
  margin-top: 1rem;
}

.vision-image-container {
  position: relative;
  overflow: hidden;
  
  /*box-shadow: 0 5px 5px rgba(139, 90, 60, 0.2);*/
  transition: all 0.3s ease;
  padding: 0px;
}



.vision-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
}


.vision-text-content {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.vision-text {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.vision-text:last-child {
  margin-bottom: 0;
}

/* Mobile adjustments for vision section */
@media (max-width: 768px) {
  .vision-content {
    margin-top: 2rem;
  }
  
  .vision-image-container {
    margin-bottom: 2rem;
  }
  
  .vision-text-content {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  .vision-image {
    height: 200px;
  }
}



/* Elegant Side Cart Styling */
.elegant-side-cart {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  flex-direction: column;
  border-radius: 15px 0 0 15px;
}

.elegant-side-cart.show {
  right: 0;
  display: flex;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.side-cart-header {
  background: #EDCEE1;
  color: #9B2C7B;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px 0 0 0;
  box-shadow: 0 4px 15px rgba(155, 44, 123, 0.2);
}

.side-cart-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.btn-close-cart {
  background: none;
  border: none;
  color: #9B2C7B;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.btn-close-cart:hover {
  background: #F4E4F1;
  transform: rotate(90deg);
}

.side-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #f8f9fa;
}

.side-cart-content::-webkit-scrollbar {
  width: 6px;
}

.side-cart-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.side-cart-content::-webkit-scrollbar-thumb {
  background: #8B5A3C;
  border-radius: 3px;
}

.side-cart-content::-webkit-scrollbar-thumb:hover {
  background: #6d4631;
}

/* Body scroll lock when cart is open */
body.cart-open {
  overflow: hidden;
}

/* Quantity Pill Styling */
.quantity-pill-container {
  display: flex;
  align-items: center;
  background: #EDCEE1;
  border-radius: 25px;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(155, 44, 123, 0.2);
  gap: 0;
}

/* Side Cart Checkout Button Pill Styling */
.side-cart-content .btn-shop-view,
#sideCartItems + div .btn-shop-view {
  background: #EDCEE1 !important;
  color: #9B2C7B !important;
  border-radius: 25px !important;
  padding: 15px 25px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(155, 44, 123, 0.2) !important;
  border: none !important;
  text-decoration: none !important;
}

.side-cart-content .btn-shop-view:hover,
#sideCartItems + div .btn-shop-view:hover {
  background: #F4E4F1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(155, 44, 123, 0.3) !important;
  color: #9B2C7B !important;
  text-decoration: none !important;
}

.btn-quantity-decrease,
.btn-quantity-increase {
  background: transparent;
  border: none;
  color: #9B2C7B;
  font-size: 18px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-quantity-decrease:hover,
.btn-quantity-increase:hover {
  background: #F4E4F1;
  color: #9B2C7B;
  text-decoration: none;
  transform: scale(1.1);
}

.quantity-display {
  color: #9B2C7B;
  font-weight: 600;
  font-size: 16px;
  min-width: 30px;
  text-align: center;
  padding: 0 8px;
}

/* Side cart responsive */
@media (max-width: 768px) {
  .elegant-side-cart {
    width: 100vw;
    right: -100vw;
    border-radius: 0;
  }
  
  .side-cart-header {
    border-radius: 0;
  }
}

.elegant-nav .navbar-toggler {
  border: 2px solid #8B5A3C;
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(139, 90, 60, 0.1);
  transition: all 0.3s ease;
}

.elegant-nav .navbar-toggler:hover {
  background: rgba(139, 90, 60, 0.2);
  transform: scale(1.05);
}

.elegant-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.3);
  border-color: #8B5A3C;
}

.elegant-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23%238B5A3C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 18px;
}

/* Alternative: Custom hamburger menu with animated lines */
.custom-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.custom-hamburger .line {
  width: 100%;
  height: 3px;
  background: #8B5A3C;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.custom-hamburger:hover .line {
  background: #6d4631;
}

.custom-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.custom-hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 991px) {
  /* Show custom hamburger and hide default toggler */
  .elegant-nav .navbar-toggler { display: none; }

  .custom-hamburger {
    display: flex;
    margin-left: auto; /* push to right edge */
    margin-right: 8px;
  }
  .elegant-nav .container {
    display: flex;
    align-items: center;
  }
  .elegant-nav .custom-hamburger + .navbar-collapse {
    flex: 1 1 auto;
    justify-content: flex-end;
  }
}

/* Cart Page Styling */
.cart-page-container {
  min-height: 80vh;
  padding: 40px 0;
  background: #f8f9fa;
}

.page-title {
  color: #8B5A3C;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-page-container .container {
  max-width: 1200px;
}

.cart-page-container .table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.cart-page-container .table thead {
  background: #EDCEE1;
  color: #9B2C7B;
}

.cart-page-container .table thead th {
  border: none;
  padding: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-page-container .table tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-color: #e8e9ea;
}

.cart-page-container .form-control {
  border-radius: 25px;
  border: 2px solid #e8e9ea;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.cart-page-container .form-control:focus {
  border-color: #8B5A3C;
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.25);
}

.cart-page-container .btn-primary {
  background: linear-gradient(45deg, #D4A574, #8B5A3C);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cart-page-container .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 90, 60, 0.3);
}

.cart-page-container .btn-outline-primary {
  border: 2px solid #8B5A3C;
  color: #8B5A3C;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cart-page-container .btn-outline-primary:hover {
  background: #8B5A3C;
  border-color: #8B5A3C;
  transform: translateY(-1px);
}

#paypal-button-container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

/* Social Networks Section */
.occasions-section {
  text-align: center;
  padding: 2rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.social-title {
  font-size: 2rem;
  font-weight: 700;
  color: #9B2C7B;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10px;
}

.social-icon-link {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
  flex-grow: 0;
}

.social-icon-link:hover {
  transform: scale(1.15);
}

.social-icon {
  height: 100px !important;
  width: 100px !important;
  min-width: 100px !important;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Tablet View */
@media (max-width: 1200px) {
  .social-icons {
    gap: 20px !important;
    padding: 0 15px !important;
  }
  
  .social-icon {
    height: 100px !important;
    width: 100px !important;
    min-width: 100px !important;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .social-icons {
    gap: 2px !important;
    justify-content: center;
    padding: 0 5px !important;
    flex-wrap: nowrap;
  }
  
  .social-icon-link {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
  }
  
  .social-icon {
        height: 100px !important;
    width: 100px !important;
    min-width: 100px !important;

  }
  
  .social-title {
    font-size: 1.5rem;
  }
}

/* Tablet View - Override for smaller tablets */
@media (max-width: 600px) {
  .social-icons {
    gap: 1px !important;
    padding: 0 4px !important;
  }
  
  .social-icon {
    height: 100px !important;
    width: 100px !important;
    min-width: 100px !important;
  }
}

/* Extra Small Mobile - Very aggressive override */
@media (max-width: 500px) {
  .social-icons {
    gap: 0px !important;
    padding: 0 2px !important;
  }
  
  .social-icon-link {
    margin: 0 -25px !important;
  }
  
  .social-icon {
    height: 100px !important;
    width: 100px !important;
    min-width: 100px !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .occasions-section {
    padding: 1.5rem 0;
  }
  
  .social-icons {
    gap: 2px !important;
    padding: 0 3px !important;
    flex-wrap: nowrap;
  }
  
  .social-icon-link {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
  }
  
  .social-icon {
    height: 100px !important;
    width: 100px !important;
    min-width: 100px !important;
  }
  
  .social-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

/* Mobile responsive */
@media (max-width: 991px) {
  .elegant-nav-pills {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    gap: 10px;
  }
  
  .nav-pill-item {
    width: 100%;
  }
  
  .nav-pill-link {
    display: block;
    text-align: center;
    margin: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .shop-now-btn {
    padding: 15px 40px;
    font-size: 16px;
  }
  
  .page-title {
    font-size: 2rem;
  }
}

.privacy-policy-content {
  background: #EDCEE1;
  color: #9B2C7B;
}

/* Hero Carousel Container */
.hero-carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 767 / 324;
  overflow: hidden;
}

/* Carousel Hero Image */
.carousel-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Carousel Controls Enhancement */
.hero-carousel-container .carousel-control-prev,
.hero-carousel-container .carousel-control-next {
  width: 10%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hero-carousel-container .carousel-control-prev:hover,
.hero-carousel-container .carousel-control-next:hover {
  opacity: 1;
}

.hero-carousel-container .carousel-control-prev-icon,
.hero-carousel-container .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-size: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Logo Overlay - Top Left */
.hero-logo-overlay {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 10;
  max-width: 150px;
}

.hero-logo-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.hero-logo-overlay:hover .hero-logo-image {
  transform: scale(1.05);
}

/* Shop Now Button Overlay - Centered */
.hero-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hero-button-overlay .shop-now-btn-image {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-button-overlay .shop-now-image {
  max-width: 600px;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2));
}

.hero-button-overlay .shop-now-btn-image:hover .shop-now-image {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.3));
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-carousel-container {
    aspect-ratio: 16 / 9;
  }
  
  .hero-logo-overlay {
    top: 10px;
    left: 15px;
    max-width: 80px;
  }
  
  .hero-button-overlay .shop-now-image {
    max-width: 300px;
  }
  
  .hero-carousel-container .carousel-control-prev-icon,
  .hero-carousel-container .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-logo-overlay {
    top: 8px;
    left: 10px;
    max-width: 60px;
  }
  
  .hero-button-overlay .shop-now-image {
    max-width: 200px;
  }
}


