/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.40
Tested up to: 6.8
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
 .container {
    max-width: 89% !important;
}
h1, h2, h3, h4, h5, h6, p, a, b, strong, div, span ul, li {
    font-family: "Funnel Sans", sans-serif !important;
}
  .topbar {
      background: #fdeede;
      font-size: 14px;
      padding: 5px 0;
    }
    .topbar a {
      color: #444;
      margin-left: 15px;
      text-decoration: none;
    }
    .topbar .social-icons a {
      margin-left: 10px;
      color: #444;
    }

    /* Middle header */
    .header-middle {
      padding: 15px 0;
    }
    input#is-search-input-9 {
    border-radius: 25px 0  0 25px;
    height: 48px;
}
span.is-search-icon {
    height: 49px !important;
    width: 54px !important;
}
button.is-search-submit {
    height: 100px !important; 
}
.is-search-icon svg {
    width: 32px !important;
}
.d-flex.align-items-center.header-icons {
    float: right;
}
.d-flex.align-items-center.header-icons a {
    color: #000;
}
    .header-icons i {
      font-size: 18px;
      margin-left: 20px;
      cursor: pointer;
      position: relative;
    }
    .header-icons span {
      position: absolute;
      top: -8px;
      right: -10px;
      background: #e74c3c;
      color: #fff;
      border-radius: 50%;
      padding: 2px 6px;
      font-size: 12px;
    }

    /* Navbar bottom */
    .navbar-bottom {
      background: #fff;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
    }
    .navbar-bottom .nav-link {
      font-weight: 600;
      color: #333;
    }
    .navbar-bottom .best-deals {
      color: #e67e22 !important;
    }
    .navbar-bottom .buy-pickles {
      color: #333;
      font-weight: bold;
    }
    .browse-categories {
    background: #c76b2e;
    color: #fff !important;
    padding: 10px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: navajowhite;
}
    .browse-categories i {
      margin-right: 8px;
    }
    .dropdown-menu.browse-menu {
  background-color: #3d2919;
  border: none;
}

.dropdown-menu.browse-menu .list-group {
  background-color: transparent;
}

.dropdown-menu.browse-menu .list-group-item {
   background-color: #ffffff;
  border-color: #c76b2e;
  border-left: none;
  border-right: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.browse-menu .list-group-item a {
  color: #3d2919;
  font-weight: bold;
  transition: color 0.3s ease;
}

.dropdown-menu.browse-menu .list-group-item:hover {
  background-color: #c76b2e;
  transform: translateX(5px);
}

.dropdown-menu.browse-menu .list-group-item:hover a {
  color: #ffffff;
  text-decoration: none;
}

/* account */
.header-widget .widget-links {
      justify-content: end;
    }

    .header-widget .widget-links a {
      text-decoration: none;
      color: var(--text-color, #4A4A4A);
    }

    .header-widget .user-greeting-link .greeting-icon {
      color: var(--dark-color, #FFC300);
      margin-right: 5px;
    }

    .header-widget .login-register-link .login-register-icon {
      color: var(--accent-color, #E63946);
      margin-right: 5px;
    }


    /* icory search css */
    span.is-search-icon {
      height: 49px !important;
      width: 54px !important;
      border-top-right-radius: 25px;
      border-bottom-right-radius: 25px;
      background: #c76b2e;
      color: #fff;
    }

    .is-search-icon:hover,
    form.is-form-style input.is-search-submit:hover {
      background: #FFC300;
    }

    .is-form-style .is-search-submit path {
      color: #ffffff;
      fill: #ffffff !important;
    }
    .is-search-icon:hover .is-form-style .is-search-submit path {
      color: #000000;
      fill: #000000;
    }
 
    .is-screen-reader-text {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      border: 0 !important;
    }

    .is-ajax-search-result {
      border: 1px solid #EAEAEA !important;
      border-top: none !important;
      border-radius: 0 0 15px 15px !important;
      background-color: #030101ff !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
      position: absolute !important;
      z-index: 1000 !important;
      overflow: hidden !important;
      width: 100% !important;
      max-height: 400px !important;
      overflow-y: auto !important;
      margin-top: -10px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      max-width: 500px !important;
    }

    .is-ajax-search-result .is-ajax-search-post , .is-ajax-search-details .is-ajax-search-post{
      display: flex !important;
      align-items: center !important;
      padding: 15px 20px !important;
      border-bottom: 1px solid #EAEAEA !important;
      transition: background-color 0.2s ease-in-out !important;
      gap: 15px !important;
    }

    .is-ajax-search-result .is-ajax-search-post:hover, .is-ajax-search-details .is-ajax-search-post:hover{
      background-color: #F6F8FB !important;
    }

    .is-ajax-search-result .is-title a, .is-ajax-search-details .is-title a{
      color: #082C3D !important;
      text-decoration: none !important;
      transition: color 0.2s ease-in-out !important;
      font-weight: 600 !important;
      font-size: 1.1rem !important;
    }

    .is-ajax-search-result .is-title a:hover, .is-ajax-search-details .is-title a:hover{
      color: #E63946 !important;
    }

    .is-ajax-search-result .is-prices, .is-ajax-search-details .is-prices{
      color: #4A4A4A !important;
      font-size: 0.95rem !important;
    }

    .is-ajax-search-result .is-prices del, .is-ajax-search-details .is-prices del{
      color: #A8A8A8 !important;
      font-size: 0.85rem !important;
    }

    .is-ajax-search-result .is-prices ins, .is-ajax-search-details .is-prices ins{
      text-decoration: none !important;
      color: #E63946 !important;
      font-weight: 700 !important;
    }

    .is-ajax-search-result .is-ajax-result-description, .is-ajax-search-details .is-ajax-result-description{
      color: #4A4A4A !important;
      font-size: 0.9rem !important;
      line-height: 1.5 !important;
    }

    .is-ajax-search-result .is-show-more-results, .is-ajax-search-details .is-show-more-results{
      border-top: 1px solid #EAEAEA !important;
      color: #4A4A4A !important;
      padding: 15px !important;
      text-align: center !important;
      display: block !important;
      transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out !important;
      text-decoration: none !important;
      font-weight: 600 !important;
    }

    .is-ajax-search-result .is-show-more-results:hover, .is-ajax-search-details .is-show-more-results:hover{
      background-color: #082C3D !important;
      color: #030101ff !important;
    }

    .is-ajax-search-result .is-ajax-woocommerce-actions, .is-ajax-search-details .is-ajax-woocommerce-actions{
      display: flex !important;
      gap: 10px !important;
      align-items: center !important;
    }

    .is-ajax-search-result .is-ajax-woocommerce-actions .quantity input, .is-ajax-search-details .is-ajax-woocommerce-actions .quantity input{
      border: 1px solid #EAEAEA !important;
      border-radius: 8px !important;
      padding: 8px !important;
      width: 60px !important;
      text-align: center !important;
      color: #4A4A4A !important;
    }

    .is-ajax-search-result .is-ajax-woocommerce-actions .button.add_to_cart_button, .is-ajax-search-details .is-ajax-woocommerce-actions .button.add_to_cart_button{
      background-color: #E63946 !important;
      color: #030101ff !important;
      border: none !important;
      padding: 10px 20px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      transition: background-color 0.2s ease-in-out !important;
    }

    .is-ajax-search-result .is-ajax-woocommerce-actions .button.add_to_cart_button:hover, .is-ajax-search-details .is-ajax-woocommerce-actions .button.add_to_cart_button:hover{
      background-color: #082C3D !important;
    }

/* new buttons */
@keyframes color-change-and-pulse {
          0% {
            transform: scale(1);
            background-color: #FFFFFF;
            color: #B5651D;
          }

          50% {
            transform: scale(1.1);
            background-color: #FFFFFF;
            color: #F3A02C;
          }

          100% {
            transform: scale(1);
            background-color: #FFFFFF;
            color: #B5651D;
          }
        }

        .ak-kitchen-new-btn .animated-icon {
          animation: color-change-and-pulse 2s infinite ease-in-out;
          margin-right: 0.5rem;
          padding: 0.5rem;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 30px;
          height: 30px;
          transition: all 0.3s ease;
        }

        .ak-kitchen-new-btn .nav-link-custom {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 8px 15px;
          border-radius: 9999px;
          text-align: center;
          font-weight: 600;
          font-size: 12px;
          transition: all 0.3s ease;
        }

        .ak-kitchen-new-btn .ready-to-eat-btn {
          background-color: #F3A02C;
          color: #FFFFFF;
          margin-right: 10px;
          box-shadow: 0 4px 6px rgba(243, 160, 44, 0.4);
        }

        .ak-kitchen-new-btn .ready-to-eat-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 10px rgba(243, 160, 44, 0.5);
        }

        .ak-kitchen-new-btn .view-cart-btn {
          background-color: #B5651D;
          color: #FFFFFF;
          box-shadow: 0 4px 6px rgba(181, 101, 29, 0.4);
        }

        .ak-kitchen-new-btn .view-cart-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 10px rgba(181, 101, 29, 0.5);
        }

        @media (min-width: 767px) and (max-width: 1299px) {
          .ak-kitchen-new-btn .nav-link-custom {
            font-size: 10px;
          }
        }
		.highlight-carde {
    border-radius: 10px;
     padding: 46px 30px;
    justify-content: space-between;
    height: auto;
    background: url(./images/what.png);
    text-align: left;
    background-position: center;
    background-size: cover;
}
 .highlight-carde h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 30px;
    width: 78%;
    line-height: 30px;
}
.highlight-carderd {
    border-radius: 10px;
    padding: 28px 0 238px 26px;
    justify-content: space-between;
    height: auto;
    background: url(./images/smapan.png);
    text-align: left;
    background-position: center;
    background-size: cover;
}
.highlight-carderd h4 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    width: 100%;
    line-height: 40px;
}
.highlight-card {
    border-radius: 10px;
    padding: 46px 30px;
    justify-content: space-between;
    height: auto;
    background: url(./images/this.png);
    text-align: left;
    background-position: center;
    background-size: cover;
}
 .highlight-carder h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 30px;
    width: 78%;
    line-height: 30px;
}
	.highlight-carder {
    border-radius: 10px;
     padding: 46px 30px;
    justify-content: space-between;
    height: auto;
    background: url(./images/thisac.png);
    text-align: left;
    background-position: center;
    background-size: cover;
}
 .highlight-card h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 30px;
    width: 78%;
    line-height: 30px;
}
  a.btn.btn-shop.mt-3 {
    background: #bb703c;
    color: #fff;
}
    .btn-shop {
      background-color: #f58220;
      color: #fff;
      border-radius: 30px;
      padding: 10px 20px;
      font-weight: 500;
    }
    .btn-shop:hover {
      background-color: #d86f19;
      color: #fff;
    }
.product-tabs .nav-link {
    border-radius: 30px;
    padding: 6px 18px;
    margin: 0 5px;
    font-weight: 600;
    color: #333;
    transition: 0.3s;
}
.product-tabs .nav-link.active {
    background: #ff6600;
    color: #fff;
}

/* Product Cards */
.woocommerce ul.products li.product {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}
.woocommerce ul.products li.product:hover {
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6600;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
}
.woocommerce ul.products li.product .button {
    background: #b17446 !important;
    color: #fff !important;
    border-radius: 5px;
    padding: 6px 14px !important;
    margin-top: 10px;
    font-weight: 600;
    transition: 0.3s;
}
p.category.mb-1 a {
    color: #a8774e;
}
.woocommerce ul.products li.product .button:hover {
    background: #e65c00 !important;
}
/* Product Card Styling */
.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  background: #fff;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.product-card img {
  max-height: 200px;
  object-fit: contain;
  margin: 15px auto;
  display: block;
}

/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff6f00;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
}

/* Title & Text */
.product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}
.product-title a {
  color: #222;
  text-decoration: none;
}
.product-title a:hover {
  color: #ff6f00;
}
.category {
  font-size: 13px;
  color: #777;
}
.vendor {
  font-size: 13px;
  color: #999;
}

/* Price */
.price {
  font-size: 18px;
  font-weight: 700;
  color: #e65100;
}
.price del {
  font-size: 14px;
  color: #888;
  margin-left: 5px;
}

/* Add to Cart */
.cart-btn .button {
  background: #ff7f32;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cart-btn .button:hover {
  background: #e65100;
}
/* Clear WooCommerce product images */
.woocommerce ul.products li.product img.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #b17446 !important;
}
/* Card styling */
.product-card .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Center buttons */
.woocommerce ul.products li.product .add-to-cart {
    margin-top: 10px;
}
.card-body {
    padding: 0 0px 15px 0 !important;
}
/* Section Headings */
.section-subtitle {
  color: #d88f37;
  font-style: italic;
  font-size: 18px;
}
.section-title {
  font-weight: 700;
  font-size: 28px;
}

/* Category Card */
.category-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
}

.category-card.active,
.category-card:hover {
  border-color: #a4632d;
}

/* Number Styling */
.category-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(0,0,0,0.1);
  z-index: 0;
}

/* Image */
.category-inner img {
  max-height: 120px;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
}

/* Text */
.category-inner h5 {
  font-weight: 700;
  margin-bottom: 10px;
}
.category-inner p {
  font-size: 14px;
  color: #666;
}

/* Shop Button */
.shop-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 20px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
.shop-btn.green { background: #5cb85c; }
.shop-btn.purple { background: #8e44ad; }
.shop-btn.brown { background: #a4632d; }

/* Owl Nav */
.categories-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  background: #a4632d !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 20px !important;
}
.category-inner img {
    width: 50% !important;
    height: auto;
}

.categories-carousel .owl-nav .owl-prev { left: -50px; }
.categories-carousel .owl-nav .owl-next { right: -50px; }
section.categories-section {
    background: url(./images/bg-section7.jpg);
    background-position: center;
    background-size: cover;
    padding: 134px 0 70px 0 !important;
}
.about-section {
  background: #fff;
  position: relative;
}

.about-content h2 {
  font-size: 1.8rem;
  line-height: 1.4;
}
.about-content.px-3 a {
    background: #9b6638 !important;
}
section.about-section {
    overflow: hidden;
}
h6.text-uppercase.text-warning.font-weight-bold {
    color: #936840 !important;
}
.about-content p {
  font-size: 0.95rem;
  margin: 15px 0 20px;
}
  .deal-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      transition: transform .2s;
    }
    .deal-card:hover {
      transform: translateY(-5px);
    }
    .deal-img {
      position: relative;
      text-align: center;
    }
    .countdown {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .countdown div {
      background: #fff;
      padding: 5px 10px;
      border-radius: 6px;
      font-weight: bold;
      font-size: 14px;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    }
    .deal-body {
      padding: 15px;
    }
    .deal-price {
      font-size: 18px;
      font-weight: 700;
      color: #e67e22;
    }
    .deal-old-price {
      text-decoration: line-through;
      color: #aaa;
      font-size: 14px;
    }
    .btn-add {
      background-color: #e67e22;
      color: #fff;
      border-radius: 8px;
      padding: 5px 15px;
    }
    section#deals a {
    color: #a8774e !important;
}
button.btn.btn-add.btn-sm.mt-2 {
    background: #a8774e;
    color: #fff;
}
  .highlight-orange {
      color: #e67e22; /* orange */
      font-weight: 700;
    }
    .delivery-box {
      border: 2px solid #e67e22;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 15px;
      background: #fff;
      transition: 0.3s;
    }
    .delivery-box.green {
      border-color: #28a745; /* green */
    }
    .delivery-box:hover {
      box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    }
    .order-btn {
      background: #e74c3c;
      color: #fff;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 6px;
      border: none;
      transition: 0.3s;
    }
    .order-btn:hover {
      background: #c0392b;
    }
    section#cta {
    background: url(./images/backiling.png);
    background-size: cover;
    background-position: center;
    padding: 55px 0;
}
  .testimonial-section {
      padding: 60px 0;
      background: #fff;
    }
    .testimonial-header h6 {
      color: #e67e22;
      text-transform: uppercase;
      font-weight: 600;
    }
    .testimonial-header h2 {
      font-weight: 700;
    }
    .testimonial-header span {
      color: #e74c3c;
    }
    .testimonial-box {
      background: #f9f4ec;
      border-radius: 50px 0 50px 0;
      padding: 30px;
      position: relative;
      margin-top: 30px;
    }
    .testimonial-box::before {
      content: "❝";
      font-size: 60px;
      color: #e74c3c;
      position: absolute;
      top: -20px;
      left: 30px;
    }
    .testimonial-author {
      background: #d2691e;
      color: #fff;
      padding: 15px 25px;
      border-radius: 25px 0 25px 0;
      display: inline-block;
      margin-top: 20px;
    }
    .testimonial-author h6 {
      margin: 0;
      font-weight: 700;
    }
    .testimonial-author small {
      display: block;
    }
    .stars {
      color: #000;
      margin-top: 5px;
    }
    .testimonial-img {
      max-height: 300px;
      object-fit: cover;
    }
    .owl-dots {
      text-align: center;
      margin-top: 20px;
    }
    .owl-dot span {
      width: 12px;
      height: 12px;
      background: #ccc !important;
      border-radius: 50%;
      margin: 5px;
      display: inline-block;
      transition: 0.3s;
    }
    .owl-dot.active span {
      background: #e74c3c !important;
    }
    section#testimonials img.img-fluid.testimonial-img {
    width: 60% !important;
    float: right;
}
.how-it-works {
    text-align: center;
    padding: 0 0 60px 0;
}
    .how-it-works h2 {
      font-weight: 700;
      margin-bottom: 40px;
      color: #1a1a4a;
    }
    .step {
      text-align: center;
      position: relative;
    }
    .step-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      border-radius: 12px;
      font-size: 32px;
      margin-bottom: 15px;
      color: #fff;
    }
section.pageheader {
    background: #c17a49;
    background-size: cover;
    background-position: center;
    padding: 19px 0 0 0;
    background-blend-mode: multiply;
    border-radius: 0px;
    margin-bottom: 30px;
}
span.breadcrumb_new {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin: 55px 0 0 0;
}
span.breadcrumb_new a {
    color: #fff;
}
    .step-title {
      font-weight: 600;
      color: #1a1a4a;
    }
    .step-line {
      position: absolute;
      top: 35px;
      left: 50%;
      width: 100%;
      height: 3px;
      border-top: 3px dashed #f5cfcf;
      z-index: -1;
    }
    .step:last-child .step-line {
      display: none;
    }
      .footer {
      background: #0c1724;
      color: #fff;
      padding: 60px 0 0;
    }
    .footer h5 {
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }
    .footer h5::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #e67e22;
      margin-top: 8px;
    }
    .footer p {
      color: #ccc;
    }
    .footer a {
      color: #fff;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
    }
    .footer a:hover {
      color: #e67e22;
    }
    .footer .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      margin-right: 8px;
      border: 1px solid #444;
      color: #fff;
      line-height: 38px;
      text-align: center;
      border-radius: 5px;
    }
    .footer .social-icons a:hover {
      background: #e67e22;
      border-color: #e67e22;
    }
    .footer .form-control {
      border-radius: 8px 0 0 8px;
    }
    .footer .btn {
      border-radius: 0 8px 8px 0;
      background: #e67e22;
      color: #fff;
    }
    .footer .bottom-bar {
      background: #e67e22;
      padding: 12px 0;
      text-align: center;
      margin-top: 30px;
    }
    .footer .bottom-bar a {
      background: #c75d0a;
      color: #fff;
      padding: 6px 14px;
      margin-left: 10px;
      border-radius: 6px;
      font-size: 14px;
    }
    .footer .bottom-bar a:hover {
      background: #a94400;
    }
    /* Mobile Adjustments */
    @media (max-width: 767px) {
		.pageheader {
    padding: 15px 0 20px 0 !important;
}
		section.pageheader {
    background: #c17a49;
    background-size: cover;
    background-position: center;
    padding: 19px 0 0 0;
    background-blend-mode: multiply;
    border-radius: 0px;
    margin-bottom: 30px;
}
		section.pageheader h1 {
    display: unset !important;
    font-size: 30px;
}
		span.breadcrumb_new {
    margin: 15px 0 0 0 !important;
}
		.breadcrumb_new {
    display: unset !important;
    float: left !important;
    height: 45px !important;
}
      .highlight-carderd {
    padding: 19px 0 307px 26px !important;
}
.highlight-carderd h4 {
    font-size: 40px !important;
    font-weight: 600;
    margin-bottom: 11px !important;
    width: 100%;
    line-height: 42px !important;
}
      button.owl-next {
    display: none !important;
}
button.owl-prev {
    display: none !important;
}
      .search-box {
        margin-top: 10px;
      }
      .header-icons {
        margin-top: 10px;
      }
      .browse-categories {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
	  .container {
    max-width: 100% !important;
}
.d-flex.align-items-center.header-icons {
    float: unset !important;
}
.header-middle img {
    width: 100% !important;
}
.header-middle {
    padding: 0px 0 !important;
}
input#is-search-input-9 {
    height: 40px !important;
}
input#is-search-input-9 {
    height: 38px !important;
}
.is-search-icon svg {
    width: 23px !important;
}
.header-middle {
    padding: 0px 0 7px 0 !important;
}
ul.navbar-nav {
    display: none !important;
}
span.is-search-icon {
    height: 40px !important;
}
div#mega-menu-wrap-primary {
    width: 50px !important;
}
.highlight-card {
    padding: 24px 17px !important;
}
.highlight-carde {
    padding: 24px 17px !important;
}
.highlight-carder {
    padding: 24px 17px !important;
}
.highlight-card h4 {
    font-size: 17px !important; 
    line-height: 25px !important;
}
.highlight-carde h4 {
    font-size: 17px !important; 
    line-height: 25px !important;
}
.highlight-carder h4 {
    font-size: 17px !important; 
    line-height: 25px !important;
}
.step-line {
    position: unset !important;
    top: 35px;
    left: 50%;
    width: 100%;
    height: 3px;
    border-top: unset !important;
    z-index: -1;
}
    }

@media  (min-width: 767px) and (max-width: 1366px) {
  .d-flex.align-items-center.header-icons a {
        font-size: 11px !important;
}
	.highlight-card {
    padding: 22px 15px !important;
}
	.highlight-carde {
    padding: 22px 15px !important;
}
.highlight-card h4 {
    font-size: 18px !important;
    line-height: 24px !important;
}
.highlight-carde h4 {
    font-size: 18px !important;
    line-height: 24px !important;
}
.highlight-card a {
    font-size: 15px;
}
.highlight-carde a {
    font-size: 15px;
}
.highlight-carder a {
    font-size: 15px;
}
.highlight-carder h4 {
    font-size: 18px !important;
    line-height: 24px !important;
}
	.highlight-carder {
    padding: 22px 15px !important;
}
	input#is-search-input-9 {
    border-radius: 25px 0  0 25px !important;
    height: 40px !important;
}
.header-middle {
    padding: 0px 0 !important;
}
span.is-search-icon {
    height: 40px !important;
    width: 54px !important;
}
.is-search-icon svg {
    width: 24px !important;
}
div#mega-menu-wrap-primary a {
    font-size: 15px !important;
}
}
@media  (min-width: 1366px) and (max-width: 1500px) {
.header-middle {
    padding: 5px 0 !important;
}
.highlight-card {
    padding: 36px 25px !important;
}
.highlight-carde {
    padding: 36px 25px !important;
}
.highlight-carder {
    padding: 36px 25px !important;
}
}

.product-card {
  border-radius: 12px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.product-card img {
  max-height: 200px;
  object-fit: contain;
}
.badge-sale {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f28b30;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 8px;
}
.product-info h6 {
  font-size: 16px;
}
.product-price {
  font-weight: bold;
  font-size: 15px;
}
.woocommerce-Price-amount {
  color: #222;
  font-weight: 600;
}
.price del {
  color: #888;
  font-size: 13px;
  margin-left: 5px;
}
.add_to_cart_button {
  display: inline-block;
  background: #f28b30;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none !important;
  transition: 0.3s;
}
.add_to_cart_button:hover {
  background: #d97706;
}
a.button.product_type_variable.add_to_cart_button {
    background: #e49046;
}
.col-md-3.col-sm-6.extra {
    margin: 0 0 50px 0;
}
.product-info a {
    color: #d89454;
}
.single-product-page .product-details h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.single-product-page .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e63946;
}
.single-product-page .woocommerce-tabs {
  margin-top: 30px;
}
/* ===============================
   SINGLE PRODUCT PAGE CUSTOM STYLE
   =============================== */

.single-product-page .product-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.single-product-page .product-details {
  padding-left: 20px;
}

.single-product-page .product-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-product-page .product-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: #d32f2f;
}

.single-product-page .product-price del {
  font-size: 1rem;
  color: #888;
  margin-left: 8px;
}

.single-product-page .product-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.single-product-page .product-variations {
  margin-top: 20px;
}

.single-product-page .variations_form .variations label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.single-product-page .variations_form .value label {
  margin-right: 10px;
  cursor: pointer;
}

.single-product-page .variations_form input[type=radio] {
  display: none;
}

.single-product-page .variations_form input[type=radio] + label {
  border: 1px solid #ccc;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.single-product-page .variations_form input[type=radio]:checked + label {
  background: #e53935;
  color: #fff;
  border-color: #e53935;
}

.single-product-page form.cart {
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}
a.reset_variations {
    display: none;
}
.single-product-page form.cart .single_add_to_cart_button {
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 8px;
}.quantity {
    margin: 0 0 20px 0;
}
section.related.products h5.product-title.mb-1 {
    font-size: 18px;
    line-height: 30px;
}
.single-product-page form.cart .buy-now {
  background: #e53935;
  color: #fff;
  border: none;
}
button.single_add_to_cart_button.button.alt.buy-now-btn {
    background: #b77d52;
}
.single-product-page form.cart .buy-now:hover {
  background: #c62828;
}
span.yith-wcwl-add-to-wishlist-button__label {
    color: #af7f59;
    display: none;
}
.single-product-page form.cart .add_to_cart {
  border: 2px solid #e53935;
  background: transparent;
  color: #e53935;
}
p {
    line-height: 30px;
}
nav.woocommerce-MyAccount-navigation ul li a {
    color: #b77d52;
}

.single-product-page form.cart .add_to_cart:hover {
  background: #e53935;
  color: #fff;
}

.single-product-page .product-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.single-product-page .product-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single-product-page .product-price {
    font-size: 22px;
    color: #444;
    font-weight: 500;
}

.product-buy-now .btn {
    background: #6c63ff;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.product-buy-now .btn:hover {
    background: #574bdb;
}

.breadcrumb_new {
    font-size: 14px;
    color: #fff;
}
.breadcrumb_new a {
    color: #fff;
    text-decoration: none;
}
.breadcrumb_new a:hover {
    text-decoration: underline;
}



.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #e67e22; /* Orange shade */
    margin-bottom: 8px;
}

.product-price del {
    color: #999;
    font-size: 14px;
    margin-right: 5px;
}

.product-price ins {
    color: #27ae60; /* Green for discounted price */
    font-weight: 700;
}

.product-buy-btn a.button {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.product-buy-btn a.button:hover {
    background: #d35400;
    color: #fff;
}


/* new prodcut section css */
  .new-products-section .product-tabs .nav-link {
    color: #4A4A4A;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #F6F8FB;
  }

  .new-products-section .product-tabs .nav-link:hover {
    color: #E63946;
    background-color: #F6F8FB;
  }

  .new-products-section .product-tabs .nav-link.active {
    background-color: #E63946;
    color: #FFFFFF;
  }

  .new-products-section .ak-kitchen-product-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .new-products-section .ak-kitchen-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FFC300;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 10;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-wishlist-wrap {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: #fff;
    height: 40px;
    width: 40px;
    border-radius: 8px;
  }

  .new-products-section .ak-kitchen-wishlist-wrap .yith-wcwl-add-to-wishlist a span {
    display: none;
  }

  .new-products-section .ak-kitchen-wishlist-wrap .yith-wcwl-add-to-wishlist a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  .new-products-section .ak-kitchen-wishlist-wrap .yith-wcwl-add-to-wishlist a:hover {
    background-color: #E63946;
  }

  .new-products-section .ak-kitchen-wishlist-wrap .yith-wcwl-add-to-wishlist a::before {
    content: "\f08a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #E63946;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .new-products-section .ak-kitchen-wishlist-wrap .yith-wcwl-add-to-wishlist a:hover::before {
    color: #FFFFFF;
  }

  .new-products-section .ak-kitchen-wishlist-wrap .yith-wcwl-add-to-wishlist .added a::before {
    content: "\f004";
    color: #FFC300;
  }

  .new-products-section .ak-kitchen-wishlist-wrap .yith-wcwl-add-to-wishlist .added a:hover::before {
    color: #FFFFFF;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-image-wrap {
    height: 300px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    background-color: #F6F8FB;
    position: relative;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .new-products-section .ak-kitchen-product-image-wrap .primary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
    opacity: 1;
  }

  .new-products-section .ak-kitchen-product-image-wrap .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
    opacity: 0;
  }

  .new-products-section .ak-kitchen-product-image-wrap:hover .primary-image {
    opacity: 0;
  }

  .new-products-section .ak-kitchen-product-image-wrap:hover .secondary-image {
    opacity: 1;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-title {
    font-family: "Prata", serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    flex-grow: 1;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-title a {
    color: #082C3D;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-title a:hover {
    color: #E63946;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-meta {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-category {
    font-size: 0.8rem;
    color: #4A4A4A;
    opacity: 0.7;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E63946;
    margin-bottom: 15px;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-price del {
    color: #4A4A4A;
    opacity: 0.6;
    font-size: 0.9rem;
    margin-right: 5px;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-buttons a.button {
    background-color: #082C3D;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }

  .new-products-section .ak-kitchen-product-card .ak-kitchen-product-buttons a.button:hover {
    background-color: #E63946;
    transform: translateY(-2px);
  }

  /* form css */

  /* --- WooCommerce My Account Page Custom Styles --- */

/* Main Container and Columns */
.woocommerce #customer_login {
    display: flex;
    padding: 40px 0;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .woocommerce #customer_login {
        flex-direction: row;
    }
    .woocommerce #customer_login .u-column1,
.woocommerce #customer_login .u-column2 {
    max-width: 100% !important;
}
}

.woocommerce #customer_login .u-column1,
.woocommerce #customer_login .u-column2 {
    background-color: #F6F8FB;
    padding: 2.5rem;
    max-width: 48% !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #EAEAEA;
    flex: 1;
}

.woocommerce h2 {
    font-family: "Prata", serif;
    font-size: 1.8rem;
    color: #082C3D;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.woocommerce h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #E63946;
}

.woocommerce form .form-row {
    margin-bottom: 1rem;
}
.woocommerce-LostPassword a {
    color: #E63946;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.woocommerce-LostPassword a:hover {
    color: #082C3D;
    text-decoration: none;
}

.woocommerce form .form-row label {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: #4A4A4A;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.woocommerce form .form-row input.input-text {
    width: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    color: #4A4A4A;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce form .form-row input.input-text:focus {
    outline: none;
    border-color: #082C3D;
    box-shadow: 0 0 0 2px rgba(8, 44, 61, 0.1);
}

.woocommerce form .button {
    background-color: #E63946 !important;
    color: #FFFFFF !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.woocommerce form .button:hover {
    background-color: #FFC300 !important;
    transform: translateY(-2px);
}

.woocommerce-form__label-for-checkbox {
    font-size: 0.9rem;
    color: #4A4A4A;
    margin-top: 1rem;
}

.woocommerce-LostPassword a {
    color: #4A4A4A;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-LostPassword a:hover {
    color: #E63946;
}

.password-input .show-password-input {
    color: #4A4A4A;
    opacity: 0.6;
}

.woocommerce-message, .woocommerce-error {
    background-color: #f6f8fb;
    border-top-color: #E63946;
}

.woocommerce-error {
    border-top-color: #FF4C4C;
}

.woocommerce-message::before {
    color: #082C3D;
}

/* cart page */
.wc-block-cart__submit-button,
.wc-block-components-quantity-selector__button,
.wc-block-components-button.wc-block-cart__submit-button {
    background-color: #E63946 !important;
    color: #FFFFFF !important;
    border-radius: 50px !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-quantity-selector__button:hover,
.wc-block-components-button.wc-block-cart__submit-button:hover {
    background-color: #FFC300 !important;
    transform: translateY(-2px);
}

.wc-block-components-quantity-selector__button:disabled {
    background-color: #A8A8A8 !important;
    cursor: not-allowed;
}

.wc-block-cart-item__remove-link {
    color: #E63946;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wc-block-cart-item__remove-link:hover {
    color: #082C3D;
}

.wc-block-components-product-price del {
    color: #A8A8A8;
}

.wc-block-components-product-price ins {
    color: #E63946;
    text-decoration: none;
}

.wc-block-components-product-badge.wc-block-components-sale-badge {
    background-color: #FFC300;
    color: #FFFFFF;
}
/* Checkout page */
/* --- Global Checkout Layout & Background --- */
.wc-block-checkout {
    gap: 3rem;
}

.wc-block-checkout__main,
.wc-block-checkout__sidebar {
    background-color: #F6F8FB;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* --- Headings & Titles --- */
.wc-block-components-checkout-step__title {
    color: #082C3D;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.wc-block-components-checkout-step__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #E63946;
}

/* --- Form Fields & Inputs --- */
.wc-block-components-text-input input,
.wc-blocks-components-select__select {
    color:  #4A4A4A;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wc-block-components-text-input input:focus,
.wc-blocks-components-select__select:focus {
    outline: none;
    border-color: #082C3D;
    box-shadow: 0 0 0 2px rgba(8, 44, 61, 0.1);
}

.wc-block-components-button.wc-block-components-checkout-place-order-button,
.wc-block-components-button.wc-block-cart__submit-button {
    background-color:  #E63946 !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.wc-block-components-button.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button.wc-block-cart__submit-button:hover {
    background-color: #FFC300 !important;
    transform: translateY(-2px);
}

.wc-block-checkout__login-prompt,
.wc-block-components-checkout-return-to-cart-button,
.wc-block-components-address-card__edit,
.wc-block-components-address-form__address_2-toggle,
.wc-block-components-checkbox__label {
    color: #E63946;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.wc-block-checkout__login-prompt:hover,
.wc-block-components-checkout-return-to-cart-button:hover {
    color: #082C3D;
}

.wc-block-components-checkout-order-summary__title-text {
    font-size: 1.5rem;
    color: #082C3D;
}

.wc-block-components-checkout-order-summary__title-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A4A4A;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
    width: 62% !important;
}
.wc-block-components-sidebar {
    width: 33% !important;
}

/* --- Lost Password Form Styles --- */
.woocommerce-ResetPassword.lost_reset_password {
    background-color: #F6F8FB;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #EAEAEA;
    max-width: 500px;
    margin: 3rem auto;
}

.woocommerce-ResetPassword.lost_reset_password p {
    color: #4A4A4A;
    line-height: 1.6;
}

.woocommerce-ResetPassword.lost_reset_password label {
    font-size: 0.9rem;
    color: #4A4A4A;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.woocommerce-ResetPassword.lost_reset_password input.input-text {
    width: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    color: #4A4A4A;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-ResetPassword.lost_reset_password input.input-text:focus {
    outline: none;
    border-color: #082C3D;
    box-shadow: 0 0 0 2px rgba(8, 44, 61, 0.1);
}

.woocommerce-ResetPassword.lost_reset_password button.button {
    background-color: #E63946 !important;
    color: #FFFFFF !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    width: auto;
}

.woocommerce-ResetPassword.lost_reset_password button.button:hover {
    background-color: #FFC300 !important;
    transform: translateY(-2px);
}

@media (max-width:767px) {
  .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100% !important;
    padding: 15px;
}
.wc-block-components-sidebar {
    width: 100% !important;
    padding: 15px;
}
.header-middle .is-form-style button.is-search-submit {

    position: relative;
    top: -2px;
    height: 36px !important;
}
.header-middle .is-form-style {
    width: 100%;
    float: left;
}
}

.ak-kitchen-new-btn {
    justify-content: space-evenly;
}

/* --- Thank You Page Styles --- */
.woocommerce-order {
    background-color: #F6F8FB;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #EAEAEA;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
    font-family: "Prata", serif;
    font-size: 1.8rem;
    color: #082C3D;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.woocommerce-order-details__title::after,
.woocommerce-column__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #E63946;
}

.woocommerce-notice--success {
    background-color: #ffffff;
    border-left: 5px solid #E63946;
    color: #4A4A4A;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.5rem;
    border-radius: 8px;
}

.woocommerce ul.order_details li {
    padding-left: 15px !important;
}
.woocommerce-order-overview.order_details {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.woocommerce-order-overview.order_details li {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #4A4A4A;
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    flex: 1 1 200px;
}

.woocommerce-order-overview.order_details li strong {
    display: block;
    font-size: 1.2rem;
    color: #082C3D;
    font-weight: 700;
}

/* Order Details Table */
.woocommerce-table.order_details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.woocommerce-table.order_details th,
.woocommerce-table.order_details td {
    font-family: "Inter", sans-serif;
    padding: 1rem;
    border-bottom: 1px solid #EAEAEA;
    text-align: left;
}

.woocommerce-table.order_details thead th {
    font-weight: 600;
    color: #ffffff;
    background-color: #c17a49;
}
.woocommerce table.shop_table td {
    background: #fff;
}

.woocommerce-table.order_details tbody a {
    color: #082C3D;
    text-decoration: none;
    font-weight: 600;
}

.woocommerce-table.order_details tfoot {
    font-weight: 600;
    color: #082C3D;
}

.woocommerce-table.order_details tfoot th {
    background-color: #c17a49;
    color: #fff;
}

.woocommerce-table.order_details tfoot tr:last-child {
    font-weight: bold;
    color: #E63946;
}

/* Address Section */

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
	max-width: 48% !important;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
	max-width: 48% !important;
}

@media (max-width: 768px) {
	.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
	max-width: 100% !important;
}
	.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
		max-width: 100% !important;
	}
}

.woocommerce-customer-details address {
    font-family: "Inter", sans-serif;
    font-style: normal;
    color: #4A4A4A;
    line-height: 1.6;
}

/* My accounts page */
.woocommerce-MyAccount-navigation {
    background-color: #F6F8FB;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #EAEAEA;
    margin-bottom: 2rem;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.woocommerce-MyAccount-navigation li:last-child {
    margin-bottom: 0;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 20px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #4A4A4A;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation li a:hover {
    color: #FFFFFF;
    background-color: #E63946;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a[aria-current="page"] {
    background-color: #082C3D;
    color: #FFFFFF;
    font-weight: 600;
}

.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #E63946;
}

.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background-color: #E63946;
    color: #FFFFFF;
}

.woocommerce-MyAccount-content {
    background-color: #F6F8FB;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #EAEAEA;
}

.woocommerce-MyAccount-content p {
    font-family: "Inter", sans-serif;
    color: #4A4A4A;
    line-height: 1.6;
}

.woocommerce-MyAccount-content a {
    color: #E63946;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-MyAccount-content a:hover {
    color: #082C3D;
    text-decoration: underline;
}

.woocommerce-MyAccount-content .woocommerce-info {
    background-color: #FFFFFF;
    border-left: 4px solid #082C3D;
    color: #4A4A4A;
    margin-bottom: 1rem;
    border-radius: 8px;
}

/* Wishlist  */
/* --- Header Widget Links --- */
.header-widget .widget-links a {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    color: #082C3D;
    font-size: 1rem;
	margin-left: 10px;
    font-weight: 600;
}

.user-greeting-link .greeting-icon,
.login-register-link .login-register-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #E63946;
}

.header-widget .wishlist-link {
    position: relative;
}

.header-widget .wishlist-link .wishlist-icon {
    font-size: 1.2rem;
    color: #E63946;
    margin-right: 5px;
}

.header-widget .wishlist-link .wishlist-count {
    background-color: #E63946;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    padding: 5px 8px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -15px;
    min-width: 20px;
    text-align: center;
}
/* Wishlist Page */
.wishlist_table.shop_table {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #EAEAEA;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-family: "Inter", sans-serif;
}

.wishlist_table.shop_table thead tr th {
    background-color: #F6F8FB;
    color: #082C3D;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
}

.wishlist-items-wrapper tr {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.wishlist-items-wrapper tr:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.wishlist_table.shop_table td {
    padding: 15px 20px;
    vertical-align: middle;
    border-top: 1px solid #EAEAEA;
}

.wishlist_table.shop_table .product-remove a.remove {
    background-color: #E63946;
    color: #FFFFFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.wishlist_table.shop_table .product-remove a.remove:hover {
    background-color: #082C3D;
}

.wishlist_table.shop_table .product-thumbnail img {
    border-radius: 8px;
    width: 80px;
    height: auto;
}

.wishlist_table.shop_table .product-name a {
    font-family: "Prata", serif;
    color: #082C3D;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wishlist_table.shop_table .product-name a:hover {
    color: #E63946;
}

.wishlist_table.shop_table .product-price {
    font-weight: 600;
    color: #4A4A4A;
}

.wishlist_table.shop_table .product-price .woocommerce-Price-amount {
    font-size: 1rem;
    color: #E63946;
}

.wishlist_table.shop_table .product-price del {
    color: #A8A8A8;
    font-weight: 400;
}


.wishlist_table.shop_table .product-stock-status .wishlist-in-stock {
    color: #1a7e1a;
    font-weight: 600;
}


.wishlist_table.shop_table .product-add-to-cart .button,
.wishlist_table.shop_table .remove_from_wishlist.button {
    background-color: #082C3D;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.wishlist_table.shop_table .remove_from_wishlist.