:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #2f3138;
  --heading-color: #0e1b4d;
  --accent-color: #333;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: rgba(255, 255, 255, 0.65);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #f82249;
}

.light-background {
  --background-color: #f2f2f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000820;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #001553;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.order-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.order-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.order-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.order-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: order-form-loading 1s linear infinite;
}

@keyframes order-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 144px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  color: #fff;
  font-size: 18px;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #000000;
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}
.bpt {
  background: url(../img/b.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bdpt {
  background: url(../img/bd.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.opt {
  background: url(../img/o.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title:before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-section h2 {
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  text-transform: uppercase;
  border: 1px solid #fff;
  display: inline-flex;
  padding: 6px 13px;
  color: var(--background-color);
}

.hero-section h1 {
  font-weight: 600;
  font-style: normal;
  font-size: 50px;
  /* text-transform: uppercase; */
  margin: 20px 0px 16px 0px;
  color: var(--background-color);
}

.hero-section p {
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  /* text-transform: uppercase; */
}

.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.541);
  z-index: 1;
}

.hero-section .content {
  position: relative;
  z-index: 2;
  color: var(--surface-color);
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15px;
}

.hero-section .buttons {
  margin-top: 30px;
}

.hero-section .buttons a {
  display: inline-block;
  background: var(--background-color);
  border: 1px solid #fff;
  color: #000000;
  padding: 12px 48px;
  margin: 5px;
  text-decoration: none;
  transition: border 0.3s, color 0.3s;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0px;
}

.hero-section .buttons a:hover {
  border: 1px solid #000000;
}
.hero-section .buttons:focus {
  border: 1px solid #000000;
}

header {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  position: absolute;
}
header img {
  height: 110px;
}

@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 40px;
    margin: 20px 0px 16px 0px;
  }

  .hero-section p {
    font-size: 18px;
  }
  .hero-section .buttons {
    margin-top: 28px;
  }
  .hero-section .buttons a {
    padding: 12px 48px;
    margin: 5px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0px;
  }
  header {
    padding-top: 19px;
  }
  header img {
    height: 90px;
  }
}

@media (max-width: 900px) {
  .hero-section h1 {
    font-size: 30px;
    margin: 12px 0px 14px 0px;
  }

  .hero-section p {
    font-size: 16px;
  }
  .hero-section .buttons {
    margin-top: 28px;
  }
  .hero-section .buttons a {
    padding: 12px 48px;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px;
  }
  .hero-section h2 {
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;
    border: 1px solid #fff;
    display: inline-flex;
    padding: 6px 13px;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section p {
    font-size: 14px;
  }
  .hero-section .buttons {
    margin-top: 28px;
  }
  .hero-section .buttons a {
    padding: 11px 46px;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px;
  }
  header {
    padding-top: 17px;
  }
  header img {
    height: 70px;
  }
}

@media (max-width: 417px) {
  .hero-section .buttons a {
    padding: 11px 46px;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px;
    width: 100%;
  }
}
.product-content {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.product-card {
  background-color: var(--accent-color);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  min-height: 250px;
}

.product-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 550;
  color: var(--background-color);
}

.product-content p {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: var(--background-color);
  font-weight: 400;
  text-align: right;
  margin-top: 1rem;
}

.product-content a.btn {
  background: var(--background-color);
  color: var(--default-color);
  border: none;
  padding: 7px;
  padding-bottom: 10px;
  padding-top: 12px;
}

.product-content a.btn:hover {
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 20%
  );
}
.product-description {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.33rem;
  color: var(--background-color);
}

.product-description i {
  color: var(--background-color);
  font-size: 1.2rem;
}

.product-image {
  width: 100%;
  aspect-ratio: 10 / 6.5;
}
.pro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.quan {
  font-size: 20px;
}
/* .product-card {
  background-color: #f3f5f9;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  min-height: 250px;
}

@media (min-width: 992px) {
  .product-card {
    flex-direction: row;
  }

  .product-image {
    flex: 0 0 47%;
  }

  .product-content {
    flex: 1;
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 20px;
}

.product-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 550;
  color: var(--heading-color);
}

.product-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 500;
}

.product-content a.btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 7px;
  padding-bottom: 10px;
}

.product-content a.btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

@media (min-width: 992px) {
  .product-card {
    height: 250px;
  }
}

@media (max-width: 991px) {
  .product-image {
    max-height: 350px;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .product-image {
    max-height: 300px;
    overflow: hidden;
  }
}

@media (max-width: 500px) {
  .product-image {
    max-height: 270px;
    overflow: hidden;
  }
}
@media (max-width: 400px) {
  .product-image {
    max-height: 230px;
    overflow: hidden;
  }
}
.product-description {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.product-description i {
  color: green;
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .cus-gap {
    gap: 40px;
  }
}

/*--------------------------------------------------------------
# about-us Section
--------------------------------------------------------------*/
.about-us {
  background-color: #f2f2f3;
}

.about-us .about {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-us .about .about-info {
  position: absolute;
  padding: 15px 0;
  inset: auto 0 -44px 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.4s;
}

.about-us .about .about-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}

.about-us .about .about-info-content h4 a {
  color: var(--contrast-color);
}

.about-us .about .about-info-content h4 a:hover {
  color: var(--accent-color);
}

.about-us .about .about-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.about-us .about .social {
  text-align: center;
  padding-top: 10px;
}

.about-us .about .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 4px;
  display: inline-block;
}

.about-us .about .social a:hover {
  color: var(--default-color);
}

.about-us .about .social i {
  font-size: 18px;
  margin: 0 2px;
}

.about-us .about:hover .about-info {
  bottom: 0;
}

/*--------------------------------------------------------------
# blogs Section
--------------------------------------------------------------*/
.blogs .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.blogs .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
  height: 400px !important;
}

.blogs .card .card-img img {
  transition: 0.3s ease-in-out;
}

.blogs .card h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.blogs .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.blogs .card a:hover {
  color: var(--accent-color);
}

.blogs .card .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

.blogs .card .stars i {
  color: #ffc107;
}

.blogs .card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
  font-size: 15px;
}

.blogs .card:hover .card-img img {
  transform: scale(1.1);
}
.blogs .cus-p {
  height: 46px;
  overflow: hidden;
}
.blogs .cus-h {
  height: 26px;
  overflow: hidden;
}
.blog-img-container {
  width: 100%;
  aspect-ratio: 10 / 6; /* width : height ratio */
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio and crops if needed */
  object-position: center;
  display: block;
}
@media (max-width: 1200px) {
  .blog-img-container {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .blog-img-container {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.order .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.order .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.order .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.order .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.order .order-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 0px 30px 30px 30px;
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
}
.order .order-form h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media (max-width: 1300px) {
  .order .order-form {
    padding: 15px !important;
    padding-top: 0px !important;
  }
}

.order .order-form input[type="text"],
.order .order-form input[type="email"],
.order .order-form input[type="tel"],
.order .order-form select,
.quantity-btn,
.delivery-btn,
.order .order-form textarea {
  font-size: 14px;
  padding: 11px 15px;
  box-shadow: none;
  border-radius: 5px;
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.quantity-btn {
  padding: 11px 0px;
}
#dropzone {
  border-color: color-mix(
    in srgb,
    var(--default-color),
    transparent 50%
  ) !important;
}

.order .order-form input[type="text"],
.order .order-form input[type="email"],
.order .order-form input[type="tel"],
.order .order-form textarea {
  color: var(--default-color);
}

.order .order-form input[type="text"]:focus,
.order .order-form input[type="email"]:focus,
.order .order-form input[type="tel"]:focus,
.order .order-form select:focus,
.quantity-btn,
.delivery-btn,
.con-btn,
.order .order-form textarea:focus {
  border-color: var(--accent-color);
}

.order .order-form input[type="text"]::placeholder,
.order .order-form input[type="email"]::placeholder,
.order .order-form input[type="tel"]::placeholder,
.order .order-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* .order .order-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.order .order-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
} */

.order .order-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 5px;
  width: 100%;
  margin-top: 30px;
}

.order .order-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-color);
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: var(--heading-color);
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--heading-color);
}

#contact .contact-info a {
  color: var(--heading-color);
}

#contact .contact-info a:hover {
  color: var(--accent-color);
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: var(--accent-color);
  display: none;
  border: 1px solid var(--accent-color);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: var(--accent-color);
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  font-size: 14px;
  padding: 11px 15px;
  box-shadow: none;
  border-radius: 5px;
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

#contact .form input,
#contact .form textarea {
  color: var(--default-color);
}

#contact .form input:focus,
#contact .form textarea:focus {
  border-color: var(--accent-color);
}

#contact .form input::placeholder,
#contact .form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.con-btn,
#contact .form button[type="submit"] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 40px;
  color: var(--surface-color);
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}
.con-btn:hover,
#contact .form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid;
    border-right: 1px solid;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
}

.footer {
  color: var(--background-color);
  background-color: var(--accent-color);
  font-size: 14px;
  position: relative;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}
.footer .credits a {
  color: var(--contrast-color);
}
.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--background-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .social-links .or-a {
  width: 160px;
}
.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}

.z-index {
  z-index: 4000;
}

.quantity-btn.selected {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--background-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: none !important;
}
.delivery-btn.active {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--background-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: none !important;
}
.order .order-form button[type="submit"] {
  box-shadow: none !important;
}
.easy {
  display: flex;
  justify-content: baseline;
  align-items: baseline;
  flex-direction: row;

  height: auto;
  width: 100%;
  width: auto;
  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  padding: 20px;
  background-color: #f2f2f3;

  border-color: color-mix(
    in srgb,
    var(--default-color),
    transparent 50%
  ) !important;
  margin: 20px 0px;
}

.order-img-container {
  /* width: 100%; */
  aspect-ratio: 10 / 6; /* width : height ratio */
  overflow: hidden;
}
.order-img-container-lg {
  /* width: 100%; */
  aspect-ratio: 10 / 10; /* width : height ratio */
  overflow: hidden;
  padding: 0px 15px;
}

.order-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.indebtn {
  width: 100%;
  height: 45px;
  font-size: 24px;
  padding: 0px;
  box-shadow: none !important;
  background: var(--background-color);
}
.quantity-btn {
  background: var(--background-color);
}
.cus-mar {
  margin-top: 50px;
}

@media (max-width: 989px) {
  .cus-mar {
    margin-top: 30px;
  }
}
.not-found {
  font-size: 20px;
  margin-bottom: 58px;
}
.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  margin-bottom: 58px;
  max-width: 600px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  border-radius: 50px;
  overflow: hidden;
  background: var(--surface-color);
  transition: all 0.3s ease-in-out;
}

.search-form input {
  font-size: 16px;
  padding: 12px 18px;
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--default-color);
}

.search-form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.search-form input:focus::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.search-form button {
  background: var(--accent-color);

  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
}

.search-form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.05);
}

.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  animation: shake 0.3s ease;
}

.is-valid {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.toast {
  background: #fff !important;
  border-radius: 10px;
  border-left: 12px solid transparent;
  padding: 0.75rem 1rem;
  animation: fadeInUp 0.5s ease forwards;
  min-width: 280px;
}

/* Border colors based on message type */
.border-success {
  border-left-color: #28a745 !important; /* green */
}
.border-danger {
  border-left-color: #dc3545 !important; /* red */
}
.border-warning {
  border-left-color: #ffc107 !important; /* yellow */
}
.border-info {
  border-left-color: #17a2b8 !important; /* blue */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.subtdi {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0px 15px;
}
.rsubcon {
  display: flex;
  flex-direction: row;
}
.rsubcon span {
  margin-right: 6px;
}
.rsubcon p {
  margin-bottom: 10px;
}
.main-div-f {
  background-color: #f8f8f8;
  margin: 25px;
  border-radius: 17px;
  padding: 15px 0px;
  margin-bottom: 30px !important;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.rou-img {
  border-radius: 15px 0px 0px 15px !important;
}

@media (max-width: 1399px) {
  .main-div-f {
    margin: 0px;
  }
}
.iti {
  width: 100% !important;
}

.iti input {
  width: 100% !important;
  box-sizing: border-box; /* include padding */
}
@media (max-width: 767px) {
  .main-div-f {
    padding: 8px 0px;
  }
  .order-img-container-lg {
    aspect-ratio: 8 / 10; /* width : height ratio */
    overflow: hidden;
    padding: 0px 8px;
  }
  .subtdi {
    padding: 0px 8px;
  }
}
@media (max-width: 567px) {
  .order-img-container-lg {
    aspect-ratio: 10 / 6; /* width : height ratio */
    overflow: hidden;
  }
  .subtdi {
    padding: 20px;
    padding-top: 25px;
  }
  .rou-img {
    border-radius: 15px 15px 0px 0px !important;
  }
  .mmb {
    margin-bottom: 18px;
  }
}
