/* Home Page */
@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

:root {
    --body-font: "Anybody", sans-serif;
    --heading-font: "Bricolage Grotesque", sans-serif;
    --banner-font: "Bricolage Grotesque", serif;
    --Theme-solid:#EC257F;
    --primary-pink:linear-gradient(180deg,rgba(233, 30, 99, 0.06) 0%, rgba(233, 30, 99, 1) 70%);
    --gradient-dark: linear-gradient(180deg,rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 1) 70%);
    
}
h2 {
    color: rgb(var(--base));
}
.navbar-brand.logo img {
        border-radius: 0px 0px 90px 90px;
        -webkit-box-shadow: 0px 8px 15px -11px rgba(49,49,49,0.6); 
        box-shadow: 0px 8px 15px -11px rgba(49,49,49,0.6);
    }
    .nav-menu .nav-item {
      margin: 0 20px;
  }
  .navbar-toggler.header-button {
    margin: 15px 0px;
}
.hero__content-title {
  font-size: 45px;
}
.social-icon {
    border: 1px solid hsl(var(--white));
    color: hsl(var(--white));
}
.social-icon:hover {
    color: hsl(var(--white));
    background: var(--dark-color);
    border: 1px solid var(--dark-color);
}
.aboutus-heading{
  color: rgb(var(--base));
}

.more-about-section {
    position: relative;
    isolation: isolate;
    background-image: url(../images/work-process-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.more-about-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #000000a8;
    z-index: -1;
}
.header-top {
    border-bottom: 0px solid var(--border-color);
    background: var(--linear-bg);
    /* border-bottom: 1px solid var(--border-color); */
}
.header-top__para {
    color: hsl(var(--white)) !important;
}
.social-icons__link {
    font-size: 12px;
    color: hsl(var(--white));
}
.more-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: hsl(var(--white));
    padding: 20px;
    border-radius: 15px;
}
.more-process__content {
    flex: 1;
}
.more-process {
  position: relative;
  display: inline-block;
}
.more-process img {
  transition: opacity 0.3s ease;
  width: 55px;
}
.more-process img.white-version {
  position: absolute;
  left: 41%;
  opacity: 0;
}
.more-process:hover img.white-version {
  opacity: 1;
}
.more-process:hover h5,.more-process:hover p {
  color: hsl(var(--white));
}
.more-process:hover{background: var(--linear-bg);}
  @media (max-width: 991px) {
      .more-process {
        flex-direction: row;
    }
  }
/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
  margin-top: 0px !important;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--base));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid rgb(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid rgb(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
      width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
      align-self: center;
      padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgb(var(--base));
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
  z-index: 999;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

.language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 4px;
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.language_flag {
  flex-shrink: 0;
  display: flex;
}

.language_flag img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.language-wrapper.show .collapse-icon {
  transform: rotate(180deg)
}

.collapse-icon {
  font-size: 14px;
  display: flex;
  transition: all linear 0.2s;
}

.language_text_select {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  display: flex;
  line-height: 1;
}

.language-content {
  display: flex;
  align-items: center;
  gap: 6px;
}


.language_text {
  color: black;
  margin-bottom: 0px;
}

.language-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  cursor: pointer;
  border: 0 !important;
}

.language .dropdown-menu {
  position: absolute;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: #fff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  min-width: 150px;
  border-radius: 8px;
  border: 1px solid rgb(0 0 0 / 10%);
  padding-block: 6px !important;
  right: 0 !important;
  left: auto !important;
}

.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef8a;
  opacity: 1;
}

.removeFile i{
  color: hsl(var(--white));
}

/* Price Section */

.section--bg {
    background-color: rgb(var(--base), 0.08);
}
/* Pricing Cards */
.pricing-card {
    background-color: hsl(var(--white));
    border-radius: 12px;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

/* Featured Card (Diamond) */
.featured-card {
    border: 2px solid  rgb(var(--base));
    box-shadow: 0 8px 40px rgba(233, 30, 99, 0.25), 0 0 0 1px rgba(233, 30, 99, 0.1);
    /* transform: scale(1.08); */
    z-index: 10;
}

/* .featured-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: linear-gradient(90deg,  rgb(var(--base)), #FF69B4,  rgb(var(--base)));
    border-radius: 12px 12px 0 0;
    z-index: 1;
} */

.featured-card:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 12px 50px rgba(233, 30, 99, 0.3), 0 0 0 1px rgba(233, 30, 99, 0.15);
}

/* Plan Title */
.plan-title {
    color:  rgb(var(--base));
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

/* Plan Description */
.plan-description {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Price Display */
.price-display {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
}



/* Buttons */
.get-started-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    border-width: 0px;
    letter-spacing: 0.3px;
}

.btn-outline-primary {
    border-color:  rgb(var(--base));
    color:  rgb(var(--base));
    background-color: transparent;
}

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

.btn-primary {
    background-color:  rgb(var(--base));
    border-color:  rgb(var(--base));
    color: var(--white);
}

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

/* Explore More Button */
.explore-more-btn {
    padding: 18px 50px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.15rem;
    background-color:  rgb(var(--base));
    border-color:  rgb(var(--base));
    color: var(--white);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.explore-more-btn:hover {
    background-color: #C2185B;
    border-color: #C2185B;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Features Section */
.features-section {
    margin-top: 0.5rem;
}

.features-title {
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.2px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: var(--black);
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.checkmark {
    color:  rgb(var(--base));
    font-weight: bold;
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .featured-card {
        transform: none;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-card:hover {
        transform: translateY(-3px);
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .pricing-section {
        padding: 80px 0 100px 0;
    }
}

@media (max-width: 767.98px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .pricing-section {
        padding: 60px 0 80px 0;
    }
    
    .explore-more-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .plan-title {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .pricing-card {
        padding: 1.8rem 1.25rem;
    }
    
    .pricing-section {
        padding: 50px 0 70px 0;
    }
    
    .explore-more-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }
}
.work-process__icon {

    width: 60px;
    height: 60px;
    font-size: 20px;
}

.work-process-border {
    border: 2px solid rgb(var(--base));
}
.work-process-border:hover{box-shadow: 0 8px 40px rgba(233, 30, 99, 0.25), 0 0 0 1px rgba(233, 30, 99, 0.1);}

.How-it-work-section{
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

/* What Makes Love Knots Different - content vertical middle */
.more-process.different-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.more-process.different-sec .work-process__content {
  flex: none;
}

/* Story */


/* Slider Container */
.love-stories-slider {
    margin: 0 -15px;
}

/* Love Story Cards */
.love-story-card {
    padding: 0 15px;
    margin-bottom: 40px;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Gradient Overlay */
.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    padding: 20px;
    color: hsl(var(--white));
    transition: all 0.3s ease;
}

.couple-names {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: hsl(var(--white));
}

.couple-location {
    font-size: 1rem;
    margin: 0;
    color: hsl(var(--white));
    opacity: 0.9;
}

/* Hover Effects */
.love-story-card:hover .story-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3);
}

.love-story-card:hover .story-image img {
    transform: scale(1.05);
}

.love-story-card:hover .story-overlay {
    background: var(--primary-pink);
    padding: 25px 20px;
}

.love-story-card:hover .couple-names {
    transform: translateY(-2px);
}

.love-story-card:hover .couple-location {
    transform: translateY(-2px);
}

/* Slick Slider Customization */
.love-stories-section.slick-slider {
    position: relative;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: hsl(var(--white));
    border: none;
    color: var(--primary-pink);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slick-arrow:hover {
    background: var(--primary-pink);
    color: hsl(var(--white));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-arrow:before {
    display: none;
}

/* See More Button */
.see-more-stories-btn {
    background-color: hsl(var(--white));
    color: var(--primary-pink);
    border: 2px solid hsl(var(--white));
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.see-more-stories-btn:hover {
    background-color: transparent;
    color: hsl(var(--white));
    border-color: hsl(var(--white));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .love-stories-title {
        font-size: 2.5rem;
    }
    
    .slick-prev {
        left: -15px;
    }
    
    .slick-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .love-stories-section {
        padding: 80px 0;
    }
    
    .love-stories-title {
        font-size: 2.2rem;
    }
    
    .love-stories-subtitle {
        font-size: 1.1rem;
    }
    
    .story-image {
        height: 250px;
    }
    
    .couple-names {
        font-size: 1.2rem;
    }
    
    .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slick-prev {
        left: -10px;
    }
    
    .slick-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .love-stories-section {
        padding: 60px 0;
    }
    
    .love-stories-title {
        font-size: 1.8rem;
    }
    
    .love-stories-subtitle {
        font-size: 1rem;
    }
    
    .story-image {
        height: 200px;
    }
    
    .story-overlay {
        padding: 15px;
    }
    
    .couple-names {
        font-size: 1.1rem;
    }
    
    .couple-location {
        font-size: 0.9rem;
    }
    
    .see-more-stories-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .slick-arrow {
        display: none !important;
    }
}

/* Slick Dots Customization */
.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: hsl(var(--white));
    opacity: 0.5;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-pink);
    opacity: 1;
}