* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif !important;
    overflow-x: hidden !important;
}
.product-details {
    display: none !important;
}

.hidden {
    display: none;
}
.my-account-link {
    color: white;
    outline: none;
}
.my-account-link:hover {
    color: white;
    text-decoration: none;
    outline: none;
}

.form-control:focus {
    color: #fff !important;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.search-bar-container {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 8px;
    z-index: 1001;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 80%;
    text-align: center;
}
.search-content {
    /* position: relative;
    width: 100%; */
    display: flex;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, 300%);
}
.search-input-icon {
    position: absolute;
    right: 15px;
    top: 68%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
    /* pointer-events: none;  */
    font-size: 16px;
}
.search-bar {
    background-color: #fff;
}

.close-btn {
    position: absolute;
    top: -37px;
    right: -68px;
    background: none;
    color: #b2936d;
    border: none;
    font-size: 35px;
    cursor: pointer;
    z-index: 1002;
    font-weight: normal;
}

.search-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.search-input {
    letter-spacing: 3px;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    margin-top: 20px;
    outline: none;
    color: black;
}

.search-icon i {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.cart-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cart-icon i {
    font-size: 20px;
}
.items-count,
.cost {
    font-size: 14px;
    font-weight: bold;
}

.cart-dropdown {
    background: #2c3136;
    color: #fff;
    top: 137px;
    width: 286px;
    padding: 16px;
    border-radius: 8px;
    position: absolute;
    right: 124px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    max-height: 609px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}
.cart-dropdown::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.cart-dropdown.active {
    display: block;
}

.cart-item {
    display: flex;
    gap: 11px;
    /* align-items: center; */
    margin-bottom: 10px;
}

.cart-item-img {
    width: 5.5em;
    height: 5.5em;
    float: left;
    left: 0;
}

.cart-item-details h6 {
    font-size: 15px;
    margin: 0;
    font-weight: 200;
    color: #fff;
}

.cart-item-details p {
    font-size: 15px;
    margin: 4px 0;
}
.item-quantity {
    font-size: 15px;
    color: #b2936d;
}

.item-price {
    font-size: 15px;
    color: #b2936d;
}

.remove-icon {
    border: none;
    background-color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 0.5em;
    /* top: 1.3em; */
    z-index: 10;
    line-height: 1;
    width: 17px;
}

.cart-subtotal {
    font-size: 1.1em;
    padding: 0.97em 0 0.99em;
    border-top: 1px solid #80808073;
    border-bottom: 1px solid #80808073;
    text-align: right;
    margin-top: 0.97em;
    margin-bottom: 2em;
}
.subtotal-label {
    font-size: 14px;
    color: #555;
}

.subtotal-price {
    font-size: 18px;
    color: #b2936d;
    /* font-weight: bold; */
}
.cart-buttons {
    justify-content: center;
    display: flex;
    gap: 8px;
    /* padding: 0px 20px; */
}

.cart-buttons button {
    flex: 1;
    padding: 5px;
    font-size: 10px;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
}

.cart-view {
    background: #c39a6b;
    color: #fff;
    outline: none !important;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.cart-view:hover {
    background-color: transparent;
    border: 1px solid #b2936d;
    color: #b2936d;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black !important;
    background-image: none !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 60%;
    width: 35px !important;
    height: 35px !important;
    transform: translate(-50%, -50%);
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: black !important;
}
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: solid white;
    border-width: 0 6px 6px 0;
    position: absolute;
}

.carousel-control-prev-icon::after {
    transform: rotate(135deg) translate(-50%, -50%);
    top: 26%;
    left: 1%;
}

.carousel-control-next-icon::after {
    transform: rotate(-45deg) translate(-50%, -50%);
    top: 31%;
    left: 50%;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.yes-btn,
.no-btn {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    /* border-radius: 5px; */
    color: white;
    background-color: #b2936d;
}

.yes-btn:hover,
.no-btn:hover {
    background-color: white;
    color: #b2936d;
    border: 1px solid #b2936d;
}

/* .no-btn {
    background-color: #ccc; 
    color: #333;
  } */

.agreement,
.check-agreement {
    font-size: 14px !important;
    color: #434446 !important;
    font-weight: 200 !important;
    /* margin: 0px 0px 0px 41px; */
    margin-bottom: 1.5em;
}

.agreement a,
.check-agreement a {
    color: #8b5e3c;
    text-decoration: none;
}
.agreement a:hover,
.check-agreement a:hover {
    color: #767676;
    text-decoration: none;
}

.cookies-info {
    font-size: 14px;
    color: #000;
    /* margin: 0px 0px 0px 41px; */
}

.cookies-info a {
    color: #8b5e3c;
    text-decoration: none;
}
#modalOverlay,
#modalOverlayNo {
    visibility: hidden; /* Prevent blinking */
    opacity: 0;
    display: flex; /* Default display if shown */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

#modalOverlay.show,
#modalOverlayNo.show {
    visibility: visible; /* Show modal when JavaScript adds 'show' class */
    opacity: 1;
}

#modalOverlay {
    display: flex;
}
.modal-overlay {
    display: none;
    padding: 10px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    /* padding: 20px; */
    /* max-width: 400px; */
    /* width: 90%; */
    border-radius: 10px;
    text-align: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    /* max-width: 500px; */
    width: 100%;
    background: #fff;
    padding: 50px 20px;
    position: relative;
}

.modal-logo {
    max-width: 100px;
    margin-bottom: 20px;
}
.age-message {
    margin: 0 0 10px;
    font-size: 20px;
    color: #212529;
}

.add-btn {
    margin-top: 10px;
    padding: 10px 15px;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
}

.add-btn:hover {
    background: #444;
}

.modal-bill {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.52); /* Black with opacity */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modalbill-content {
    position: relative;
    background-color: #fefefe;
    border: 1px solid #888;
    width: 45%;
    max-width: 700px;
    border-radius: 5px;
    overflow-y: auto;
    max-height: 80vh;
    padding: 40px;
    margin: 0 auto;
}
.modalbill-content::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

/* Hide scrollbar for Firefox */
.modalbill-content {
    scrollbar-width: none;
}

/* Hide scrollbar for Edge & IE */
.modalbill-content {
    -ms-overflow-style: none;
}

.close-btn {
    font-size: 23px;
    font-weight: bold;
    position: absolute;
    right: 2%;
    top: 1%;
    height: 25px;
    line-height: 26px;
    width: 25px;
    vertical-align: middle;
    background-color: #000;
    text-align: center;
    color: #fff;
    z-index: 999;
    border-radius: 50%;
}
.form-group-row {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Adjust spacing between input fields */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    text-align: left;
}

.form-group input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

@media (max-width: 480px) {
    h2 {
        font-size: 16px;
    }

    .buttons button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .agreement,
    .cookies-info {
        font-size: 11px;
        line-height: 17px;
    }
}
#scrollToTopBtn {
    position: fixed;
    bottom: 100px;
    right: 13px;
    display: none;
    background-color: #b2936d;
    color: white;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    text-align: center;
    z-index: 1000;
}
#scrollToTopBtn:focus {
    outline: none; /* Ensures no border on focus */
}

#scrollToTopBtn:hover {
    background-color: #c4a484;
    color: #2d2d2d;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to right, #2f2f2f, #8a6e4b);
    padding: 20px 0px 2px 0px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background-color: rgb(59 61 63);
    padding: 15px 100px;
  }
  .search{
    margin-top: -4px;
}
.search i {
    font-size: 16px;
}
.logout_btn {
    background: none;
    border: none;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.logout_btn:hover {
    outline: none;
    border: none;
}
.header .login-section,
.header .cart-container,
.header .search {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header.scrolled {
    padding: 0 !important;
}
.header.scrolled .login-section {
    opacity: 0;
    visibility: hidden;
    height: 0;
    display: none;
}
.header.scrolled {
    background: #171a1c;
    padding: 0;
}
.header.scrolled .top-bar {
    position: relative;
    padding: 0px 142px;
    top: -4px;
    background-color: #171a1c;
}
.header.scrolled .logo img {
    height: 40px;
    position: absolute;
    z-index: 1000;
    margin-top: -17px;
}

.header .nav-links {
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.nav-toggle {
    display: none;
}
.logo img {
    height: 140px;
    position: absolute;
    z-index: 1000;
    margin-top: -100px;
}
.nav-links {
    display: flex;
    gap: 20px;
    text-align: right;
    margin-top: 2em;
    margin-bottom: 1.4em;
}

.nav-links a {
    outline: none !important;
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.2857em;
    font-weight: 400;
}

.nav-links a:hover {
    text-decoration: none;
    color: #b2936d;
    border-bottom: 2px solid#b2936d;
}
.fa-search:before {
    color: #b2936d;
}
.nav-links a.active {
    color: #f5a623;
    border-bottom: 2px solid#b2936d;
}

.nav-links a.active::after {
    width: 100%;
}
.login-section {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    margin-bottom: 10px;
    margin-right: 120px;
}
.login {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border: none;
    outline: none;
}
.login:hover {
    color: white;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid white;
}
.social-icons a:hover {
    color: white;
    text-decoration: none;
}
.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle i {
    font-size: 24px;
    color: #fff;
}
.cart-container {
    display: flex;
    align-items: center;
    background-color: #b2936d;
    /* border-radius: 5px; */
    overflow: hidden;
    width: 280px;
}
.cart-container:hover {
    background-color: #2d2d2d;
}
.cart-icon {
    background-color: #2d2d2d;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon i {
    color: white;
    font-size: 24px;
}

.cart-details {
    /* padding: 15px; */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-align: center;
    flex-grow: 1;
    gap: 5px;
    padding: 0 1.35em 0;
}
.cart-details .items-count {
    font-weight: 400;
    font-size: 0.857em;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    /* padding: 0 1.35em 0; */
}

.cart-details .cost {
    font-weight: 400;
    font-size: 0.857em;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: white;
}

.search a {
    font-size: 17px;
    color: #8a6e4b;
}
.mobile-header {
    display: none;
}
.carousel-inner img {
    /* width: 100%; */
    /* height: auto; 
      max-height: 70vh;  */
    margin-top: 160px;
}
.carousel-item {
    transition: opacity 1s ease-in-out !important;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}
.about-section {
    text-align: center;
    padding: 0px;
    background-color: #f4f4f4;
}

.about-banner {
    padding: 70px 150px;
    position: relative;
    width: 100%;
    height: auto;
}

.banner-image {
    width: 100%;
    height: auto;
    /* max-height: 70vh; */
    object-fit: cover;
}

.about-content {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    /* background-color: rgba(23, 26, 28, 0.7); */
    padding: 20px 30px;
    border-radius: 5px;
}

.about-content h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}
.about-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    /* font-weight: bold; */
    /* border-radius: 5px; */
    overflow: hidden;
    width: fit-content;
    background-color: #2d2d2d;
    transition: background-color 0.3s ease;
}

.button-text {
    background-color: #b2936d;
    color: #fff;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    /* font-size: .857em; */
    text-transform: uppercase;
    letter-spacing: 1.3px;
    /* padding: 0 1.35em 0; */
    /* margin: 1.55em 0 0; */
    /* display: inline-block; */
    /* display: block; */
}

.button-arrow {
    background-color: #2d2d2d;
    color: #fff;
    padding: 8px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.button-arrow i {
    font-size: 16px;
    width: 20px;
    transition: transform 0.3s ease;
}
.about-button:hover {
    background-color: #2d2d2d;
    text-decoration: none;
}

.about-button:hover .button-text {
    background-color: transparent;
}

.about-button:hover .button-arrow {
    background-color: transparent;
}

.about-button:hover .button-arrow i {
    transform: translateX(5px);
}

.about-description {
    background-color: #2d2d2d;
    color: #fff;
    padding: 40px 70px;
    text-align: center;
}

.about-description h3 {
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #c4a484;
}

.about-description h1 {
    color: #c4a484;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: white;
}

.founder {
    font-style: italic !important;
    font-size: 16px;
    color: #c4a484;
    display: inline-block;
    padding-top: 10px;
    border-top: 1px solid #c4a484;
}

.founder span {
    font-weight: bold;
    color: #fff;
}

.founder span {
    font-weight: bold;
    color: #fff;
}
.services-section {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    /* gap: 20px;
      padding: 10px;
      text-align: center; */
}

.service-card {
    /* background-color: #fff; */
    /* border-radius: 8px;
      padding: 20px; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }
     */
.service-card img {
    max-width: 150px;
    height: auto;
    margin: 35px 0px;
}

.service-card h3 {
    /* color: #c4a484; */
    font-size: 17px;
    /* margin-bottom: 10px; */
    position: relative;
}

/* .service-card h3::before {
      content: "";
      display: block;
      width: 200px;
      height: 1px;
      background-color: #c4a484;
      margin: 8px;
    } */

.more-btn {
    display: inline-block;
    background-color: #b2936d;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    outline: none;
    border: 2px solid #b2936d;
}

.more-btn:hover {
    background-color: #b2936d;
    text-decoration: none;
    color: white;
    outline: none;
}
.shopping-btn {
    display: inline-block;
    background-color: #b2936d;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    outline: none;
    border: 2px solid #b2936d;
}
.shopping-btn:hover {
    background: transparent;
    text-decoration: none;
    color: #b2936d;
    outline: none;
    border: 2px solid #b2936d;
}
.heading h4 {
    font-weight: 400;
    font-size: 35px;
    color: #b2936d;
    margin-top: 35px;
    margin-bottom: 35px;
}
.whiskey-container {
    display: flex;
    gap: 20px;
    /* justify-content: flex-start; */
    flex-wrap: wrap;
    padding: 10px;
}
.whiskey-container-booking {
    display: flex;
    gap: 30px;
    /* justify-content: flex-start; */
    flex-wrap: wrap;
    padding: 10px;
}
.whiskey-container-booking .card {
    width: 260px;
}
.card {
    width: 280px;
    height: 350px;
    position: relative;
    overflow: hidden;
    border: 2px solid #8d6c43 !important;
    border-radius: 0px !important;
    text-align: center;
}

.card-image {
    /* background-color: #f4f4f4; */
    width: 100%;
    height: 90%;
    /* padding: 10px; */
}

.whisky-image {
    background-color: white;
    /* width: 250px;
    height: 300px; */
    width: 240px;
    height: 270px;
    object-fit: contain;
    /* max-width: 100%; */
    /* display: block; */
    /* margin: 0 auto; */
    margin-bottom: 2.5em;
}
.card-name {
    padding: 5px 1rem;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 79.35%;
    text-align: center;
    -moz-transition: ease 0.35s all;
    -o-transition: ease 0.35s all;
    -webkit-transition: ease 0.35s all;
    transition: ease 0.35s all;
}
.card-name h6 {
    color: rgb(79 83 87);
    /* color:#2c3136; */
    font-size: 14.98px;
    margin-top: 17px;
}
.card-content {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 241, 235, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: bottom 0.6s ease-in-out;
}
.card-content h6 {
    margin-bottom: 70px;
    color: rgb(79 83 87);
}

.card:hover .card-content {
    bottom: 0;
    /* background-color:rgb(0 0 0 / 30%); */
}
/* .whisky-card .image-wrapper .bookings-closed {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 100px;
    height: auto;
    z-index: 10; 
  } */
.card-content p {
    font-weight: bold;
    font-size: 16px;
    color: #b2936d;
    margin-bottom: 0px;
}
h6 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

p {
    margin: 5px 0;
    font-size: 16px;
    color: #555;
}
.send-msg-btn {
    font-size: 12px;
    width: 74%;
    background-color: #b2936da3;
    color: white;
    border: 1px solid #b2936da3;
    cursor: pointer;
    margin-top: 2.7em;
    transition: background-color 0.3s;
    text-transform: uppercase;
    padding: 2.1em 2.2em 2.1em 2.55em;
    letter-spacing: 5px;
}
.send-msg-btn:hover {
    background-color: transparent;
    border: 2px solid #b2936da3;
    color: #b2936da3;
}
.pre-book-btn {
    font-size: 12px;
    padding: 20px !important;
    letter-spacing: 5px;
    background-color: #b38b5d;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.pre-book-btn:hover {
    cursor: pointer;
    background-color: #2d2d2d;
}
.comment-container {
    text-align: right;
    margin-top: 10px;
}
.post-comment {
    width: 202px;
    font-size: 12px;
    padding: 18px !important;
    letter-spacing: 5px;
    background-color: #b38b5d;
    color: white;
    border: 1px solid #b38b5d;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}
.post-comment:hover {
    background-color: #fff;
    color: #b2936d;
}
.buy-now-btn {
    font-size: 12px;
    padding: 1em 1.8em 1em 2em;
    letter-spacing: 5px;
    background-color: #b38b5d;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
    border: 2px solid #b38b5d;
    text-transform: uppercase;
}

.buy-now-btn:hover {
    background: transparent;
    color: #b38b5d;
}
.more {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.more-button {
    background-color: #2d2d2d;
    color: #fff;
    padding: 0px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.button-text-more {
    background-color: #b2936d;
    color: #fff;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}
.button-text-more:hover {
    background-color: #2d2d2d;
}
.merchandise-section {
    text-align: center;
    padding: 40px 20px;
}

.merchandise-section h2 {
    color: #c4a484;
    font-size: 18px;
    letter-spacing: 2px;
}

.merchandise-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d2d2d;
}
.merchandise-section-heading h6 {
    display: flex;
    color: #b2936d;
    font-size: 18px;
    letter-spacing: 7.5px;
    font-weight: 500;
}
.merchandise-section-heading h3 {
    font-weight: 400;
    color: #b2936d;
    font-size: 2.5711em;
    line-height: 1.33em;
}
.merchandise-section-heading {
    display: grid;
    justify-content: flex-start;
}
.content-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: flex-start;
}

.left-section {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.right-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.membership-card {
    position: relative;
    text-align: left;
    border: 1px solid #8d6c43;
    /* border-radius: 8px; */
    background-image: url("./application-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #000;
    overflow: hidden;
    width: 500px;
    height: 340px;
}

.membership-content {
    padding: 20px;
    color: #000;
    border-radius: 5px;
}

.membership-btn {
    background-color: #2c3136;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    float: right;
}

.membership-btn:hover {
    background-color: #2c313699;
    color: #fff;
}

.sign-up-text {
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    color: black;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-transform: uppercase;
}
.text {
    margin-top: 30px;
    padding: 20px;
    background-image: linear-gradient(
        to left,
        rgba(178, 147, 109, 0),
        rgba(178, 147, 109, 0.5)
    );
}
.products-btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.blog {
    padding: 50px 90px;
}
.blog img {
    /* background-color: #f4f4f4; */
    padding: 20px;
    width: 100%;
}
.whisky-moments-section {
    padding: 60px 100px;
    text-align: center;
    background-color: #f4f4f4;
}

.moments-heading h2 {
    color: #c4a484;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 0;
}

.moments-heading h1 {
    font-size: 36px;
    color: #2d2d2d;
    margin: 10px 0 30px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.video-card {
    position: relative;
    padding-top: 56.25%;
    background-color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.load-more-btn,
.subscribe-btn {
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.load-more-btn {
    background-color: #444444;
}
.load-more-btn:hover {
    background-color: #7d7f81;
}

.subscribe-btn {
    background-color: #b2936d;
}

.subscribe-btn:hover {
    background-color: #bda383;
}
.footer {
    background-color: #b2936d;
    color: #fff;
    padding: 40px 160px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.footer-column:nth-child(2) ul {
    margin-top: 52px;
}
.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: none;
}

.footer-column p {
    font-size: 12px;
    line-height: 1.6;
    color: #fff;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: none;
    color: white !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    background-color: #2d2d2d;
    color: #9c9ea0;
}

.footer-bottom p {
    margin: 0;
    color: #9c9ea0;
}
.footer-bottom .social-icons i {
    color: #9c9ea0;
}
.footer-column h2 {
    font-size: 20px;
    margin-left: -10px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 127px;
    left: 0;
    background-color: #b2936d;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 17px 35px;
    text-decoration: none;
    font-size: 12px;
    color: white;
    display: block;
    transition: 0.3s;
    line-height: 16px;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 81px;
    font-size: 12px;
    margin-left: 50px;
}
.form-group input:invalid:focus {
    /* border-color: #ff0000; */
    outline: none;
    /* box-shadow: 0 0 3px #ff0000; */
}

html {
    scroll-behavior: smooth;
}
/* .membership-page{
  padding: 98px 0px;
    background-color: rgb(244 244 244);
  } */
  .membership-container {
    padding:0px 150px;
    
  }
  .membership-banner {
    width: 100%; 
    overflow: hidden; 
  }
  
  .membership-banner img {
    width: 100%; 
    height: auto; 
    display: block; 
  }
  .title {
    font-weight: 400;
    font-size: 35px;
    /* text-align: center; */
    color: #9c7b4f;
}

.subtitle {
    font-size: 14px;
    /* text-align: center; */
    color: #434446;
    /* margin: 10px 0; */
    font-weight: 700;
}

.description {
    text-align: justify;
    /* margin: 15px 0; */
    color: #333;
    font-size: 14px;
}

.benefits-heading {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #333;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 13px;
}

.benefits-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #9c7b4f;
    border: 1px solid #9c7b4f;
    /* background-color: #9c7b4f;  */
    width: 18px;
    height: 18px;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
}

.benefits-list li input[type="checkbox"]:checked + label::before {
    content: "✔";
    color: #fff;
    background-color: #9c7b4f;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
}

.seperator-line {
    height: 1px;
    border-top: 1px solid #ebebeb;
    display: block;
    position: relative;
    top: 1px;
    width: 100%;
    border-color: #2a2a2a;
}
.login-text {
    text-align: center;
    margin-top: 20px;
}

.login-link {
    color: #c55a11;
    text-decoration: none;
    /* font-weight: bold; */
}

.login-link:hover {
    text-decoration: underline;
}
.form-container {
    /* max-width: 600px; */
    /* margin: 50px auto; */
    padding: 20px 150px;
    padding-top: 0px;
    /* background:; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
  }
  
  .login-link {
    margin-top: 60px;
    /* text-align: center; */
    font-size: 2rem;
}

.login-link .highlight {
    color: red;
    /* font-weight: bold; */
    text-decoration: none;
}

.login-link .highlight:hover {
    text-decoration: underline;
}

.membership-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}
/* input[type="date"]::-webkit-calendar-picker-indicator {
        display: none; 
    }

    input[type="date"]::-moz-calendar-picker-indicator {
        display: none;
    }

    input[type="date"] {
        -webkit-appearance: none; 
        -moz-appearance: none;
        appearance: none;
        background: none;
        border: 1px solid #ccc;
        padding: 10px;
        font-size: 16px;
    } */
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    padding-left: 20px;
}

.form-group label span {
    color: red;
}
.form-group input[type="text"]:hover,
.form-group textarea:hover {
    border: 1px solid #000;
}
.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    letter-spacing: 3px;
}

.form-group input[type="text"]:focus,
.form-group select:focus {
    border-color: #c55a11;
    outline: none;
}

.form-group input[type="radio"] {
    margin-right: 10px;
    margin: -4px 5px 0;
}

.form-group p.note {
    font-weight: bold;
    font-size: 14px;
    color: #9c7b4f;
    margin-top: 5px;
}

.form-group select {
    appearance: none;
    background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%239C7B4F" d="M2 0L0 2h4z"/></svg>')
        no-repeat right 10px center/8px 8px;
}
#dob {
    width: 100%;
    padding: 20px 30px;
    border: 1px solid #d3a87e;
    border-radius: 4px;
    font-size: 12px;
    color: #8f9090;
    letter-spacing: 3px;
}
#datepicker::placeholder {
    font-size: 14px;
}
.ui-datepicker select {
    background-color: #cccccc;
    color: #5c1919 !important;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 4px;
    letter-spacing: 3px;
    font-weight: 100 !important;
}
.ui-datepicker {
    z-index: 10000 !important;
}
.ui-datepicker {
    font-size: 14px;
    width: 20em !important;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 50% !important;
    padding: 18px;
    border-radius: 0px;
}
.ui-datepicker .ui-datepicker-header {
    padding: 5px 15px !important;
}
.ui-widget-content {
    background: #b2936d !important;
    color: #fff !important;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    background: #b2936d !important;
    color: #fff !important;
    font-family: "Montserrat";
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #fff !important;
}
.ui-widget-header {
    border: 1px solid #dddddd !important;
    background: #cccccc !important;
}
.ui-datepicker th {
    font-family: "Montserrat";
    padding: 0.7em 0.3em !important;
}
.note {
    font-size: 14px;
    color: #a57547;
    margin-top: 5px;
}

.mobile-group {
    display: flex;
    flex-direction: column;
}

.mobile-input {
    display: flex;
    gap: 10px;
}
.mobile-input select,
.mobile-input input[type="text"] {
    flex: 1;
    padding: 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    /* #beb9b9 */
    border-radius: 5px;
}
.mobile-input select {
    max-width: fit-content;
}
.permission-note {
    font-size: 16px;
    color: #555;
    margin: 15px 0;
    line-height: 1.5;
}

.captcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.captcha-container .recaptcha-placeholder {
    font-size: 1rem;
    color: #555;
}
.check-agreement {
    /* margin: auto !important; */
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

.agreement-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.agreement-group label {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.agreement-group .privacy-policy {
    color: #c55a11;
    text-decoration: none;
}

.agreement-group .privacy-policy:hover {
    text-decoration: none;
}

.submit-btn {
    display: inline-block;
    font-size: 11px;
    background-color: #b2936d;
    color: white;
    display: inline-block;
    text-align: center;
    padding: 8px;
    letter-spacing: 3px;
    font-weight: 200;
    text-transform: uppercase;
    border: 2px solid #b2936d;
    position: relative;
    border-radius: 0;
    width: 100px;
    /* display: inline-block;
    font-size: 1rem;
    background-color: #b2936d;
    color: white;
    display: inline-block;
    text-align: center;
    padding: 10px;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    border: 2px solid #b2936d;
    position: relative;
    border-radius: 0;
    width: 100px; */
}

.submit-btn:hover {
    background-color: white;
    color: #b2936d;
    text-decoration: none;
}
.sign-up-link {
    color: #000;
    text-decoration: none;
}
.sign-up-link:hover {
    color: #000;
    text-decoration: none;
}
.form-group input[type="text"]::placeholder,
.form-group input[type="date"]::placeholder,
.form-group input[type="email"]::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}
.Enquiry_Form .form-group input[type="text"]::placeholder,
.Enquiry_Form .form-group input[type="email"]::placeholder,
.Enquiry_Form .form-group input[type="tel"]::placeholder,
.Enquiry_Form .form-group textarea::placeholder {
    color: #aaa;
    font-size: 12px;
}
input,
textarea {
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    color: inherit;
}
.Enquiry_Form h5 {
    color: #b2936d;
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 400;
    text-transform: uppercase;
}
.Enquiry_Form .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.Enquiry_Form .checkbox-group label {
    cursor: pointer;
    font-size: 14px;
}

/* Services */
.services-page {
    padding: 200px 0px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

.service-heading h4 {
    /* text-align: center; */
    color: #b3995d;
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.service-contact {
    color: #b2936d;
}
.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image {
    /* text-align: center; */
}

.image-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 18px;
}

.text-icon {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.service-text {
    flex: 3;
    font-size: 14px;
    line-height: 1.6;
}
.service-text p {
    font-size: 14px;
}

.service-text ul {
    /* list-style: none; */
    padding: 0;
}

.service-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-text ul li::before {
    content: "✔";
    color: #b3995d;
    margin-right: 10px;
}

.post-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.post-content ul li::before {
    content: "✔";
    color: #b3995d;
    margin-right: 10px;
}

.icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.icon img {
    width: 150px;
    height: 150px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b2936d !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 0px !important;
}

.rambles-page {
    padding: 235px 170px 140px 170px;
    background-color: #f4f4f4;
}
.post-link {
    color: #2c3136;
}
.post-link:hover {
    text-decoration: none;
    color: #b2936d;
}
.pagination a:hover {
    color: #b08d67 !important;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
    align-items: center;
    padding-left: 150px !important;
}

.pagination a,
.pagination span {
    text-decoration: none;
    color: #b08d67;
    padding: 8px 12px;
    font-size: 16px;
}

.pagination a.active {
    background-color: #b08d67;
    color: white;
    border: none;
}

.pagination a:hover:not(.active) {
    text-decoration: none;
    /* border: 1px solid #b08d67;
    background-color: #f4f4f4; */
}

.pagination span {
    color: #aaa;
    cursor: default;
}

.blog-container {
    display: flex;
    gap: 20px;
}
.blog-details {
    display: flex; /* Use Flexbox to align the content side by side */
    justify-content: space-between; /* Space out the sections */
    gap: 30px; /* Add space between the two sections */
}

.blog-content {
    flex: 2;
}
.side-links {
    flex: 1;
}
.site-links,
.contact-info {
    padding: 5.1em 4em 5.45em 5em;
    background-color: #b2936d;
    color: white;
}
.site-links {
    color: white;
}

.site-links h5 {
    color: white;
    font-size: 18px;
}

.site-links ul {
    list-style: none;
    padding: 0;
}
.site-links ul li a {
    text-decoration: none;
    color: white;
    align-items: center;
    font-size: 12px;
}
.site-links ul li {
    margin-bottom: 0px;
}
.site-links ul li a::before {
    content: "→";
    font-size: 18px;
    color: white;
}

.hr {
    border-top: 2px solid #565a5e;
    padding: 0 -5em;
}
.contact-info {
    margin-top: -16px;
}
.site-links {
    margin-bottom: -16px;
}
.contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: none;
}
.related_posts {
    background-color: #b2936d;
    padding: 0 10px 30px;
    margin-bottom: 3em;
    width: 770px;
}

.related_posts h2 {
    color: #2c3136;
    font-size: 25px;
    font-weight: 400;
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.post:hover img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.post-overlay:hover {
    background-color: rgba(178, 147, 109, 0.3);
}
.post-overlay i {
    color: white;
    font-size: 24px;
    font-weight: 600;
}
.posto-title {
    font-size: 14px;
    color: #2c3136;
    font-weight: 400;
}
.posto-content {
    padding: 10px 10px;
    margin: 0 0 0.25em;
}
.posto-title:hover {
    color: #b2936d;
}
.add-comment .form-container {
    padding: 0px;
    width: 65%;
}
.add-comment h3 {
    margin-bottom: 1.4em;
    font-size: 3.5711em;
    line-height: 1.33em;
    font-weight: 400;
    color: #2c3136;
}
.related-posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.post:hover .post-overlay {
    opacity: 1;
}
.blog-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative; /* Added for fixed positioning context */
}

.filters {
    flex: 0 0 200px;
    position: fixed;
    top: 100px; /* Adjust this value based on your header height */
    padding: 20px 0px;
    height: fit-content;
    width: 200px;
    flex: 0 0 200px;
    position: sticky;
}
@media screen and (max-width: 768px) {
    .whiskey-container-booking {
        /* justify-content: center; */
        display: grid;
        padding: 0px;
    }

    .filters {
        position: static; /* Removes fixed/sticky positioning */
        width: 100%; /* Full width */
        padding: 10px;
        z-index: 10;
    }

    .filters select {
        width: 100%; /* Make dropdowns full-width */
        margin-bottom: 10px; /* Add spacing between selects */
    }
}
.filter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.filter-content {
    background: white;
    width: 80%;
    padding: 5px 40px;
    position: relative;
}

.close-btn1 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    color: #aaaaaa;
}

/* Mobile-Specific Styles */
@media screen and (max-width: 768px) {
    .filters {
        display: none; /* Hide fixed filters on mobile */
    }

    /* Show Filter Toggle Button on Mobile */
    .filter-toggle {
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: #b2936d;
        color: #fff;
        border: none;
        padding: 5px;
        cursor: pointer;
        font-size: 20px;
        border-radius: 1px;
        z-index: 900;
    }
}

/* Hide Toggle Button on Desktop */
@media screen and (min-width: 769px) {
    .filter-toggle {
        display: none;
    }
}

/* Add left padding to posts to prevent overlap with fixed filters */
.posts {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.filters label,
.filter-content label {
    display: block;
    margin-bottom: 5px;
}
.filter-content label {
    font-weight: 200 !important;
    font-size: 12px;
}
.filters select {
    font-size: 13px;
    height: 45px;
    max-width: 173px;
    letter-spacing: 4px;
    background-color: #f4f4f4;
    width: 100%;
    padding: 0px 22px;
    color: #8f9090;
    margin-bottom: 20px;
    border: 1px solid #e0e0e1;
}
.filter-content select {
    font-size: 10px;
    height: 45px;
    max-width: 195px;
    letter-spacing: 4px;
    width: 100%;
    padding: 0px 22px;
    /* color: #8f9090; */
    margin-bottom: 20px;
    border: 1px solid #e0e0e1;
}
.filters select:hover {
    border: 2px solid black;
}
/* .filter-content :hover */
/* .posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-top: 20px;
    
} */
.posts {
    flex: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Create exactly 3 columns */
    gap: 20px; /* Space between grid items */
}

.posts img {
    width: 100%; /* Ensure images take up full column width */
    height: auto; /* Maintain aspect ratio */
}

.postd {
    /* background: #fff; */
    /* border: 1px solid #ccc; */
    /* border-radius: 5px; */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    /* padding: 10px; */
}
.post-content h6 {
    color: #b2936d;
    font-size: 18px;
}

.postd img {
    width: 100%;
    height: auto;
    margin-bottom: 2.5em;
}

.postd-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.postd-date {
    font-size: 14px;
    color: #555;
}

.post {
    height: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
}
.post1 {
    /* height: 50vh; */
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
}
.post1 img {
    width: 100%;
    height: 180px;
}
.post img {
    width: 100%;
    height: 228px;
}

.post-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    /* height: 92px; */
}

.post-date {
    font-size: 14px;
    color: #555;
}
.postd p {
    font-size: 14px;
    text-align: justify;
}
.postd .post-date {
    margin-bottom: 2.5em;
}
/* about-page */
.about-page {
    background-color: #f4f4f4;
}
.club-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 3px 20px;
}
.club-info .description {
    text-align: justify;
    font-size: 14px;
}
.imp-description {
    font-weight: bold;
    font-size: 14px;
}
.club-info .title {
    color: #b2936d;
    font-size: 35px;
    line-height: 1.3em;
    font-weight: 400;
    border-bottom: none;
}

.media-container h2 {
    /* float: left; */
    /* font-size: 2rem; */
    color: #b2936d;
    font-size: 35px;
    line-height: 1.3em;
    font-weight: 400;
    margin-bottom: 20px;
}

/* .carousel {
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
  }
  
  .carousel-item img {
    width: 100%;
    height: auto;
  } */

/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-slide {
    margin: 0 15px;
}

.slick-slide img {
    width: 100%;
    height: 20vh;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots navigation styling */
.slick-dots {
    text-align: center;
    /* padding-top: 20px; */
    bottom: -40px;
    position: absolute;
    width: 100%;
}

.slick-dots li button {
    background-color: #bbb;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: block;
}

.slick-dots li.slick-active button {
    background-color: #000;
}

/* Styling for the customer logos section */
.customer-logos {
    position: relative;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Arrows */
/* .slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
  } */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%; /* Center vertically within the container */
    transform: translateY(-90%); /* Adjust to achieve exact centering */
    font-size: 20px;
    background: rgb(122, 122, 122);
    color: white;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 20px;
}
/* .slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    background: rgb(122 122 122);
    color: white;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    border: none; 
    width: 40px; 
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 20px; 
  } */
.slick-prev {
    left: -35px;
}

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

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots navigation styling */
.slick-dots {
    text-align: center;
    bottom: -15px;
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    background-color: white;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: block;
    border: 2px solid black;
    padding: 0;
    text-indent: -9999px; /* Hide any text inside the dot */
}

.slick-dots li.slick-active button {
    background-color: grey;
}

.customer-logos {
    padding: 20px 0px;
}
.partner-logo .customer-logos .slick-slide img {
    max-width: 100%;
    height: auto;
}
.partner-logo {
    padding: 20px;
}
.partner-logo-container .customer-logos .slick-slide img {
    max-width: 100%;
    height: auto;
}
.fancy-line-after {
    padding-bottom: 150px;
}
.fancy-line {
    border: 0;
    height: 1px;
    position: relative;
    margin: 0.5em 0;
}
.fancy-line:before {
    top: -0.5em;
    height: 1em;
}
.fancy-line:after {
    height: 0.5em;
    top: calc(-0.5em + 1px); /* adjusted this */
}

.fancy-line:before,
.fancy-line:after {
    content: "";
    position: absolute;
    width: 100%;
}

.fancy-line,
.fancy-line:before {
    background: radial-gradient(
        ellipse at center,
        #cebca6 0%,
        rgba(206, 188, 166, 0) 75%
    );
}

.profile-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile {
    width: 48%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.profile-content {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile h2 {
    color: #b2936d;
    font-size: 28px;
    margin-bottom: 10px;
}

.profile strong {
    font-weight: 700;
}

.profile img {
    max-width: 100px;
    border-radius: 50%;
}

.profile p {
    line-height: 1.6;
    margin-bottom: 10px;
}
.profile-details {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.profile-details p {
    flex: 1;
    text-align: justify;
}

.profile-content > p:last-child {
    margin-top: 20px;
}
.divider {
    width: 2px;
    background: #e0e0e0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }
    .slick-slide img {
        width: 215px;
        height: 30vh;
    }
    .slick-initialized .slick-slide {
        justify-items: center;
    }
    .club-info {
        padding: 10px 32px;
        /* margin-top: 5px; */
    }

    .club-infos {
        padding: 10px 32px;
    }
    .carousel-container h2 {
        float: none;
    }
    .carousel-slide {
        flex: 0 0 100%;
        padding: 30px;
    }
    .carousel-track-container {
        justify-items: center;
    }
    .customer-logos .slide {
        flex: 0 0 100%; /* Each slide takes full width */
    }
    .media-container h2 {
        font-size: 25px;
        padding-left: 25px;
    }

    .profile-container {
        flex-direction: column;
    }
    .profile {
        width: 100%;
        margin-bottom: 20px;
        flex-direction: column;
    }
    .club-info .title {
        font-size: 20px;
    }

    .membership-container {
        padding: 20px 32px 0px;
        text-align: justify;
    }
    .form-container {
        padding: 0px 32px;
    }
    .login-link {
        margin-top: 0px;
        font-size: 1em;
    }
    .mobile-input {
        flex-direction: column;
    }
    .title {
        font-size: 25px;
    }
}
/* LOGIN_PAGE */
.login-page {
    padding: 13.15em 0 8.1em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-wrapper h6,
.login-wrapper h3 {
    color: #b2936d;
    font-size: 18px;
    /*    margin-left: -22px;*/
}
.login-container {
    display: flex;
    justify-content: space-between;
    /* width: 1200px; */
}

.loginsection {
    border: 2px solid #ddd;
    /* width: 50%; */
    /*    padding: 20px;*/
    box-sizing: border-box;
}

.loginsection h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #a27a4d;
}

.loginsection h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

label {
    line-height: 1.5em;
    margin-bottom: 1.2em;
    margin-top: 1em;
    font-weight: bold;
    color: #434446;
    /* display: block;
    margin-bottom: 8px;
    font-weight: bold; */
}

label span {
    color: red;
}

.loginsection input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.login-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #a27a4d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.login-btn:hover {
    background-color: #8b6539;
}

.forgot-password {
    font-size: 14px;
    display: block;
    margin-top: 10px;
    color: #a27a4d;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: none;
    color: #7d7f81;
}

.reset-container {
    padding: 20px;
}

.success-message {
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 15px;
}

.success-message img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.success-message span {
    font-size: 16px;
    color: #333;
}

.instructions {
    font-size: 14px;
    color: #666;
}
.reset-container h6 {
    margin-bottom: 20px;
    color: #a47e3c;
    border-bottom: 2px solid #a47e3c;
    padding-bottom: 10px;
    text-transform: uppercase;
}
h1 {
    font-size: 24px;
    color: #a47e3c;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #a47e3c;
    padding-bottom: 10px;
}
.account-page {
    padding: 14.15em 8.1em 6.15em;
    background-color: #f4f4f4;
}
.account-container {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}
.account-menu {
    width: 29%;
}
.Browse-Products {
    display: inline-block;
    font-size: 10px;
    background-color: #b2936d;
    color: white;
    display: inline-block;
    text-align: center;
    padding: 10px 18px;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    border: 2px solid;
    position: relative;
    border-radius: 0;
}

.Browse-Products:hover {
    background-color: white;
    color: #b2936d;
    text-decoration: none;
}
.account-details {
    width: 67%;
}
.account-details p {
    font-size: 14px;
    margin-left: -21px;
}
.account-dashboard-details {
    padding-top: 50px;
}
.account-dashboard-details a {
    color: #b2936d;
    text-decoration: none;
}
.account-dashboard-details a:hover {
    color: #434446;
    text-decoration: none;
}

.account-menu ul li {
    list-style: none;
    padding: 8px;
    border: 1px solid #ccc;
    background-color: #b2936d;
}
.account-menu ul li a {
    color: white;
    font-size: 14px;
}
.account-menu ul li a:hover,
.account-menu ul li a.active {
    text-decoration: none;
    color: black;
}
.right-details {
    width: 68%;
    border-top: 3px solid #b2936d;
    padding: 1em 2em 1em 1.5em;
    /* margin: 0 0 2em; */
    color: #515151;
    list-style: none outside;
}

.address-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.address-section {
    width: 48%;
}
.address-section h6 {
    color: #b2936d;
    font-size: 18px;
    border-bottom: 1px solid #9a9a9a;
    line-height: 1.3em;
    font-weight: 400;
}
.address-header {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 35px;
    margin-left: -22px;
}
.address-header h3 {
    font-size: 26px;
    margin-top: 0;
    float: left;
    color: #2c3136;
    margin-left: 0px;
    font-weight: 400;
    margin-right: 52px;
}
.change-btn {
    background-color: #d7c7b5;
    border: none;
    padding: 9px;
    font-size: 10px;
    cursor: pointer;
    color: white;
    letter-spacing: 3px;
}

.edit-link {
    color: #b2936d;
    font-size: 14px;
    text-decoration: none;
    padding-left: 8px;
}

.address-details p {
    margin: 3px -17px;
    font-size: 14px;
}

.add-btn {
    margin-left: -16px;
    background-color: black;
    color: white;
    border: none;
    width: 90%;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    letter-spacing: 3px;
}

.add-btn:hover {
    background-color: #333;
}
fieldset {
    border: 1px solid #b2936d !important;
    padding: 15px 30px !important;
    position: relative;
}

.button {
    text-align: center;
    font-size: 10px;
    line-height: 1.3em;
    margin: 0 0 4px 0;
    font-family: Montserrat, sans-serif;
    padding: 1em 1.8em 1em 2em;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    border: 2px solid;
    position: relative;
    border-radius: 0;
    background-color: #b2936d;
    border-color: #b2936d;
    color: #fff;
}
.button:hover {
    background-color: #fff;
    color: #b2936d;
}
.right-details {
    position: relative;
}
.right-details .no-preorders:before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    display: inline-block;
    font-weight: 900;
    font-size: 1em;
    color: #b2936d;
    margin-right: 0.5em;
}
a.logout-link {
    color: #b2936d;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a.logout-link:hover {
    color: #7d7f81;
    text-decoration: none;
}

@media (max-width: 768px) {
    .account-page {
        padding: 2em 1em;
    }
    .account-menu {
        width: 100%;
    }
    .account-container {
        flex-direction: column;
    }
    .account-details {
        width: 100%;
    }
    .right-details {
        width: 100%;
    }
    .login-container {
        flex-direction: column;
        justify-content: space-between;
        width: 195%;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .account-page {
        padding: 15pm 15px;
    }
  }
  .legend{
    font-weight: bold;
    font-size: 14px;
}
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    letter-spacing: 3px;
}

.toggle-password {
    position: absolute;
    right: 0.5em;
    background: none;
    border: none;
    cursor: pointer;
}

.eye-icon {
    font-size: 1em;
}
.toggle-password:hover,
.toggle-password:active {
    border: none;
    outline: none;
}
.button:focus {
    outline: none !important;
}
.small,
small {
    /* font-style: italic; */
    font-size: 14.4px !important;
}
.form-group input[type="tel"] {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    letter-spacing: 3px;
}
.product-tabs {
    padding: 0 0 3em;
}
.tabs {
    padding: 3em 0 0;
    display: flex;
    /* border-bottom: 2px solid #8d6c43; */
}
.tabd {
    padding-left: 0;
    font-size: 1.333em;
}
.payment-terms-container p {
    font-size: 14px;
}
.payment-terms-container {
    width: 100%;
    /* max-width: 600px; */
    margin: 0 auto;
    position: relative;
}

.payment-terms {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Display only 3 lines */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/* .payment-terms.expanded {
    -webkit-line-clamp: unset;
  }
   */
#readMoreBtn,
#readLessBtn {
    margin-top: 10px;
    color: #b2936d;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background: none;
    outline: none;
}

#readMoreBtn:hover,
#readLessBtn:hover {
    color: #7d7f81;
    outline: none;
}

.tabs button {
    position: relative;
    padding: 16px;
    letter-spacing: .5px;
    font-weight: 400;
    width: 200px;
    font-size: 16px;
  }
  .tab {
    background-color:#ffffff;
    padding-left: 0;
    border: none;
    outline: none !important;
    cursor: pointer;
    text-align: center;
    padding: 10px;
}

.tab.active {
    background-color: #b2936d;
    color: #ffffff;
}

.tab-content {
    display: none;
    padding: 3.2em 2.9em 1.6em;
    border: 1px solid #8d6c43;
    background-color: #ffffff;
}

.tab-content.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table td {
    padding: 5px 10px;
    font-size: 14px;
}

/*  ul {
    padding-left: 20px;
  }*/

ul li {
    margin-bottom: 5px;
}
.img-zoom-container {
    position: relative;
    display: flex;
}
.img-zoom-container img {
    width: 100%;
}
.img-zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    width: 150px;
    height: 150px;
}

.img-zoom-result {
    width: 300px;
    height: 300px;
    position: absolute;
    z-index: 1000;
}
.content-left {
    position: relative;
    z-index: 1;
}
.product-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-main {
    flex: 1;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    border-radius: 5px;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
}

.product-details-left {
    flex: 1;
    padding: 20px;
    border-radius: 5px;
}

.product-details-left h1 {
    font-size: 40px;
    font-weight: 600 !important;
    text-transform: inherit;
    font-family: "Montserrat" !important;
    margin-bottom: 30px !important;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #b2936d;
    margin-bottom: 2em;
}

.price span {
    color: #b2936d;
}

.product-size {
    display: flex;
    margin-bottom: 20px;
}

.product-size label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.product-size select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.note {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.retailers h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.retailer {
    display: block;
    margin-bottom: 10px;
}

.retailer input {
    margin-right: 10px;
}

.retailer span {
    /* font-weight: bold; */

    display: block;
    color: #956223 !important;
    font-weight: 300 !important;
    font-size: 16px;
}
.retailer span:hover {
    color: #7d7f81 !important;
}

.retailer small {
    display: block;
    font-size: 12px;
    color: #666;
}
.buy_quantity .add-to-cart-container {
    width: 100px;
}
.buy_quantity .add-to-cart-container .quantity-input {
    border: none;
}
.add-to-cart-container {
    display: flex;
    gap: 10px;
    margin-bottom: 2.8em;
    width: 600px;
}
.add-to-cart-container > * {
    flex: 1;
}

.tabd {
    padding-left: 0;
    font-size: 1.333em;
}
.tabd button {
    position: relative;
    padding: 20px;
    letter-spacing: 0.5px;
    font-weight: 400;
    width: 200px;
}
.tab-contentd {
    padding: 20px;
    border: 2px solid #8d6c43;
    background-color: #fff;
}
.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
}

#quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 14px;
    padding: 5px;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quantity-btn {
    background-color: #b2936d;
    border: none;
    padding: 5px 8px;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

.quantity-btn:hover {
    background-color: black;
}

/* Buttons */
.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.add-to-cart {
    border: 1px solid #b2936d;
    background-color: #b2936d;
    color: white;
    font-size: 0.8571em;
    padding: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.content-left .notes {
    margin-top: 100px;
}
.add-to-cart:hover {
    background-color: white !important;
    color: #b2936d;
}

.buy-now {
    background-color: #007bff;
    color: white;
}

.buy-now:hover {
    background-color: #0056b3;
}
.product-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
}

/* Thumbnail Slider */
.thumbnail-slider {
    display: flex;
    gap: 10px;
    margin-bottom: 3.9em !important;
}
.thumbnail-slider img {
    width: 100px !important;
    height: 100px !important;
    border: none !important;
}
.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: border 0.3s, transform 0.3s;
}
/*  */

.thumbnail.active {
    opacity: 1;
    cursor: pointer;
}
.thumbnail.inactive {
    filter: blur(1px);
    opacity: 0.6;
}

.thumbnail.blur {
    filter: blur(5px);
}

/* Image Box */
.image-box {
    width: 471.4px;
    height: 471.4px;
    display: table-cell;
    color: rgb(204, 204, 204);
    font-size: 12px;
    padding: 3px;
    /* position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 8px; */
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: crosshair;
    border: 2px solid rgb(221 221 221);
}

.zoom-overlay {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #000;
    display: none;
    pointer-events: none;
}

/* Content Section */
/* .content-section {
    width: 400px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    position: relative;
  } */
.content-section {
    position: relative;
    width: 667px;
    margin: 0 auto;
    text-align: left;
}
/* Details Box */
.details-box {
    display: block;
}
.details-box h1 {
    font-size: 40px;
    font-weight: 700 !important;
    text-transform: inherit;
    font-family: "Montserrat" !important;
    margin-bottom: 30px !important;
    color: #2c3136;
    border-bottom: none;
    line-height: 1.3em;
}
.details-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.product-size label {
    font-weight: bold;
    margin-right: 10px;
}

.product-size select {
    padding: 5px;
    /* font-size: 1rem; */
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Note Section */
.note {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #555;
}

/* Retailer Section */
.retailers h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.retailer {
    display: flex;
    margin-bottom: 10px;
}
.retailer small {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

/* Zoom Display */
.zoom-display {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border: 1px solid #ccc;
    background-repeat: no-repeat;
    background-size: 200% 200%;
    z-index: 10;
    pointer-events: none;
    /* width: 100%;
    height: 300px;
    overflow: hidden;
    display: none;
    position: relative;
    border-radius: 8px; */
}

.zoom-display img {
    position: absolute;
    transform-origin: top left;
}
.related_products .whiskey-container-booking {
    padding: 0px;
}
.related_products h2 {
    margin-bottom: 1.4em;
    font-size: 49.9px;
    color: #2c3136;
    font-weight: 400;
    text-transform: uppercase;
}
.Enquiry_Form {
    padding: 50px 0px;
}
.checkout th,
.checkout td {
    border-left: none;
    border-right: none;
}

.checkout th {
    font-size: 20px;
    font-weight: 500;
    background-color: #b2936d;
    color: white;
    padding: 10px;
    text-align: left;
}
/* .checkout td, .checkout th {
      padding: 2em;
    }
     */
.checkout td {
    padding: 20px;
    text-align: left;
}
table.checkout {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e4e7e8;
}
.checkout tr:nth-child(even) {
    background-color: #f2f2f2;
}
.check-out-product-name {
    font-size: 19.9px;
    font-weight: lighter;
    color: #2c3136;
}
.check-out-product-name:hover {
    text-decoration: none;
    color: #b2936d;
}

.checkout td img {
    width: 75px;
    /* height: 50px; */
    margin-right: 20px;
}

.product-container {
    display: flex;
    align-items: center;
}
.deselect-btn {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: #b2936d;
    background: none;
    border: none;
}

.deselect-btn:hover {
    color: #333;
    outline: none;
    border: none;
}
/* .deselect-btn {
      background-color: #fff;
      color: #000;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s ease;
      display: block;
      font-size: 20px;
      width: 1em;
      text-align: center;
      line-height: 1;
      text-decoration: none;
      font-weight: 400;
      border: 0;
    }
    
    .deselect-btn:hover {
      color: darkred;
    } */

.billing-details-container,
.shipping-details-container {
    width: 100%;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
}
.name-group {
    display: flex;
    justify-content: space-between; /* Space between the fields */
    gap: 20px; /* Add gap between fields */
}
/* Main billing details container */
.shipping-details {
    display: none;
}
.billing-details {
    display: none;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.billing-details h3,
.shipping-details h3 {
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
}
.membership-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}
/* 
  .submit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .submit-btn:hover {
    background-color: #45a049;
  } */

.billing-details-header,
.shipping-details-header {
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow {
    font-size: 1.2em;
    color: #fff;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.billing-details-form,
.shipping-form {
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.billing-form,
.shipping-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.billing-form input,
.shipping-from input {
    padding: 8px;
    margin-top: 5px;
    width: 100%;
    /* max-width: 300px; */
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form_option_billing,
.form_option_shipping {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 15px;
    font-size: 15px;
    display: inline-block;
    margin: 15px 0;
    cursor: pointer;
    line-height: 1.5;
    max-width: 325px;
    border: 2px solid #b2936d;
}

.panel-heading {
    color: #ffffff !important;
    background-color: #b2936d !important;
    border-color: #ddd;
    height: 55px;
    padding: 20px;
}

.checkbox-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}
.checkbox-checkmark {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 2px solid #b2936d;
    display: inline-block;
    position: relative;
    background: #fff;
    transition: background-color 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-checkmark {
    background-color: #b2936d;
}

.checkbox-container
    input[type="checkbox"]:checked
    + .checkbox-checkmark::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.cart-add-message.active {
    border-top: 3px solid #8c6b4f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cart-message,
.cart-add-message {
    display: none;
    padding: 10px;
    margin-top: 10px;
}
.cart-buttons .shopping-btn {
    margin-right: 0px;
}

.cart-buttons .shopping-btn:last-child {
    margin-left: -4px;
}

.cart-message.active {
    display: block;
    border-top: 3px solid #8c6b4f;
    padding-top: 10px;
    margin-top: 10px;
    background-color: #f9f9f9;
}
.product-message {
    display: flex; /* Enables flexbox for alignment */
    justify-content: space-between; /* Text on the left, button on the right */
    align-items: center;
    font-size: 14px;
    /* display: block; */
    border-top: 3px solid #8c6b4f;
    margin-bottom: 35px;
    background-color: #f9f9f9;
}
.product-message .product-name {
    padding: 0px 40px;
}
.order-summary {
    margin: 20px auto;
    /* border: 1px solid #e0e0e0;
      border-radius: 5px;
      padding: 20px; */
}

.order-summary h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c3136;
    text-transform: uppercase;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.order-table th,
.order-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
    font-weight: 400;
}
.order-table tbody tr td.s_right {
    padding-left: 500px;
    font-weight: 400;
    font-size: 12px;
}

.s_total {
    color: #b2936d;
}
.privacy-link {
    color: #b2936d;
}
.privacy-link:hover {
    color: #434446;
    text-decoration: none;
}
.order-table th {
    background-color: #f5f5f5;
}

.order-table .text-right {
    text-align: right;
}

.payment-section {
    display: flex;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.payment-section h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.payment-section p {
    font-size: 14px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.terms-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    /* padding: 1em; */
}
.terms {
    font-size: 14px;
    margin: 15px 0;
}

.terms input {
    margin-right: 10px;
}
.order-container {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
}

.place-order-btn {
    background-color: #b2936d;
    color: white;
    border: 2px solid #b2936d;
    padding: 10px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
}

.place-order-btn:hover {
    background-color: #fff;
    color: #b2936d;
}

.checkout th,
.checkout td {
    border-left: none;
    border-right: none;
}
.buy-now-btns {
    text-align: right !important;
}

.privacy_heading {
    color: #2c3136;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
}

.cart-section {
    margin: 30px auto;
    width: 90%;
    max-width: 1200px;
}

/* Cart Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table thead th {
    background: #b58d67;
    color: white;
    text-align: left;
    padding: 10px;
}

.cart-table tbody td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Product Details */
.product-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-img {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.remove-item {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

/* .quantity-input {
    width: 60px;
    text-align: center;
  } */

/* Update Cart Button */
.update-cart-btn {
    background: #b2936d;
    color: white;
    border: 2px solid #b2936d;
    padding: 10px 20px;
    letter-spacing: 3px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 20px;
    outline: none;
}

.update-cart-btn:disabled {
    background: #d9c8b2;
    cursor: not-allowed;
    border: 2px solid #b2936d;
}

/* .cart-box {
    width: 35%;
    position: relative;
    top: 20px;
    left: 670px;
    padding: 20px;
  } */
.cart-container1 {
    display: flex;
    justify-content: flex-end; /* Moves .cart-box to the right */
    width: 100%;
    margin-right: 0px;
}

.cart-box {
    width: 35%;
    max-width: 400px;
    position: relative;
    top: 20px;
}

/* .cart-box {
    width: 35%;
    max-width: 400px;
    position: relative;
    top: 20px;
    right: 20px; 
    padding: 20px;
} */
.cart-totals {
    border: 1px solid rgb(0 0 0 / 10%);
}
.cart-box h2 {
    font-size: 20px;
    color: #2c3136;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400;
}

.cart-totals table {
    width: 100%;
    margin-bottom: 20px;
}
.cart-totals table td {
    font-weight: lighter;
    color: #b2936d;
}
.cart-totals table th {
    font-weight: 400;
    color: #434446;
    padding: 8px;
    text-align: center;
}
.cart-totals table td strong {
    font-size: 14px;
    font-weight: bold;
    color: #b2936d;
}
.cart-totals table tr:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.checkout-btn {
    letter-spacing: 3px;
    background: #b58d67;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

table.checkout td.buy_price,
table.checkout td.buy_subtotal {
    color: #b2936d;
    font-size: 1.4285em;
    font-weight: 400;
}

/* General Styles */
body {
    font-family: "Montserrat", sans-serif !important;
    margin: 0;
    padding: 0;
}

/* Review Section */
.review-section {
    /* max-width: 600px; */
    margin: 0 auto;
    padding: 20px;
}

/* Title */
.review-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;
}

.review-details {
    font-size: 14px;
}

.review-status {
    color: #888;
    font-style: italic;
}

.review-rating {
    font-weight: bold;
}

/* Review Text */
.review-text {
    margin-bottom: 20px;
}

/* Add a Review */
.add-review h3 {
    margin-top: 30px;
    font-size: 20px;
}

.add-review label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.add-review label span {
    color: red;
}

.rating {
    font-size: 20px;
    color: #ccc;
    margin: 5px 0 15px;
}

/* Textarea */
#review {
    width: 100%;
    height: 120px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    resize: none;
}

/* Submit Button */
/* .submit-btn {
    background-color: #c19a6b;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
  } */

.login-notice {
    border-top: 3px solid #1e85be;
    position: relative;
    padding: 1em 1.5em 1em 3em;
    margin: 1em 0;
}

.login-notice p {
    margin: 0;
    /* position: relative; */
}

.login-cont::before {
    font-family: "WooCommerce";
    content: "\e028";
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 1.5em;
    font-size: 1.2em;
    color: #1e85be;
    font-weight: normal;
    font-style: normal;
}

.login-cont a {
    color: #b2936d;
    text-decoration: underline;
  }
  
  .login-cont a:hover {
    color: #515151; 
  }
  
  
  
  
  
  
  
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }
  .drawer {
    position: fixed;
    top: 190px;
    left: -100%;
    width: 250px;
    height: 100%;
    background-color: #b2936d;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
}

.drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.close-drawer {
    font-size: 24px;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.drawer-links a {
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}
.bil-heading {
    color: black !important;
    font-size: 40px !important;
    line-height: 1.33em;
    font-weight: 400;
    /* margin-top: 1.65em; */
    margin-bottom: 1.3em;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .whiskey-container-booking .card {
        width: auto;
    }
    .about-page {
        padding: 32px;
    }
    .order-table th,
    .order-table td {
        font-size: 8px;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: black !important;
        background-image: none !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 51%;
        width: 35px !important;
        height: 35px !important;
        transform: translate(11%, -50%);
    }
    .drawer {
        position: fixed;
        top: 190px;
        left: -100%;
        width: 250px;
        height: 100%;
        background-color: #b2936d;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease-in-out;
        z-index: 1000;
    }

    .drawer.active {
        left: 0;
    }

    .drawer-header {
        display: flex;
        justify-content: flex-end;
        padding: 10px;
    }

    .close-drawer {
        font-size: 24px;
        cursor: pointer;
    }

    .drawer-links {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .drawer-links a {
        text-decoration: none;
        color: #333;
        padding: 10px 0;
    }
    .header.scrolled .mobile-header {
        opacity: 0;
        visibility: hidden;
        height: 0;
    }
    .header {
        padding: 0px;
        position: relative;
    }
    .desktop-header {
        display: block;
    }

    .mobile-header {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
    #scali{
      display: none;
    }
    .login-section {
        margin: 0px auto;
        /* width: 255px; */
        flex-direction: column-reverse;
        gap: 0px;
        height: 30px;
        /* float: right;
      margin-right: 20px; */
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: rgb(23 26 28 / 90%);
        padding: 10px 20px;
        border-radius: 5px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
    .logo img {
        height: 45px;
        margin-top: -28px;
        left: 30px;
    }
    .middle-container{
      float:right;
      text-align: right;
      margin-top: 2em;
      /* margin-bottom: 1.4em; */
      padding: 1px;
      background-color: rgb(23 26 28 / 60%);
    }
    .logo-menu-container {
        display: flex;
        background-color: #2c3136;
        align-items: center;
        padding: 0px 50px;
    }
    .cart-container {
        float: right;
        position: relative;
        justify-content: space-between;
        flex-direction: row-reverse;
        width: 106px;
    }
    .cart-icon,
    .cart-details {
        padding: 5px;
    }

    .cart-details .cost {
        display: none;
    }

    .logo {
        width: 60px;
    }
    .nav-toggle {
        order: 2;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        right: 42px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 10px;
    }

    .search {
        display: none;
    }
    .social-icons {
        margin-left: 3em;
        margin-right: 2em;
        float: none;
        clear: both;
        /* width: 100%; */
        text-align: center;
        margin: 0.5em 0 0 0;
        line-height: 1em;
    }
    .banner-image {
        margin-bottom: 10px;
    }

    .about-description h1 {
        font-size: 20px;
    }
    .about-description {
        padding: 40px 30px;
    }
    .about-description p {
        font-size: 14px;
    }
    .about-content {
        position: absolute;
        top: 140%;
        transform: translateY(467%);
        padding: 5px 8px;
        border-radius: 5px;
    }

    .profile-content.about_cont {
        display: flex !important;
    }
    .carousel-inner img {
        margin-top: 0px;
        max-height: 50vh;
        height: 20vh;
    }
    .service-card {
        padding: 0px 20px;
    }
    .content-container {
        display: grid;
        grid-template-columns: 1fr;
    }
    .left-section {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .whiskey-container .card {
        width: 300px;
    }
    .left-section .card {
        width: auto;
    }
    .membership-card {
        width: auto;
    }
    .membership-section .membership-card {
        width: 50%;
    }
    .loginsection {
        width: 50%;
    }
    .whiskey-container {
        padding: 10px;
    }
    .merchandise-section {
        padding: 10px;
    }

    .video-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card h3::before {
        width: 290px;
    }
    .load-more-btn,
    .subscribe-btn {
        padding: 9px;
    }
    .footer {
        padding: 20px 50px;
    }
    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }
    .footer-bottom {
        padding: 10px;
        flex-direction: column-reverse;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
    .footer-column:nth-child(3) {
        grid-column: span 2;
    }
    .footer-column:nth-child(2) ul {
        margin-top: 52px;
    }
    .heading h4 {
        font-weight: 400;
        font-size: 22px;
        color: #b2936d;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .merchandise-section-heading h3 {
        font-size: 33px;
    }
    .text p {
        font-size: 11px;
        margin: 0px;
    }
    .whisky-moments-section {
        padding: 35px;
    }
    .moments-heading h1 {
        color: #c4a484;
        font-weight: 400;
    }
    .moments-heading h2 {
        letter-spacing: 7.5px;
    }
    .image img {
        width: 100%;
        /* border-radius: 8px; */
    }
    .text-icon {
        flex-direction: column;
        align-items: center;
    }
    .blog-container {
        flex-direction: column;
        padding: 20px;
    }
    .filters {
        margin-bottom: 20px;
    }
    .posts {
        grid-template-columns: 1fr;
    }
    .membership-page {
        padding-top: 0px;
    }
    .services-page {
        padding: 10px 32px;
    }
    .service-heading h4 {
        font-size: 1.5em;
    }
    .product-wrapper {
        flex-direction: column;
    }
    .content-section {
        width: 290px;
    }
    .image-box {
        width: 278.4px;
        height: 278.4px;
    }
    .add-to-cart-container {
        flex-direction: column;
        width: 290px;
    }
    .related-posts-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .related_posts {
        width: 100%;
    }
    .rambles-page {
        padding: 10px 32px;
    }
    .add-comment h3 {
        font-size: 1.5711em;
    }
    .blog-details {
        flex-direction: column;
    }
    .add-comment .form-container {
        padding: 0px;
        width: 100%;
    }
    table.checkout {
        width: 100%;
        border-collapse: collapse;
        border: 1px solid #e4e7e8;
    }

    table.checkout th {
        padding: 10px;
        text-align: left;
        border: 1px solid #e4e7e8;
    }

    table.checkout td {
        padding: 10px;
        border: 1px solid #e4e7e8;
    }
    .checkout thead {
        display: none;
    }

    .checkout td {
        display: block;
        /* text-align: right; */
        position: relative;
        /* padding-left: 50%; */
    }

    .checkout td:before {
        content: attr(data-label);
        position: relative;
        left: 0;
        padding-left: 10px;
        text-align: left;
        font-weight: bold;
    }
    .checkout td {
        padding: 9px;
    }
    .checkout td.buy_img {
        display: none;
    }
    .buy-now-btn {
        width: 100%;
    }
    .buy-now-btn {
        font-size: 12px;
        padding: 1em 1.8em 1em 2em;
        letter-spacing: 5px;
        background-color: #b38b5d;
        color: white;
        cursor: pointer;
        margin-top: 10px;
        transition: background-color 0.3s;
        border: 2px solid #b38b5d;
        text-transform: uppercase;
    }

    table.checkout td.buy_price::before {
        content: "Price: ";
        font-weight: bold;
        color: #b2936d;
    }
    table.checkout td.buy_quantity::before {
        content: "Quantity: ";
        font-weight: bold;
    }

    table.checkout td.buy_subtotal::before {
        content: "Subtotal: ";
        font-weight: bold;
    }
    table.checkout td.buy_product::before {
        content: "Product:";
        font-weight: bold;
    }
    .cart-table thead {
        display: none;
    }
    .cart-table tbody tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }
    .product-details {
        flex-direction: column;
        text-align: center;
    }
    .cart-totals table th,
    .cart-totals table td {
        display: block;
        text-align: right;
    }
    .cart-box {
        left: 0;
        width: 100%;
    }
    .cart-totals table tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .cart-totals table th {
        width: 50%;
        text-align: left;
        font-weight: bold;
    }

    .cart-totals table td {
        width: 50%;
        text-align: right;
    }
    .order-table tbody tr td.s_right {
        padding-left: 10px;
    }
    .modalbill-content {
        width: 80%;
    }
    .details-box h1 {
        /* margin-top: 83px; */
    }
    .details-box h1 {
        font-size: 20px;
    }
    .tab-content {
        padding: 10px;
    }
    .form-container {
        flex-direction: column;
    }
    .profile-details {
        flex-direction: column;
        align-items: center;
    }
    .add-btn {
        width: 100% !important;
        margin-left: 1px;
    }
    .form-group-row {
        flex-direction: column;
    }
    .payment-section {
        flex-direction: column;
    }
    .cart-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* width: 100%; */
        margin-right: 100px;
    }

    .cart-dropdown {
        position: fixed;
        top: 60px; /* Adjust to header height if necessary */
        right: 0;
        /* width: 100%; */
        max-height: 70%;
        border-radius: 0;
        z-index: 1000;
        top: 127px !important;
    }
}

/* .popup-alert-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 320px;
    animation: fadeInUp 0.5s ease-out;
}

.popup-alert {
    background-color: #fff;
    color: #b2936d;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: bold;
    background-color: #000;
    color: #fff;
}

.popup-body {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
} */
.popup-alert-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    /* width: 320px; */
    animation: fadeInUp 0.5s ease-out;
}

.popup-alert {
    background-color: #fff;
    color: #b2936d;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    background-color: #b2936d;
    color: #fff;
}

.popup-body {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #000;
}

.close-btn1 {
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.hidden {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.alert-container {
    position: fixed;
    top: 181px;
    left: 160px;
    z-index: 1000;
    width: fit-content;
}

.alert {
    background-color: #b2936d !important;
    color: #fff !important;
    border-color: #b2936d !important;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    animation: slideLeft 0.5s ease-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.alert-success {
    font-weight: 200;
    font-size: 16px;
}
.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.post-image {
    width: 100%;
    display: block;
}

/* Hide Prev & Next buttons initially */
.prev-post,
.next-post {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(166, 124, 82, 0.9); /* Matching the brownish color */
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: width 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    opacity: 0; /* Initially hidden */
}

/* Positioning */
.prev-post {
    left: 10px;
}

.next-post {
    right: 10px;
}

/* Arrows */
.arrow {
    font-size: 24px;
    font-weight: bold;
}

/* Hover effect: Expand to show text */
.prev-post .hover-text,
.next-post .hover-text {
    display: none;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 200;
    text-align: left;
    text-decoration: none;
    color: #fff;
}

/* Show buttons when hovering over the image container */
.image-container:hover .prev-post,
.image-container:hover .next-post {
    opacity: 1; /* Make buttons visible */
}

/* Expand button and show text on hover */
.prev-post:hover,
.next-post:hover {
    width: auto;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
}

.prev-post:hover .hover-text,
.next-post:hover .hover-text {
    display: block;
    margin-left: 10px;
    text-decoration: none;
    color: #fff;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.close-cart-btn {
    border: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 5px;
    z-index: 10;
    line-height: 1;
    width: 17px;
    background: none;
    color: white;
    padding: 20px;
    margin-bottom: 7px;
}
.close-cart-btn:hover {
    border: none;
    outline: none;
}
.desktop-header.scrolled .cart-dropdown {
    top: calc(100% - 10px);
    width: 281px;
    right: 140px;
}
@media screen and (max-width: 768px) {
    .desktop-header.scrolled .cart-dropdown {
        right: 0px; /* Mobile position */
    }
}
.invoice-btn {
    background-color: #b2936d;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 10px;
    border: none;
}
.invoice-btn:hover {
    background-color: #b2936d;
    color: white;
    text-decoration: none;
}
@media (max-width: 768px) {
    .invoice-btn {
        display: block;
        width: 80%;
        text-align: center;
        margin-bottom: 5px; /* Adds spacing between buttons */
    }
    .address-container {
        flex-direction: column;
    }
    .address-section {
        width: 100%;
    }
}

@media screen and (max-width: 1067px) and (min-width: 768px) {
    .desktop-header .nav-links {
        display: none;
    }

    .desktop-header .nav-toggle {
        display: block;
    }
    .sidenav {
        z-index: 1002;
        top: 0px;
    }
    .cart-container {
        display: flex;
    }
    .social-icons {
        display: none;
    }
    .login-section {
        display: none;
    }
}

@media screen and (max-width: 1067px) and (min-width: 768px) {
    .cart-container {
        display: none !important;
    }

    .header {
        padding: 0px;
    }

    .top-bar {
        padding: 60px !important;
    }
    .header,
    .top-bar {
        background: rgb(23 26 28 / 43%);
    }
    .carousel-inner img {
        margin-top: 140px;
    }
    .logo img {
        margin-top: -70px;
    }
    .header {
        /* position: relative; */
    }
}

@media screen and (max-width: 767px) {
    /* .desktop-header .nav-links {
      display: block; 
  } */
    .social-icons,
    .login-section {
        display: flex; /* Keep these if needed on mobile */
    }
}

/* @media screen and (max-width: 1400px) and (min-resolution: 120dpi) {
    .desktop-header .nav-links {
        display: none;
    }

    .desktop-header .nav-toggle {
        display: block;
    }
 

.desktop-header .nav-toggle {
    display: none;
    cursor: pointer;
}
} */
@media (max-width: 1400px) {
    .top-bar {
        /* display: none; */
        padding: 15px 40px;
    }
}

@media (max-width: 1300px) {
    .top-bar {
        padding: 15px 20px;
    }
}
.name-group {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .name-group {
        flex-direction: column;
    }
    .popup-alert-container {
        width: 320px;
    }
}
/* .services-section{
    padding:50px 60px;
  }
.services-section {
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  margin: 0 auto;
}
.service-card {
  display: flex;
  background-color: #fdfbfa;
  border-radius: 16px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 800px;
  padding: 10px;
  align-items: center;
  gap: 20px;
}

.service-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-content {
  text-align: left;
  flex: 1;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.service-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 400;
}

.more-btn {
  background-color: #b58c57;
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
}

.more-btn:hover {
  background-color: #a0763e;
}

@media (max-width: 600px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-content {
    text-align: center;
  }
} */
.services-section {
    padding: 70px 90px;
    text-align: center;
    background-color: #fff;
}

.section-title {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 500;
}
.services-grid.center-row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    max-width: 1800px;
    margin: 0 auto 40px;
    box-sizing: border-box;
}

.services-grid.center-row1 > .service-card:nth-child(1),
.services-grid.center-row1 > .service-card:nth-child(2),
.services-grid.center-row1 > .service-card:nth-child(3) {
    justify-self: center;
}

.services-grid.center-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}
.center-row1 {
    margin-bottom: 40px;
}
.service-card {
    background: #fdfbfa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    display: flex;
    width: 100%;
    max-width: 420px;
    padding: 20px;
    align-items: center;
    gap: 40px;
}

.service-card img {
    width: 110px;
    height: auto;
    flex-shrink: 0;
}

.service-content {
    text-align: left;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.service-content p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #000;
    font-weight: 500;
    /* text-align: center; */
}

.more-btn {
    padding: 8px 20px;
    background-color: #b48a5a;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    display: inline-block;
    font-size: 14px;
}

.more-btn:hover {
    background-color: #9c7141;
}

.prebooking-section {
    text-align: center;
    padding: 70px 90px;
}

.subheading {
    color: #b0894d;
    font-size: 20px;
    margin-bottom: 5px;
}

.main-heading {
    font-size: 36px;
    margin-bottom: 40px;
}

.whisky-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 1325px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 1400px) {
    .whisky-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1000px) {
    .whisky-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .whisky-grid {
        grid-template-columns: 1fr;
    }
}

.whisky-card {
    width: 100%;
    height: 385px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-front {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Main Image */
.card-front img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1;
    border-radius: 20px 20px 0 0;
}

/* Product Title under Image */
.whisky-name {
    background-color: #b2936d;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 15px;
    text-align: center;
    width: 100%;
    text-decoration: none;
    border-radius: 0 0 20px 20px;
    flex-shrink: 0;
}

.whisky-name:hover {
    background-color: #a1783c;
    color: #212529;
    text-decoration: none;
}

/* Back Card Content */
.card-back {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgb(245 241 235 / 90%),
        rgb(245 241 235 / 80%)
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: bottom 0.4s ease;
    z-index: 2;
}

.whisky-card:hover .card-back {
    bottom: 0;
}

/* Overlay icons */
.bookings-closed {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 80px;
    height: auto;
    z-index: 10;
}

.card-content1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content1 h6 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card-content1 p {
    margin: 5px 0;
    font-weight: bold;
    font-size: 16px;
    color: #b2936d;
    margin-bottom: 0px;
}

.pre-book-btn {
    background-color: #b0894d;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.merch-section {
    padding: 70px 90px;
    text-align: center;
    background-color: #fff;
}

@media (max-width: 1024px) {
    .merch-section {
        padding: 70px 40px;
    }
}

@media (max-width: 600px) {
    .merch-section {
        padding: 70px 20px;
    }
}

.merch-title {
    font-size: 32px;
    color: #1d1d1d;
    margin-bottom: 40px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 1325px;
    margin: 0 auto;
    box-sizing: border-box;
}

.merch-card {
    background: linear-gradient(to top, #d2b48c 0%, #f5f5f5 40%, white 50%);
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    width: 100%; /* Fill its grid cell fully */
    overflow: hidden;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    padding: 0;
}

@media (max-width: 1400px) {
    .merch-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1000px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .merch-grid {
        grid-template-columns: 1fr;
    }
}

.image-wrapper1 {
    padding: 30px;
    width: 100%;
    position: relative;
}

.image-wrapper1 img:first-child {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.merch-card img {
    /* width: 100%; */
    height: 240px;
    object-fit: contain;
    display: block;
}

.merch-name {
    padding: 0px 0px 30px 0px;
}

.merch-name a {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

.merch-name a:hover {
    font-size: 20px;
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.merch-card.dark-bg {
    background: linear-gradient(to top, #333 0%, #999 40%, white 50%);
}
.merch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.merch-card-wrapper {
    perspective: 1000px;
    width: 100%;
}

.merch-card {
    width: 100%;
    height: 340px;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
}

/* .merch-card:hover .card-inner {
  transform: rotateX(180deg);
} */

.card-front1,
.card-back1 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    /* backface-visibility: hidden; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-front1 {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #d2b48c 0%, #f5f5f5 40%, white 50%);
    border-radius: 16px;
    z-index: 1;
}

.dark-bg .card-front1 {
    background: linear-gradient(to top, #333 0%, #999 40%, white 50%);
}

.card-back1 {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgb(245 241 235 / 90%),
        rgb(245 241 235 / 80%)
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: bottom 0.4s ease;
    z-index: 2;
}

.merch-card:hover .card-back1 {
    bottom: 0;
}

.card-back1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    z-index: -1;
}

.card-back1 h6 {
    font-size: 20px;
    /* font-weight: bold; */
    margin-bottom: 10px;
    color: #222;
}

.card-back1 p {
    font-weight: bold;
    font-size: 16px;
    color: #b2936d;
    margin: 5px 0;
}

.explore-btn-container {
    margin-top: 40px;
}

.explore-btn {
    background-color: #b0894d;
    color: white;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.explore-btn .arrow {
    margin-left: 10px;
}
.bookings-closed1 {
    position: absolute;
    top: -77px;
    right: 8px;
    width: 80px;
    height: auto;
    z-index: 10;
}
.register-section {
    background: linear-gradient(to right, #2d2d2d, #8b6b3f);
    padding: 60px 110px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.register-text {
    font-size: 40px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .services-grid.center-row1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .about-banner {
        padding: 20px;
    }
    .button-text-more,
    .button-text {
        font-size: 12px;
    }
    .services-section {
        padding: 20px;
    }

    .section-title {
        margin-top: 30px;
        font-size: 25px;
        margin-bottom: 30px;
    }

    .services-grid {
        justify-content: center;
        gap: 20px;
    }
    .center-row1 {
        margin-bottom: 20px;
    }
    .service-card {
        flex-direction: row;
        align-items: center;
        text-align: center;
        gap: 20px;
        max-width: 100%;
    }

    .service-card img {
        width: 80px;
    }

    .service-content {
        text-align: center;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 13px;
    }

    .more-btn {
        font-size: 13px;
        padding: 6px 16px;
    }
    .prebooking-section {
        padding: 20px;
    }
    .main-heading {
        font-size: 25px;
    }
    .merch-section {
        padding: 20px;
    }
    .merch-title {
        font-size: 25px;
    }
    .register-section {
        padding: 20px;
    }
    .register-text {
        font-size: 20px;
        font-weight: bold;
    }
    .blog {
        padding: 20px;
    }
}
