/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Root Var */
:root {

  /* Root Theme Color */
  --theme-color: #000000;
  /* --theme-color-second: green; */
  --theme-color-third: #000;

  /* Root Font */
  --heading-font: 'head-font';
  --paragraph-font: "Urbanist", sans-serif;
  --span-font: 'spanist';

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 15px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

/* Font Face */
@font-face {
  font-family: "";
  src: url();
}

@font-face {
  font-family: "";
  src: url();
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: "Libre Franklin", sans-serif;
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 15px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #f5be4d;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
}

.hd_info a img {
  margin: 0 24px 0 10px;
}

a.comon-btn {
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 19px 36px;
  border-radius: 5px;
  background-color: rgb(245, 190, 77);
  color: rgb(0, 0, 0);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 48px;
}

a.comon-btn:hover {
  background: #121212;
  color: #fff;
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.sticky-top-1 {
  background: #fff !important;
  z-index: 9999999999999;
  transition: all 0.3s ease;
}

.sticky-top-1.sticky .navbar-brand img {
  width: 90px;

}


/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: rgb(245, 190, 77);
}

a.navbar-brand img {
  width: 200px;
  margin-bottom: -127px;
  position: relative;
  z-index: 1111;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.8s ease-in-out;
  border-radius: 50%;
}

.header_menu li a {
  color: rgb(22, 22, 22);
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

/* banner Section 1 */
.banner_sec {
  padding: 220px 0 90px;
  background-position: bottom !important;
}

.banner_sec p {
  font-size: 23px;
  line-height: 1.5;
  font-weight: 400;
}

/* Home SECtion 2 */
.home_sec1 h2 {
  font-size: 44px;
  color: rgb(245, 190, 77);
  line-height: 1.4;
  font-weight: 500;
}

.home_sec1 p {
  font-size: 17px;
  /* color: rgb(145, 145, 145); */
  font-weight: 400;
  line-height: 1.5;
}

.home_sec1 h3 {
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.25;
  font-weight: 400;
  /* color: rgb(0, 0, 0); */
}

/* Home SECtion 2*/
.home_sec2 h2 {
  font-size: 44px;
  color: rgb(245, 190, 77);
  line-height: 1.4;
  font-weight: 500;
}

.home_sec2 p {
  font-size: 21px;
  color: rgb(145, 145, 145);
  font-weight: 400;
  line-height: 1.5;
}

.home_sec2 h3 {
  font-size: 32px;
  color: rgb(245, 190, 77);
  margin-bottom: 24px;
  line-height: 1.25;
  font-weight: 400;
}

.home_sec2 img {
  border-radius: 50%;
  margin-bottom: 25px;
}

/* Home SECtion 3*/
.home_sec3 h2 {
  font-size: 62px;
  color: rgb(245, 190, 77);
  line-height: 1.4;
  font-weight: 400;
}

/* Home SECtion 4*/
.home_sec4 h2 {
  font-size: 62px;
  color: rgb(245, 190, 77);
  line-height: 1.4;
  font-weight: 500;
}

.home_sec4 p {
  font-size: 21px;
  color: rgb(145, 145, 145);
  font-weight: 400;
  line-height: 1.5;
}

/* ************* */
.contact-section {
  background: #000;
  color: rgb(245, 190, 77);
  text-align: center;
}

/* .contact-section .contact-section {
  padding: 40px 20px;
  position: relative;
} */

.contact-section .contact-title {
  font-size: 44px;
  margin-bottom: 40px;
}

.contact-section .contact-title {
  font-size: 32px;
  font-size: 44px;
  margin-bottom: 40px;
}

.contact-section .contact-subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  font-size: 44px;
}

.contact-section .contact-desc {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 15px;
  line-height: 1.5;
  color: #ccc;
  font-size: 16px;
  color: rgb(145, 145, 145);
}

.contact-section .brand-name {
  margin: 30px 0;
  line-height: 1.25;
  color: rgb(245, 190, 77);
  margin-bottom: 24px;
  font-size: 44px;
}

/* Button */
.contact-section .cta-btn {
  display: inline-block;
  margin: 20px 0 40px;
  padding: 18px 40px;
  background: #f5b933;
  color: #000;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  background-color: rgb(245, 190, 77);
  margin-bottom: 0;
}

.contact-section .cta-btn:hover {
  background: #d9a32d;
}

/* *************** */
/* Footer wrapper */
footer {
  background: #000;
  color: #fff;
  position: relative;
  text-align: center;
  padding: 40px 0 80px;
  /* extra bottom padding for powered by */
}

/* Website link */
footer a {
  color: #f5be4d;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 40px;
  display: inline-block;

}

footer a:hover {
  text-decoration: underline;
}

/* Brand */
.footer-brand {
  font-weight: bold;
  margin: 10px 0 20px;
  font-size: 16px;
  color: #fff;
  padding-bottom: 24px;
}

/* Copyright */
.footer-copy {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}

/* Powered by */
.footer-powered {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-powered img {
  height: 20px;
}

/* **************** */

/* Blog Page */
#bg-blue .blog-box a p {
  color: #fff;
  margin-bottom: 5px !important;
  font-size: 15px;
}

#bg-blue .blog-box a h5 {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

#bg-blue .read-btn {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}



/* ******Inner Blog**** */

#inner_blog_form {
  background: none;
  padding: 10px 0 0 0;
  border-radius: 0;
}

#inner_blog_form input {
  width: 100%;
  padding: 10px;
  outline: none;
}

#inner_blog_form textarea {
  width: 100%;
  padding: 10px;
  outline: none;
}

#inner_blog_form button {
  background: #f5be4d;
  color: #000;
  font-size: 16px;
  display: inline-block;
  padding: 14px 0px;
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
  width: 14rem;
  border: none;
  transition: all 0.8s;
}

#inner_blog_form button:hover {
  background: #fff;
  color: #000;
  transition: all 0.8s;
}

.blog-sec .fott-content a {
  color: #fff;
  line-height: 24px;
}

.blog-sec .area_side_bar ul li a {
  color: #fff;
  font-size: 15px;
}

.blog-sec .area_side_bar ul li {
  margin-bottom: 12px;
}


.search_bar .form-control {
  display: inline-block;
  width: 70%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #5F656F;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search_bar .form-inline {
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-control:focus {
  color: #5F656F;
  background-color: #fff;
  border-color: #B7B7B7;
  outline: 0;
  box-shadow: none;
}

.btn-outline-success {
  color: #000;
  border-color: #f5be4d;
  background: #f5be4d;
}

.btn-outline-success:hover {
  color: #fff;
  border-color: #1e2124;
  background: #1e2124;
}

.btn-check:focus+.btn-outline-success,
.btn-outline-success:focus {
  box-shadow: none;
}

.search_bar {
  padding-bottom: 26px;
}

/* ******************** */
.care-section {
  background: #000;
  color: #f5b933;
  line-height: 1.6;
}

.care-section .care-title {
  font-size: 55px;
  margin-bottom: 40px;
  font-weight: 500;
}

.care-section h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #f5b933;
}

.care-section h4 {
  font-size: 21px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.care-section p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 15px;
}

.care-section ul {
  list-style: disc;
  padding-left: 40px;
  color: #ccc;
}

.care-section li {
  margin-bottom: 8px;
}

.care-section .caution {
  color: #ff5c33;
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
}

.care-section .footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}



/* get-in-touch */

.get-in-touch a {
  color: #fff;
}

.get-in-touch input[type="text"] {
  border: none;
  padding: 15px;
  background-color: transparent;
  color: #fff;
  width: 100%;
  border-radius: 6px;
  border: 1px solid;
}

.get-in-touch textarea {
  border: none;
  padding: 15px;
  background-color: transparent;
  color: #fff;
  width: 100%;
  border-radius: 6px;
  height: 135px;
  border: 1px solid;
}

.get-in-touch input[type="submit"] {
  border: none;
  padding: 14px;
  background-color: #f5be4d;
  color: #000;
  width: 100%;
  border-radius: 6px;
  text-transform: uppercase;
  border-radius: 7px;
}

/* ************* */
.performance-section {
  background-size: cover;
  background-position: center;
  padding: 180px 0 80px;
  color: #fff;
  position: relative;
}

.performance-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay for readability */
}

.performance-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.performance-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.performance-section .intro {
  font-size: 1.2rem;
  /* line-height: 1.6; */
  margin-bottom: 15px;
}

.performance-section .intro li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.performance-section .tagline {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 30px;
  background: #fff;
  color: #000;
  width: 205px;
  line-height: 1.3;
  padding: 20px 20px;
  border: 4px solid #f5be4d;
  border-radius: 30px;
  position: relative;
}

.performance-section .tagline::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  background: #fff;
  color: #000;
  border: 4px solid #f5be4d;
  bottom: -40px;
  transform: rotate(-45deg);
  z-index: -1;
}

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

.performance-list li {
  margin-bottom: 25px;
}

.performance-list h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.4;
}

.read-more-btn {
  display: inline-block;
  background: #f5be4d;
  color: #000;
  padding: 12px 0;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: 190px;
  text-align: center;
}

.read-more-btn:hover {
  background: #fff;
}

/* *********** */
.vino-difference {
  padding: 80px 20px;
  background: #fff;
  color: #222;
}

.vino-difference .container {
  max-width: 1100px;
  margin: 0 auto;
}

.vino-difference h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.vino-difference .tagline {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #444;
}

.vino-difference h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1c1c1c;
}

.pillars-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.pillars-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.savings-quote {
  border-left: 5px solid #f5be4d;
  background: #ffffff36;
  padding: 18px 20px;
  margin-bottom: 30px;
  font-style: italic;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 0 40px 0 40px;
}

.vino-how {
  padding: 80px 20px;
  background: #f9fafb;
  color: #222;
}

.vino-how .container {
  max-width: 1100px;
  margin: 0 auto;
}

.vino-how h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.vino-how .tagline {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: #444;
}

.features-list {
  margin: 0 0 35px 20px;
  list-style: disc;
}

.features-list li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1rem;
}

.vino-how h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1c1c1c;
}

.vino-how .sub {
  font-weight: 400;
  font-size: 1rem;
  color: #666;
}

.product-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: -40px;
}

.range-block h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #222;
  font-weight: 600;
}

.range-block ul {
  list-style: circle;
  margin-left: 20px;
}

.range-block li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.vino-shift {
  background: #ffffff;
  color: #222;
  text-align: center;
}

.vino-shift h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.vino-shift .tagline {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 25px;
  color: #444;
}

.vino-shift p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.vino-shift .report-note {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-bottom: 25px;
}

.vino-proof {
  background: #f9fafb;
  color: #222;
  text-align: center;
}



.vino-proof h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.vino-proof .tagline {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #444;
}

.proof-list {
  list-style: disc;
  text-align: left;
  display: inline-block;
  margin: 0 0 0px 20px;
}

.proof-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}



.cta-text {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #1c1c1c;
}



.closing-line {
  font-size: 1rem;
  font-style: italic;
  color: #444;
  margin-top: 25px;
}

/* ********* */

.vino-small-lots h2 {
  color: #f4b23c;
}

.vino-small-lots h2 {
  font-size: 44px;
  color: rgb(245, 190, 77);
  line-height: 1.1;
  font-weight: 500;
}

.vino-small-lots .intro {
  font-size: 18px;
  color: #1f1f1f;
  line-height: 1.8;
}

.vino-small-lots p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.vino-small-lots strong {
  color: #000;
}

.vino-small-lots .perfect-for {
  text-align: left;
  display: inline-block;
  margin: 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 0 0;
  border-radius: 10px;
}

.vino-small-lots .perfect-for h4 {
  color: #f4b23c;
  margin-bottom: 15px;
}

.vino-small-lots ul {
  list-style: none;
  padding: 0;
}

.vino-small-lots ul li {
  position: relative;
  font-size: 17px;
  color: #1f1f1f;
  margin-bottom: 10px;
  padding-left: 25px;
}

.vino-small-lots ul li::before {
  content: "•";
  color: #f4b23c;
  position: absolute;
  left: 0;
  top: 0;
}

.vino-small-lots .highlight {
  font-size: 22px;
  color: #1f1f1f;
  margin-bottom: 22px;
  font-weight: 700;
}

.btn-gold {
  display: inline-block;
  background: #f5be4d;
  color: #000;
  padding: 12px 35px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
}

.btn-gold:hover {
  background: #d89e2f;
  color: #1f1f1f;
}

/* .vino-small-lots {
  background: #f3f3f3;
} */

#home_sec3 .read-more-btn:hover {
  background: #000;
  color: #fff;
}

.vino-performance {
  position: relative;
}

.vino-performance .performance-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vino-performance h2 {
  color: #000;
  margin: 0;
}

.vino-performance .vpt-logo-box {
  width: 90px;
  height: 90px;
  background: #f4b23c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vino-performance .vpt-logo-box img {
  width: 60px;
  height: auto;
}

.vino-performance .pull-quote-box {
  background: #fff;
  border-left: 5px solid #f4b23c;
  max-width: 850px;
  margin: 0 auto 50px auto;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  font-style: italic;
  color: #444;
  line-height: 1.6;
}

.vino-performance .product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.vino-performance .product-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vino-performance .product-gallery img:hover {
  transform: scale(1.05);
}

/* *********** */
.vino-range {
  background: #000;
  color: #fff;
}

.vino-range .section-heading {
  margin-bottom: 60px;
}

.vino-range .section-heading h2 {
  margin-bottom: 10px;
  line-height: 1.3;
}

.vino-range .section-heading span {
  color: #c49b3e;
}

.vino-range .section-heading p {
  font-size: 16px;
}

.vino-range .range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

.vino-range .range-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 35px 30px;
  transition: transform 0.3s ease;
}

.vino-range .range-box:hover {
  transform: translateY(-5px);
}

.vino-range .range-title {
  background: #c49b3e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: inline-block;
}

.vino-range .range-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vino-range .range-box li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.vino-range .range-box li strong {
  color: #000000;
}

.vino-range .cta-btn .comon-btn {
  background: #c49b3e;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.vino-range .cta-btn .comon-btn:hover {
  background: #a7852e;
}

/* **** */
.vino-compare .section-heading {
  margin-bottom: 60px;
}

.vino-compare .section-heading h2 {
  color: #000;
  margin-bottom: 8px;
}

.vino-compare .section-heading p {
  color: #666;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
}

.compare-box {
  background: #fff;
  border-radius: 14px;
  padding: 40px 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.compare-box:hover {
  transform: translateY(-5px);
}

.compare-box.before {
  border-top: 6px solid #f5be4d;
}

.compare-box.after {
  border-top: 6px solid #F5BE4D;
}

.compare-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.compare-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.compare-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
  color: #444;
}

.compare-list li::before {
  content: "•";
  color: #c49b3e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pull-quote {
  background: #f8f5f0;
  border-left: 4px solid #c49b3e;
  padding: 15px 20px;
  font-style: italic;
  color: #222;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 8px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.comon-btn {
  text-decoration: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.comon-btn.gold {
  background: #c49b3e;
  color: #fff;
}

.comon-btn.gold:hover {
  background: #a7852e;
}

.comon-btn.outline {
  border: 2px solid #c49b3e;
  color: #c49b3e;
  background: transparent;
}

.comon-btn.outline:hover {
  background: #c49b3e;
  color: #fff;
}

.read-more-btn2 {
  background: #f5be4d !important;
  color: #000 !important;
  width: 230px;
}

.read-more-btn2:hover {
  background: #000000 !important;
  color: #ffffff !important;

}

/* ********** */
.vino-blog {
  background: #faf9f6;
  padding: 100px 20px;
}

.vino-blog .quote-box {
  background: #141515;
  color: #fff;
  font-style: italic;
  font-size: 18px;
  border-left: 5px solid #c49b3e;
  border-radius: 6px;
  padding: 20px 30px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vino-blog .section-heading h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
}

.vino-blog .section-heading p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  align-items: start;
  gap: 40px;
}

.blog-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #c49b3e;
  margin-top: 30px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.blog-content ul li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: #333;
  line-height: 1.6;
}

.blog-content ul li::before {
  content: "•";
  color: #c49b3e;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.comon-btn.gold {
  background: #c49b3e;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.comon-btn.gold:hover {
  background: #a37e2e;
}

/* ****** */
.vino-faq h2 {
  color: #c49b3e;
  margin-bottom: 10px;
}

.vino-faq .subhead {
  color: #ddd;
  font-size: 16px;
  margin-bottom: 8px;
  font-style: italic;
}

.vino-faq .lead {
  color: #bbb;
  font-size: 17px;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.faq-question i {
  color: #c49b3e;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-question:hover {
  color: #c49b3e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p, .faq-answer ul {
  color: #ddd;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer ul {
  list-style: disc;
  margin-left: 20px;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding-top: 12px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.closing-note {
  border: none;
  text-align: center;
  padding-top: 50px;
}

.faq-item.closing-note p {
  color: #ccc;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
}

/* ***** */
.comic-bubble {
  position: relative;
  background: rgb(245, 190, 77);
  /* light yellow fill */
  border: 4px solid rgb(245, 190, 77);
  /* dark gray border */
  border-radius: 20px;
  padding: 16px 20px;
  width: 240px;
  color: #111;
  font-size: 16px;
  line-height: 1.4;
}

.comic-bubble::before {
  content: "";
  position: absolute;
  bottom: -77px;
  left: 37px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top-color: rgb(245, 190, 77);
  transform: rotate(20deg);
}

.comic-bubble p {
  margin-bottom: 0;
  font-weight: 600;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

/* ******* */
.home_sec1 .read-more-btn:hover {
  background: #000;
  color: #fff;
}

/* ******* */
.comic-bubble2::before {
  content: "";
  position: absolute;
  bottom: -17px;
  right: -3px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top-color: rgb(245, 190, 77);
  transform: rotate(-140deg);
}

.comic-bubble2 {
  position: relative;
  background: rgb(245, 190, 77);
  /* light yellow fill */
  border: 4px solid rgb(245, 190, 77);
  /* dark gray border */
  border-radius: 20px;
  padding: 16px 20px;
  width: 350px;
  color: #111;
  font-size: 16px;
  line-height: 1.4;
}

.comic-bubble2 p {
  margin-bottom: 0;
  font-weight: 600;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.performance-section .intro i {
  font-size: 9px;
}

.top-language-bar {
	background: #f8f8f8;
	padding: 6px 0;
	font-size: 14px;
}

.top-language-bar .gtranslate_wrapper {
    display: inline-block; /* ensures proper centering */
}

