*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* General Styles */  
body {  
  font-family: "Nunito Sans", sans-serif;
  margin: 0;  
  padding: 0;  
  background: #FAF8F4;  
  color: #333;  
}  

.middle--header {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 0px 100px;
        max-width: 1600px;
    margin: 0 auto;
        justify-content: space-between;
}
.right--box, .middle--header > .logo{
    width: 150px;
}

.middle--header > .logo > img {
    width: 100%;
}

.hero > .hero-content {
width: 110%;
    text-align: center;
    padding-top: 165px;
}
.hero > .hero-content > p {
    max-width: 80%;
    margin: 0 auto;
    color: #707070;
    font-size: 20px;
    margin-bottom: 25px;
}

.hero > .hero-image-left > img, .hero > .hero-image-right > img {
    width: 100%;
    margin-top: 60px;
}

.hero > .hero-image-left {
    margin-right: -60px;
    z-index: -1;
}

.hero > .hero-image-right {
        margin-left: -150px;
}


/* custom */
.heading-font{
    font-family: "EB Garamond", serif;
}
.custom--container{
    max-width: 1610px;
    width: 100%;
    margin: 0 auto;
}
/* custom end */

/* Header */  
.header {  
  display: flex;  
  align-items: center;  
  justify-content: center;
      font-family: "EB Garamond", serif;
    text-transform: uppercase;
}  
.navbar ul {
  display: flex;
  list-style: none;
  gap: 35px;
}  
.navbar a {
  text-decoration: none;
  color: #707070;
  font-weight: 500;
  font-size: 19px;
}  
.menu-toggle {
  background: none;
  border: none;

  font-size: 26px;
  cursor: pointer;
  display: none; /* Hidden on desktop */
}

/* Hero Section */  
.hero {  
    display: flex;
    justify-content: space-between;
    padding: 50px;
    padding-bottom: 0px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    margin-top: -50px;
}  
.hero-content h1 {  
 font-size: clamp(28px,3vw,35px);
    margin-bottom: 20px;
    color: #D1A272;
}  
.hero > .hero-image-left {
       max-width: clamp(200px,25vw,375px);
    width: 100%;
}

.hero > .hero-image-right {
        max-width: clamp(300px,34vw,510px);
    width: 100%;
}
.btn-primary {  
      background: #c69c6d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 0px;
    max-width: 170px;
    width: 100%;
    font-size: 18px;
    min-height: 50px;
    font-family: "EB Garamond", serif;  
}  

.scroll-down {  
  width: 40px;  
  height: 80px;  
  border: 2px solid #000;  
  border-radius: 25px;  
  position: relative;  
  display: flex;  
  justify-content: center;  
  align-items: flex-end;  
  padding-bottom: 15px;  
  margin: 0 auto;
  margin-top: 30px;
}  

/* Arrow Shape */  
.scroll-down span {  
  display: block;  
  animation: moveDown 1.5s infinite;  
}  

/* Arrow Animation */  
@keyframes moveDown {  
  0% {  
    transform: translateY(0);  
    opacity: 1;  
  }  
  50% {  
    transform: translateY(10px);  
    opacity: 0.5;  
  }  
  100% {  
    transform: translateY(0);  
    opacity: 1;  
  }  
}  

/* How It Works */  
.how-it-works {  
    text-align: center;
    padding: 50px 20px;
    background-image: url('../images/how-banner.svg');
    background-size: 100%;
    min-height: 405px;
    background-repeat: no-repeat;
    margin-top: -175px;
    color: #707070;
    padding-top: 70px;
    padding-bottom: 50px;
}  

.text--with--img > img {
    width: 75px;
    margin-bottom: 15px;
}

.text--with--img > h2 {
    font-family: "EB Garamond", serif;
    font-size: clamp(30px,4vw,42px);
    margin-bottom: 5px;
    line-height: 1.1;
}

.text--with--img > p {
    font-size: 20px;
    margin-bottom: 20px;
}

.text--with--img {
    margin-bottom: 40px;
}

.steps {  
		justify-content: center;
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}  
.step img {  
  width: 80px;  
  margin-bottom: 10px;  
}  
.steps > .step:nth-child(2) {
    border-right: 1px solid #707070;
    border-left: 1px solid #707070;
}
.step p {
    font-size: 17px;
}

.step p.heading-font {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.steps .step {
    padding: 10px 40px;
}
/* Create & Share Form */  
.create-share {  
  padding: 50px;  
      padding-top: 80px;
    padding-bottom: 80px;
}  
.create-share--container {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.tribute-form {  
  display: flex;  
  flex-direction: column;  
  gap: 15px;  
}  
.tribute-form .btn-primary {
        max-width: 100%;
    min-height: 65px;
    font-size: 24px;
}
.tribute-form textarea {
    padding: 10px 25px;
    border: 1px solid #707070;
    width: 100%;
    font-size: 15px;
    min-height: 50px;
    font-family: 'Nunito Sans';
}

.tribute-form textarea::placeholder {
    color: #707070;
    font-size:16px;
}
.form--video > h2 {
font-size: clamp(30px,4vw,42px);
    margin-bottom: 25px;
    color: #D1A272;
    font-family: "EB Garamond", serif;
 
    width: 100%;
    line-height: 1;
}

.create-share--container > .form--video {
    width: 50%;
        padding-right: clamp(100px,10vw,150px);
        border-right: 1px solid #6F6F6F;
}
#downloadbottle, #openShareModal, #mergedPreview{
    display: none;
}
#downloadbottle {
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

#downloadbottle button {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    width: 100%;
    padding: 5px 15px;
    border: none;
    background: #fff;
    color: #D1A272;
    font-family: "EB Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    gap: 5px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
}

#downloadbottle button > img {
    width: 27px;
}
div#shareModal > .social-links {
    width: 100%;
}
div#successMessage {
    text-align: center;
}
div#shareModal > .social-links > button {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    padding: 8px 10px;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    width: 100% !important;
    background: #fff;
    cursor: pointer;
}

div#shareModal > .social-links > button:last-child {
    border-bottom: none !important;
}

div#shareModal > .social-links > button > img {
    width: 23px;
}
#response {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video--view--container {
    width: 50%;
    padding-left: clamp(100px,10vw,150px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.video--view--container .video--box--new{
	position: relative;
    width: fit-content;
}
.video--view--container .priview--video {
position: absolute;
    top: 0;
    left: 42%;
    width: 100%;
    height: 100%;
    max-width: 79%;
    transform: translateX(-50%);
    z-index: 3;
}
.video--view--container video {
    width: 100%;
    height: 100%;
}

.default--video {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 999;
    height: 100%;
    box-shadow: 0px 4px 4px 0px #00000040 inset;
    background: linear-gradient(180deg, #D4FBCC 0%, #D4E190 100%);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.default--video--message {
    padding: clamp(20px, 4vw, 50px);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
     font-size: clamp(16px, 2vw, 23px);
     box-shadow: 0px 4px 4px 0px #00000040 inset;
    background: linear-gradient(180deg, #D4FBCC 0%, #D4E190 100%);
}

.bg--video > .share--video {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

.bg--video > .share--video > button {
    box-shadow: 0px 4px 4px 0px #00000040;
    border: none;
    background: #fff;
    width: 100%;
    min-height: 45px;
    display: flex;
    color: #D1A272;
    font-size: 27px;
    font-family: "EB Garamond", serif;
    font-weight: 600;
    padding: 5px 19px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
#shareModal .modal-content > .close {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 29px;
    cursor: pointer;
}

#shareModal  h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

#shareModal .modal-content {
    max-width: fit-content;
    padding: 15px 37px;
    text-align: center;
    padding-top: 33px;
}

#shareModal .social-links img {
    width: 38px;
}
.proccess--video--message img {
    width: 50px;
}

.proccess--video--message p {
    font-size: 17px;
}

.proccess--video--message {
    color: #707070;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 2vw, 23px);
    padding: clamp(20px, 4vw, 50px);
    box-shadow: 0px 4px 4px 0px #00000040 inset;
    background: linear-gradient(180deg, #D4FBCC 0%, #D4E190 100%);
    text-align: center;
}
.proccess--video--message.final--img {
    padding: 0px;
}

.proccess--video--message.final--img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.default--video--message img {
    width: 80px;
}

.bg--video > img {
    transform: translateY(15px) scaleX(1.09) scaleY(0.9);
    width: 100%;
    max-width: 94%;
}

.bg--video {
    width: fit-content;
    position: relative;
}

.bg--video:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 42%;
    top: 52%;
    z-index: 2;
    max-width: 83%;
    max-height: 78%;
    transform: translate(-50%, -50%);
}


.tribute-form > .col-2 > div {
    width: 100%;
}
.tribute-form > .col-2 {
    display: flex;
    gap: 10px;
}
.tribute-form label {
font-family: "EB Garamond", serif;
    color: #000;
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
    font-size: 18px;
}
.tribute-form input,  
.tribute-form select {  
         padding: 5px 25px;
    border: 1px solid #707070;
    width: 100%;
    font-size: 16px;
    min-height: 50px;
}  

.tribute-form select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 16px;
    background-position: calc(100% - 20px) 17px;
    background-repeat: no-repeat;
    appearance: none;
    background-color: #fff;
}


.tribute-form input::placeholder {
    color: #707070;
}

.file-upload-container {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

div#file_name_display {
position: absolute;
    left: 15px;
    width: 100%;
    max-width: 70%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.file-input {
  border: 1px solid #999;
  padding: 15px !important;
  width: 400px;
  cursor: pointer;
  color: transparent;
  background: #fff;
}

.file-input::file-selector-button {
  display: none;
}

.file-label {
    border: 1px solid #d6a77a;
    padding: 12px 30px;
    background-color: transparent;
    color: #d6a77a !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0px !important;
    font-size: 20px !important;
}

.file-label:hover {
  background-color: #d6a77a;
  color: #fff !important;
}

.upload-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 15px;
    color: #707070;
}
.video--box {
    width: fit-content;
    height: 589px;
    margin-left: -40px;
    padding-top: 30px;
    padding-bottom: 30px;
}
/* video.background-video {
    height: 100%;
    background: linear-gradient(90deg, transparent 35%, #fff 26%);
    padding: 6px;
    padding-left: 0px;
} */
.create-share--container > .created--video {
    width: 50%;
    padding-left: 150px;
            
}
.create-share--container > .created--video > .video--section {
    padding-right: 50px;
    background-image: url(../images/video-bg.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.video--load {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    color: #707070;
    font-size: 16px;
}

.video--load img {
    width: 36px;
    margin: 0 auto;
}
.video--uploaded img {
    width: 95px;
    margin-bottom: -30px;
}

.share-btn {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    max-width: 140px;
    width: 100%;
}

.share-btn > button {
    box-shadow: 0px 4px 4px 0px #00000040;
    border: none;
    background: #fff;
    width: 100%;
    min-height: 50px;
    display: flex;
    color: #D1A272;
    font-size: 32px;
    font-family: "EB Garamond", serif;
    font-weight: 600;
    padding: 5px 10px;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Gift */
.add--address {
    background: #F7FFCA;
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 10px;
    gap: 20px;
}

.add--address .gift--container {
    display: flex;
    gap: 10px;
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.add--address .gift--container > .content--gift > h2 {
    font-size: 35px;
    margin-bottom: 25px;
    color: #707070;
    font-family: "EB Garamond", serif;
    line-height: 1;
}

.add--address .gift--container > .button--gift {
    max-width: 430px;
    width: 100%;
}

button#giftBottle {
    max-width: 100%;
    font-size: 24px;
}

#giftBottle:disabled,
#giftBottle[disabled], #submit--button:disabled, #submit--button[disabled]{
  background-color: #cccccc;
  color: #666666;
  cursor:no-drop
}

.add--address .bottle--container > .circle--bg--bottle {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 290px;
}

.add--address .bottle--container > .circle--bg--bottle > img {
    width: 100%;
}

.add--address .bottle--container {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.add--address .bottle--container > .bottle--img > img {
    width: 100%;
}

/* clip */

.mockup-wrapper {
    position: relative;
    z-index: 1;
    max-width: 190px;
    width: 100%;
    margin: 0 auto;
}

.mockup-wrapper > img {
    width: 100%;
}

.mask-wrapper {
    position: absolute;
    /* width: 74.8px;
    height: 116px;
    bottom: 79px;
    left: 56.5px; */
width: 71.5px;
    height: 119px;
    bottom: 79px;
    left: 58px;
  -webkit-mask-image: url(../images/bottle/clip-img.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url(../images/bottle/clip-img.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  overflow: hidden;
  z-index: 99;
}

img#preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
/* clip end */

.add--address .bottle--container > .bottle--img {
    position: relative;
    z-index: 1;
    max-width: 190px;
    width: 100%;
    margin: 0 auto;
}

.add--address > .container--bottle {
    display: flex;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
}

div#shareModal {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 4px 0px #00000040;
}
div#shareModal.active {
    display: flex;
}


div#shareModal > .social-links {
    display: flex;
    flex-direction: column;
}

div#shareModal > .social-links > a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

div#shareModal > .social-links > a > img {
    width: 25px;
}

div#shareModal > .social-links > a:last-child {
    border: none;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  position: relative;
  /* text-align: center; */
}
#successMessage > img {
    margin-bottom: -20px;
    margin-top: -40px;
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
}

#addressForm input, #addressForm textarea {

  /* margin: 15px 0; */
    padding: 10px 25px;
    border: 1px solid #707070;
    width: 100%;
    font-size: 16px;
    min-height: 50px;
}

#addressForm .form-group {
    display: flex;
    flex-direction: column;
}

#addressForm .form-group > label {
    font-family: "EB Garamond", serif;
    color: #000;
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
    font-size: 18px;
}
#addressForm input::placeholder, #addressForm textarea::placeholder {
    color: #707070;
    font-family: 'Nunito Sans';
}
#addressForm .btn-primary {
    max-width: 100%;
}

#addressForm .form-group {
    margin-bottom: 10px;
}
#addressForm h3{
	font-family: "EB Garamond", serif;
    color: #000;
}
    

.hidden {
  display: none;
}

/* Gallery Slider */  
.gallery {  
padding: 50px;
    background: url(../images/gallery-bg.svg);
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 0;
        margin-bottom: -70px;
 
}  
.gallery-slider > .slick-list{
	       max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}
.gallery-slider img {  
  width: 100%;  
}  

.custom-pagination {  
  display: flex;  
  justify-content: center;  
  margin-top: 20px;  
  gap: 10px; 
  margin-bottom: 20px;
}  

.custom-pagination button {  
  width: 12px;  
  height: 12px;  
  border-radius: 50%;  
  border: none;  
  background: #fff;  
  cursor: pointer;  
  transition: background 0.3s;  
  opacity: 0.3;
}  

.custom-pagination button.active {  
  background: #fff;  
  opacity: 1;
}  
.gallery-slider .slick-track > .slick-slide img {
    height: 450px;
    object-fit: cover;
    object-position: center;
        padding: 5px;
}

.gallery-slider .slick-track > .slick-slide:nth-child(even)
 {
    margin-top: 100px;
}

.galler--heading > img {
    max-width: 200px;
    width: 100%;
        margin-bottom: 20px;
}

.galler--heading {
    margin-top: -126px;
}

.galler--heading > h2 {
    font-size: clamp(30px,4vw,42px);
    font-family: "EB Garamond", serif;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.1;
}

.galler--heading > p {
    color: #fff;
    font-size: 20px;
}

/* FAQ */  
.faq {  
  padding: 50px;  
  background: #FAF8F4;  
  padding-top:150px ;
  padding-bottom: 200px;
}  
.faq-container {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}

.faq-container .faq-heading {
    font-size: clamp(30px,4vw,42px);
    font-family: "EB Garamond", serif;
    color: #D1A272;
    margin-bottom: 20px;
    line-height: 1.1;
}
 

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 15px 0;
  font-size: 26px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
     font-family: "EB Garamond", serif;
     color: #707070;
}

.faq-question .icon {
  font-size: 26px;
  transition: transform 0.3s;
}

.faq-question.active .icon {
  transform: rotate(45deg); /* plus turns into minus */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 10px;
}

.faq-answer p {
  margin: 10px 0;
  line-height: 1.5;
  color: #555;
  font-size: 22px;
}

.faq-question:hover {
  color: #000;
}

/* Footer */  
.footer-top {
    background: url(../images/footer-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    text-align: center;
        padding-bottom: 40px;
}

.footer-top .footer-logo {
    max-width: 200px;
    margin-top: -160px;
    width: 100%;
}

.footer-top .footer--head {
    font-family: "EB Garamond", serif;
    color: #707070;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.footer-top p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #707070;
}

.footer-top .footer--menu > ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-top: 20px;
}

.footer-top .footer--menu > ul > li > a {
    color: #D1A272;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "EB Garamond", serif;
    font-size: 20px;
    font-weight: 500;
}



.footer-bottom {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 20px 50px;
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.footer-bottom > .copy--right {
    display: flex;
    gap: 10px;
    color: #707070;
    font-family: "EB Garamond", serif;
    font-size: 18px;
}
.footer-bottom > .copy--right > p > a {
    color: #707070;
    font-weight: bold;
    text-decoration: none;
}
.footer-bottom > .copy--right .footer-links > a {
    color: #707070;
}

.footer-bottom .social-media > .social--links {
    display: flex;
    gap: 10px;
}

.footer-bottom .social-media > .social--links > a > img {
    width: 100%;
}

.footer-bottom .social-media > .social--links > a {
    height: 25px;
    aspect-ratio: 1 / 1;
}

.inner--page {
    padding: 20px;
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    font-family: "Nunito Sans", sans-serif;
    padding-bottom: 200px;
}

.inner--page h1, .inner--page h2, .inner--page h3 {
    margin-bottom: 10px;
    font-family: "EB Garamond", serif;
}

.inner--page p {
    margin-bottom: 10px;
}

.inner--page ul {
    margin-bottom: 10px;
    padding-left: 15px;
}

.inner--page a {
    color: #D1A272;
    font-weight: 500;
}

.inner--page h1 {
    font-size: 2.5rem;
}

.inner--page h2 {
    font-size: 2rem;
}

.inner--page h3 {
    font-size: 1.5rem;
}