body {
  font-family: var(--body-font);
  color: var(--primary-color);
}


p {
  margin-bottom: unset;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  width: 100%;
  max-width: 100%;
}

button:focus {
  box-shadow: unset;
  outline: none;
}

.mobile-text {
  display: none;
}

.inner-container {
  margin-left: 40px;
  margin-right: 40px;
}

.btn-primary-custom {
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: var(--radius-md);
  padding: 15px 40px;
  border: none;
  font-size: 18px;
  transition: 0.3s ease;
  letter-spacing: 1px;
}

.btn-primary-custom:hover {
  background: var(--secondary-color);
  color: #fff;
}
.home-master-container {
    display: flex;
    flex-direction: column;
}
/* header */
.navbar-toggler:focus {
  box-shadow: unset;
}
input#liveSearch {
    padding-right: unset;
}

.main-header {
  border-bottom: 1px solid #0000000f;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 9999;
}

.site-logo {
  width: 11%;
  margin-right: 10px;
}

.header-right-section i {
  color: var(--primary-color);
}

i.user-icon {
  font-size: 30px;
}

i.cart-icon {
  font-size: 25px;
}

.navbar-collapse {
  border-left: 1px solid #0000000f;
}

.nav-link {
  font-weight: 400;
  color: var(--primary-color);
  transition: 0.3s;
}

.nav-link:hover {
  border-bottom: 3px solid;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link.active {
  border-bottom: 3px solid;
  font-weight: 700;
}

.search-box input {
  border-radius: var(--radius-md);
  padding: 6px 15px;
}

.hero-section {
  /* min-height: 335px; */
  display: flex;
  align-items: center;
  margin-top: 25px;
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 56px;
}

.hero-section {
  background-image: var(--desktop-banner);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content h1 {
  font-family: var(--heading-font-italic);
  font-size: 42px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: 1px;
  line-height: 50px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 35px;
  margin-top: 10px;
  line-height: 28px;
  color: var(--para-color);
}

.hero-category li {
  display: flex;
  gap: 10px;
  background: #ffffff8c;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 15px;
  align-items: center;
  justify-content: center;
}

.hero-category li img {
  width: 35px;
}

.hero-category li span {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-category ul {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  max-width: 1200px;
  margin-bottom: unset;
  flex-wrap: wrap;
}

.combo-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font-italic);
}

.view-all {
  font-weight: 500;
  text-decoration: underline;
}

.cake-card {
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cake-img img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.cake-body {
  padding: 15px;
}

.cake-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 26px;
}

.price {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
}

.rating i {
  color: #f4b400;
  font-size: 14px;
  margin-right: 2px;
}

.weight {
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 6px;
  font-size: 16px;
  border: 1px solid;
  border-color: var(--primary-color);
}

.btn-cart {
  background: var(--bg-color);
  color: var(--text-color);
  border: none;
  padding: 7px 35px;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.btn-cart:hover {
  background: var(--secondary-color);
}

.video-wrapper img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.video-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  height: 350px;
}

.video-thumbnail {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button i {
  font-size: 60px;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  /* padding: 20px; */
  border-radius: 50%;
  transition: 0.3s ease;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}

.play-button i:hover {
  transform: scale(1.1);
}

.video-player {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.main-footer {
  font-size: 14px;
}

.footer-top a {
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.divider {
  color: #bbb;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}

.footer-bottom-section img {
  border-radius: 10px;
}

.newsletter-section {
  border-radius: 10px;
  position: relative;
  margin-top: 40px;
}

.newsletter-section .container {
  padding: 20px;
}

.newsletter-content h2 {
  margin-bottom: 5px;
}

.newsletter-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--para-color);
}

.newsletter-form input::placeholder {
  color: var(--primary-color);
}
input#liveSearch::placeholder {
  color: var(--primary-color);
}
.newsletter-form input {
  border-radius: 30px 0 0 30px;
  border: 1px solid #ddd;
  padding: 10px 20px;
}

.btn-subscribe {
  background: var(--bg-color);
  color: var(--text-color);
  border: none;
  padding: 10px 25px;
  border-radius: 0 30px 30px 0;
  transition: 0.3s;
  display: flex;
  gap: 10px;
}

.btn-subscribe:hover {
  background: var(--secondary-color);
}

.newsletter-form {
  max-height: 50px;
}


.location-wrapper {
  background: #eae1e2d1;
  border-radius: 9px;
  padding: 0px 10px;
  border: 1px solid #eae1e2d1;
}

.location-select {
  gap: 8px;
  padding: 6px 12px;
  border-right: 1px solid #ddd;
  cursor: pointer;
}

.location-select i {
  color: var(--primary-color);
  font-size: 16px;
}

.location-select span {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
}

.location-search {
  padding: 6px 12px;
  cursor: pointer;
}

.location-search i {
  font-size: 16px;
  color: #555;
}

.search-wrapper {
  display: flex;
  align-items: center;
  background: #eae1e2d1;
  border: 1px solid #eae1e2d1;
  border-radius: 10px;
  padding: 2px 15px;
  width: 200px;
  margin-left: 13px;
}

.search-wrapper input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 14px;
  padding-left: 8px;
  color: var(--text-dark);
}

.search-wrapper input::placeholder {
  color: #999;
}

.search-icon {
  font-size: 16px;
  color: #777;
}

.title-header {
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-divider {
  flex: 1;
  height: 2px;
  background: #0000000f;
}

.heading-sub-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  font-family: var(--heading-font);
  color: var(--heading-color);

}


.success-icon {
  font-size: 60px;
  color: #28a745;
}

.order-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.product-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.product-item img {
  width: 70px;
  border-radius: 8px;
  margin-right: 15px;
}

.product-info h6 {
  margin: 0;
  font-weight: 600;
}

.product-price {
  margin-left: auto;
  font-weight: 600;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-row.total {
  font-weight: 700;
  font-size: 18px;
}

.pro-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

form {
  margin-bottom: unset;
}

/* ============================== Product category listing ===============  */

.category-banner {
  background-image: var(--desktop-banner);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 15px 40px;
  min-height: 315px;
  margin-top: 25px;
}

.category-banner .banner-content {
  margin-top: 50px;
}

.category-banner h1 {
  font-family: var(--heading-font);
  font-size: 45px;
  font-weight: 600;
  line-height: 52px;
}

.category-banner p {
  font-size: 20px;
  line-height: 26px;
  padding-top: 20px;
  color: var(--para-color);
}

.common-breadcrumb {
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-filter-listing {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.filter-container {
  width: 20%;
}

.productlisting-container {
  width: 80%;
}

.category-productlisting {
  margin-top: 0px;
}

.category-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.category-title-divider {
  flex: 1;
}

.filter-sidebar {
  background: #e9e0e1;
  border-radius: 10px;
}

#filterAccordion {
  padding: 15px;
}

.filter-title {
  font-weight: 600;
  padding: 10px 15px;
  border-bottom: 1px solid #0000000f;
  font-size: 22px;
  line-height: 28px;
}

.accordion-item .accordion-body {
  padding: 10px 0;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #0000000f;
}

.accordion-button {
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  padding: 15px 0;
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--primary-color);
}

.accordion-body label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.price-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-inputs span {
  font-weight: 600;
}

.price-inputs input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.product-listing .accordion-body {
  padding: 20px 0 0 0;
}

.show-more {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

input#priceSlider {
  width: 100%;
}

input[type="range"] {
  accent-color: var(--bg-color);
}

.cake-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}

.add-cart-btn {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
}

button.btn-load-more {
  font-size: 18px;
  border: 1px solid #38261f;
  background: unset;
  padding: 7px 30px;
  border-radius: 8px;
  line-height: 26px;
  margin-top: 20px;
}

button.btn-load-more:hover {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* product details page css */
.product-gallery .main-image img {
  width: 100%;
  border-radius: 12px;
}

.thumbnail-images {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

section.product-detail-section {
  margin-top: 25px;
}

/* .thumbnail-images img,
.video-thumb {
  width: 114px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
} */

.thumb.active {
  border-color: #6b3f2e;
}

.video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  font-size: 18px;
}

.product-info {
  padding-left: 15px;
}

.product-info h1 {
  font-family: var(--heading-font);
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
}

.price-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price {
  font-size: 25px;
  font-weight: 700;
}

.rating i {
  color: #f4b400;
  font-size: 14px;
}

.review {
  font-size: 14px;
  margin-left: 5px;
  color: #777;
}

.weight-options {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.weight-options button {
  padding: 6px 20px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
}

.weight-options button.active {
  background: #6b3f2e;
  color: #fff;
}

.cake-message {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 25px;
  margin-top: 13px;
}

.add-cart-row {
  display: flex;
  gap: 10px;
}

.add-cart-row select {
  padding: 10px;
  border-radius: 6px;
  width: 100px;
}

.btn-add-cart {
  flex: 1;
  background: #6b3f2e;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
}

.delivery-features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding: 13px 0;
  border-top: 1px solid #0000000f;
  ;
  border-bottom: 1px solid #0000000f;
  ;
  font-size: 16px;
}

.cake-bannerImg {
  min-height: 350px;
  border-radius: 12px;
}

.bought-bannerImg img {
  border-radius: 12px;
}

section.also-bought-sec {
  margin-top: 50px;
}

.also-bought-product {
  margin-top: 40px;
}

.mySwiper .swiper-slide {
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-video {
  width: 100%;
  height: 100%;
}

.customer-review {
  margin-top: 40px;
}

.testimonial-card {
  background: #f6f1ef;
  padding: 16px 18px;
  border-radius: 14px;
  gap: 12px;
}

.user-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-weight: 600;
  margin: 0;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.review-text {
  font-size: 16px;
  margin: 0;
  line-height: 24px;
  color: var(--para-color);
}

.testimonial-content .rating {
  padding-left: 20px;
}

.review-card-section {
  margin-top: 25px;
}

.product-toolbar {
  display: flex;
  justify-content: flex-end;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.sort-products {
  border: 1px solid #38261f;
  padding: 6px 10px;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
}

.sort-wrapper label {
  font-size: 16px;
  font-weight: 700;
}

.product-filter-wrapper.SP-version {
  display: none;
}

span.cart-count {
  position: absolute;
  top: -10px;
  right: -5px;
  background: var(--bg-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--text-color);
  font-size: 14px;
}

.form-control:focus {
  background-color: unset;
  border-color: unset;
  box-shadow: unset;
}


/* Product pa variation section */

.weight-options {
  display: flex;
  gap: 10px;
}

.variation-btn {
  position: relative;
  cursor: pointer;
}

.variation-btn input {
  display: none;
}

.variation-btn span {
  padding: 8px 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f5f5f5;
  display: inline-block;
  font-weight: 500;
}

.variation-btn input:checked+span {
  background: var(--bg-color);
  color:var(--text-color);
  border-color: var(--primary-color);
}

.cart-table thead {
  background: var(--bg-color);
}

.cart-table th {
  color: var(--text-color);
  border: none;
  padding: 10px;
  font-weight: 600;
}

.cart-table td {
  vertical-align: middle;
  /* border-top: 1px solid #333; */
  padding: 10px;
}

.product-info {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  gap: 12px;
}

.product-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 20px;
}

.remove {
  font-size: 24px;
  cursor: pointer;
}

.qty-box {
  display: flex;
  border: 1px solid #444;
  width: 120px;
  justify-content: space-between;
  align-items: center;
  padding: 6px;
}

.qty-box button {
  background: none;
  border: none;
  font-size: 18px;
}

.qty-box input {
  width: 40px;
  text-align: center;
  background: none;
  border: none;
}

.cart-actions {
  margin-top: 60px;
}

.coupon-box input {
  padding: 10px;
  border: 1px solid #444;
}

.btn-apply {
  /* background: #d6b768; */
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
}

.btn-update {
  border: none;
  padding: 10px 20px;
}

.cart-total-box {
  padding: 25px;
  border: 1px solid;
  border-radius: 15px;
  margin-left:50px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.checkout-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--bg-color);
  border: none;
  font-weight: 600;
  color: var(--text-color);
}
.checkout-btn a{
  color: #fff;
}
.site-logo img{
    width: 53%;
}
.cart-table td.product-info {
    display: block;
}
.cart-table td.remove {
    font-size: 15px;
}
.cart-table .Qty{
  text-align: center;
}
.cart-table .subtotal,.cart-table .subtotal-Box{
    text-align: right;
}
.cart-table .pro-qty{
  place-items: center;
}
.cart-container{
  margin-top: 40px;
}