/*
Theme Name: kappify
Theme URI: http://example.com/
Author: SoftClon
Author URI: http://example.com/
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, blog, responsive
Text Domain: kappify
*/

/*@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham/Gotham_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham/Gotham_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham/Gotham_Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham/Gotham_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}*/
/*@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham/Gotham_Medium.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}*/

@font-face {
    font-family: "Gotham";
    src: url("assets/fonts/gotham/Gotham_Medium.woff2") format("woff2"), url("assets/fonts/gotham/Gotham_Medium.woff") format("woff"), url("assets/fonts/gotham/Gotham_Medium.otf") format("opentype");
    font-weight: 350;
    font-style: normal;
    font-display: swap;
}

/*
body {
  font-family: 'Gotham', Arial, sans-serif;
}*/
body {
    font-family: "Gotham", sans-serif;
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Gotham", sans-serif;
    font-weight: 500; /* Bold */
}

p {
    font-family: "Gotham", sans-serif;
    font-weight: 350; /* Light */
}

em {
    font-family: "Gotham", sans-serif;
    font-style: italic;
}

.light-text {
    font-family: "Gotham", sans-serif;
    font-weight: 300; /* Light */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav {
    display: none;
}

.nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    margin-right: 5px;
    transition: color 0.3s;
    font-style: normal;
}

.nav a:hover {
    color: #d69e2e;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #d69e2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.logo-icon::after {
    content: "";
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1a202c;
}

.header-actions {
    display: flex;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.icon-btn:hover {
    background: #f7fafc;
}

/* Hero Section */
.hero {
    height: 400px;
    background: linear-gradient(to right, #fef5e7, #fed7aa);
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #af0d0d;
}

/* Promotional Section */
.promo {
    padding: 64px 0;
    /*background: linear-gradient(to right, #fef5e7, #fef3c7);*/
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.promo-text {
    flex: 1;
}

.promo-title {
    font-size: 48px;
    font-weight: bold;
    color: #262626;
    margin-bottom: 16px;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 36px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    color: #626262;
}

.btn-primary {
    background: #AF0D0D;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #b91c1c;
}

.promo-image {
    flex: 1;
    text-align: center;
}

.promo-image img {
    max-width: 400px;
    width: 100%;
}

/* Coffee Categories */
.categories {
    /*background: #92400e;*/
    background: #AF0D0D;
    padding: 16px 0;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    color: white;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.category-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

/*********************** Product Listing Page ****************************/

.products {
    padding: 64px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
    border-radius: 20px;
    border: 1px solid var(--normal-text, #262626);
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 256px;
}

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

.product-badge {
    display: inline;
    top: 16px;
    left: 16px;
    background: #af0d0d;
    color: white;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 20px;
    font-weight: 500;
    color: #262626;
    margin-bottom: 8px;
}

.product-description {
    color: #626262;
    font-size: 16px;
    line-height: 1.2;
}
.product-description p {
    color: #626262;
    font-size: 15px;
    line-height: 1.2;
}
.product-description p a {
    color: #af0d0d;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-current {
    font-size: 24px;
    font-weight: bold;
    color: #1a202c;
}

.price-original {
    color: #521b0a;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.04px;
    text-decoration-line: line-through;
    text-transform: uppercase;
}
.price-offer .woocommerce-Price-amount.amount {
    color: #af0d0d;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.04px;
    text-transform: uppercase;
}

.btn-buy {
    background: #521b0a;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: auto;
    border-radius: 14px;
}

.btn-buy:hover {
    background: #78350f;
}
.woocommerce-shop .main-title {
    display: block !important;
}
span.onsale {
    display: none;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #af0d0d;
    font-size: 23px;
    font-weight: 500;
}
.product_cat-shop .product-rating {
    position: absolute;
    top: 43%;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: 500 !important;
}
a.button.notfound {color: #af0d0d;}
/*********************** End Product Listing Page ****************************/

/* New to Kappify Section */
.about {
    padding: 64px 0;
    background: linear-gradient(to right, #fef5e7, #fed7aa);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    /*max-width: 400px;*/
    width: 100%;
}

.about-text {
    flex: 1;
    padding: 0 65px;
}

.about-title {
    font-size: 36px;
    font-weight: bold;
    color: #521b0a;
    margin-bottom: 24px;
}

.about-paragraph {
    color: #262626;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Process Section */


/* Social Section */
.social {
    padding: 40px 0;
    background: linear-gradient(to right, #fef5e7, #fed7aa);
    text-align: center;
}

.social-title {
    font-size: 36px;
    font-weight: bold;
    color: #521B0A;
    margin-bottom: 16px;
}

.social-subtitle {
    color: #4a5568;
    margin-bottom: 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.social-post {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.social-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/*********** Start Footer ************/
footer {
    background: #1e1e1e;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: "Gotham", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.footer-left {
    flex: 1 1 56px;
}

.footer-logo img {
    width: 160px;
    margin-bottom: 15px;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-icons a img {
    width: 38px;
    height: 38px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-middle {
    flex: 2 1 350px;
    text-align: center;
}

.footer-middle nav {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-middle nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-middle nav a:hover {
    color: #AF0D0D;
}

.footer-middle p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin: 15px 0;
    padding: 0 10px;
}

.footer-middle .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-middle .links a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-middle .links a:hover {
    color: #AF0D0D;
}

.footer-right {
    flex: 1 1 220px;
    text-align: left;
    font-size: 14px;
    color: #ccc;
        margin-top: -23px;
}

.footer-right h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.footer-right p {
    margin: 5px 0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        flex: 1 1 100%;
        text-align: center;
        margin: 0 auto;
    }

    .footer-logo img {
        margin: 0 auto 15px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-middle nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-middle .links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-right {
        margin-top: 10px;
    }
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
    .logo img {
        min-width: 140px;
    }
}

/*********** End Footer ************/

/* Responsive Design */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .promo-title {
        font-size: 64px;
    }

    .about-title {
        font-size: 48px;
    }

    .process-title {
        font-size: 48px;
    }

    .social-title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .categories-list {
        gap: 16px;
    }

    .category-text {
        font-size: 12px;
    }
}

/* ================= HEADER CART ================= */
.header-cart {
    position: relative;
    display: inline-block;
}

.header-cart .cart-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    /*padding: 8px 14px;*/
    /*background: #2d3748;*/
    /*border-radius: 30px;*/
    /*color: #fff;*/
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ================= MINI CART DROPDOWN ================= */
.mini-cart-wrapper {
    position: absolute;
    right: 0px;
    top: 70%;
    width: 400px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 18px;
    margin-top: 12px;
    display: none;
    animation: fadeInUp 0.3s ease;
    z-index: 9999;
}

.header-cart:hover .mini-cart-wrapper {
    display: block; /* show on hover */
}

/* === Product list === */
.mini-cart-wrapper ul.woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 260px;
    overflow-y: auto;
}

.mini-cart-wrapper ul.woocommerce-mini-cart li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    /*border-bottom: 1px solid #f3f3f3;*/
}

.mini-cart-wrapper ul.woocommerce-mini-cart li:last-child {
    border-bottom: none;
}

.mini-cart-wrapper ul.woocommerce-mini-cart img {
    width: 65px;
    height: 63px;
    border-radius: 8px;
    flex-shrink: 0;
}

.mini-cart-wrapper ul.woocommerce-mini-cart .woocommerce-mini-cart-item__details {
    flex: 1;
}

.mini-cart-wrapper ul.woocommerce-mini-cart .woocommerce-mini-cart-item__details a {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.mini-cart-wrapper ul.woocommerce-mini-cart .woocommerce-mini-cart-item__details .quantity {
    font-size: 13px;
    color: #718096;
}

.mini-cart-wrapper .quantity {
    border: none !important;
    display: inline-flex;
    flex-wrap: wrap;
}

/* === Cart Total === */
.mini-cart-wrapper .woocommerce-mini-cart__total {
    font-weight: 700;
    font-size: 16px;
    color: #1a202c;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid #f3f3f3;
    text-align: center;
}

/* === Buttons === */
.mini-cart-wrapper .woocommerce-mini-cart__buttons {
    margin-top: 14px;
    text-align: center;
}

.mini-cart-wrapper .woocommerce-mini-cart__buttons a {
    display: inline-block;
    margin: 5px 6px;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mini-cart-wrapper .woocommerce-mini-cart__buttons a:first-child {
    background: #92400e;
    color: #fff;
}

.mini-cart-wrapper .woocommerce-mini-cart__buttons a:first-child:hover {
    background: #92400ed1;
    /*transform: translateY(-2px);*/
}

.mini-cart-wrapper .woocommerce-mini-cart__buttons a:last-child {
    background: #92400e;
    color: #fff;
}

.mini-cart-wrapper .woocommerce-mini-cart__buttons a:last-child:hover {
    background: #92400ed1;
    /*transform: translateY(-2px);*/
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mini-product-name a {
    color: #000;
    text-decoration: none;
}

/* Cart wrapper (make relative for badge positioning) */
.cart-toggle {
    position: relative;
    display: inline-block;
}

/* Cart count badge */
.cart-toggle .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    /* background: #fff; */
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    /* border-radius: 50%; */
    line-height: 1;
    min-width: 18px;
    /* text-align: center; */
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
}
.cart-count {
    display: inline-block;
}
.cart-count:empty,
.cart-count:contains("0") {
    display: none !important;
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
    float: right;
    margin-left: 4px;
    width: 67px;
    height: 62px;
    box-shadow: none;
}
.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid transparent;
}
.cart-item + .cart-item {
    margin-top: 8px;
}
.cart-item:hover {
    border-color: var(--border);
    background: #fafafa;
}
.cart-item__thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #f3f4f6;
    object-fit: cover;
}
.cart-item__name {
    font-weight: 500;
}
.cart-item__meta {
    font-size: 13px;
    color: var(--muted);
}
.cart-item__price {
    font-weight: 500;
}
.cart-item__remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 18px;
}
.cart-item__remove:hover {
    color: #ef4444;
}

@media (max-width: 600px) {
    .cart-item {
        grid-template-columns: 56px 1fr auto;
    }
    .cart-item__thumb {
        width: 56px;
        height: 56px;
    }
}
a.added_to_cart.wc-forward {
    display: none;
}

/* === Remove from Cart Icon === */
/* Mini Cart Remove Button */
.woocommerce-mini-cart .remove_from_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff !important;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.woocommerce-mini-cart .remove_from_cart_button::before {
    font-family: "Font Awesome 5 Free";
    content: "\f1f8";
    font-weight: 900;
    font-size: 14px;
    display: inline-block;
    color: #78350f;
}

.woocommerce-mini-cart .remove_from_cart_button span,
.woocommerce-mini-cart .remove_from_cart_button svg {
    display: none !important;
}

.hero.home-banners {
    width: 100%;
}

.hero.home-banners .hero-image img {
    width: 100%;
    height: auto; /* keeps aspect ratio */
    display: block; /* removes extra spacing below image */
}

/************* Product Details Page ***************/
.summary #check_pincode, .summary #shiprocket_pincode_check {
    height: 27px;
    border-radius: 5px;
    border: 1px solid #626262;
    padding: 3px;
}
button#check_pincode {
    height: 35px !important;
    background-color: #722b1d;
    color: #fff;
    font-weight: 600;
    padding: 0 10px !important;
    border-radius: 5px;
}
button#check_pincode:hover {
   background-color: #a03e28;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
    display: block;
    font-weight: 500;
    color: #626262;
}
.woocommerce .star-rating span {
    color: #af0d0d;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #626262;
    font-weight: 500;
}
.crstar-rating-svg .cr-rating-icon-frnt .cr-rating-icon {
    fill: #af0d0d !important;
}
.ivole-meter .ivole-meter-bar {
    background: -webkit-linear-gradient(top, #af0d0d, #af0d0d);
    background: linear-gradient(to bottom, #af0d0d, #af0d0d);
    background-color: #af0d0d;
}
.woocommerce p.stars.selected a:not(.active)::before {
    color: #af0d0d;
}
.woocommerce p.stars.selected a.active::before {
    color: #af0d0d;
}
.woocommerce p.stars a::before {
    color: #af0d0d;
}
.crstar-rating-svg .cr-rating-icon-base .cr-rating-icon-bg {
    stroke: #af0d0d;
}
.woocommerce .star-rating::before {
    color: #af0d0d;
}
.reviews-count {
    width: 100%;
    float: left;
}
.cr-all-reviews-shortcode .cr-summaryBox-wrap .cr-summary-separator-int,
.cr-reviews-grid .cr-summaryBox-wrap .cr-summary-separator-int {
    width: 1px;
    height: 124px;
    background-color: #626262;
}
.ivole-meter {
    background: #d9d9d9;
    background: -webkit-linear-gradient(top, #d9d9d9, #d9d9d9);
    background: linear-gradient(to bottom, #d9d9d9, #d9d9d9);
    background-color: #d9d9d9;
    box-shadow: none;
}
.cr-all-reviews-shortcode .cr-summaryBox-wrap .cr-add-review-wrap .cr-all-reviews-add-review:hover,
.cr-reviews-grid .cr-summaryBox-wrap .cr-add-review-wrap .cr-all-reviews-add-review:hover {
    background-color: #521b0a;
}
.cr-all-reviews-shortcode .cr-summaryBox-wrap .cr-add-review-wrap .cr-all-reviews-add-review,
.cr-reviews-grid .cr-summaryBox-wrap .cr-add-review-wrap .cr-all-reviews-add-review {
    display: block;
    background-color: #521b0a;
    color: #ffffff;
    border: 0;
    height: 40px;
    line-height: 20px;
    font-size: 15px;
    width: auto;
    padding: 10px 20px;
    margin: 0;
    border-radius: 8px;
    font-weight: 500;
}
.cr-ajax-search {
    display: none !important;
}

.product-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.product-gallery {
    max-width: 800px;
}

.product-summary {
    padding: 10px;
}

/* Vertical thumbnails */
.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0px;
}

/* --- Add to Cart button --- */
.single_add_to_cart_button {
    background: #fff;
    border: 2px solid #222;
    color: #222;
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single_add_to_cart_button:hover {
    background: #222;
    color: #fff;
}

/* --- Buy it Now button --- */
.buy-now-button {
    background: #722b1d; /* coffee brown color */
    color: #fff;
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-now-button:hover {
    background: #a03e28;
}

/* --- Quantity box --- */
.quantity input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 0 5px;
}

/* --- Social icons --- */
.product-summary .share {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-summary .share a img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.product-summary .share a img:hover {
    transform: scale(1.1);
}
.single-product .main-title {
    display: none;
}
p.title-view {
    font-size: 26px;
    margin: 0;
}
.woocommerce div.product {
    margin-top: 50px;
}

form.cart {
    display: flex;
    gap: 0rem;
}
button.single_add_to_cart_button.button.alt {
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
    border-radius: 0.5rem;
}
button.single_add_to_cart_button.button.alt:hover {
    background: #af0d0d;
}
.single_add_to_cart_button,
.buy-now-button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    font-size: 1rem;
}
a.woocommerce-review-link {
    color: #626262;
    text-decoration: auto;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
    border-radius: 25px;
}

/************* End Product Details Page ***************/

/* Quantity box */
.woocommerce .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}
.woocommerce .quantity .qty-btn {
    background: transparent;
    border: none;
    color: #333;
    font-size: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
}
.woocommerce .quantity .qty-btn:hover {
    background: #f69d28;
    color: #fff;
}
.woocommerce .quantity .qty {
    width: 25px;
    text-align: center;
    border: none;
    height: 40px;
    font-size: 16px;
    outline: none;
    box-shadow: none;
    -moz-appearance: textfield;
}
.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* End Quantity box */

.woocommerce .quantity .qty-btn:hover {
    background: #af0d0d;
}
/* Remove arrows in quantity input (Chrome, Safari, Edge) */
.woocommerce .quantity input[type="number"]::-webkit-outer-spin-button,
.woocommerce .quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove arrows in Firefox */
.woocommerce .quantity input[type="number"] {
    -moz-appearance: textfield;
}

.share-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.share-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.social-buttons {
    display: flex;
    gap: 0rem;
}

.social-btn {
    padding: 0.5rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn.whatsapp {
    background: none;
    color: #16a34a;
}

.social-btn.instagram {
    background: none;
    color: #ec4899;
}

.social-btn.facebook {
    background: none;
    color: #2563eb;
}
.social-btn:hover {
    opacity: 0.8;
}
.availability-info {
    font-size: 0.875rem;
}
.available-label {
    font-weight: 500;
    color: #6b7280;
}
span.availability-label {
    color: #6b7280;
    font-weight: 500;
}
.platforms {
    color: #3b82f6;
    margin-left: 0.5rem;
}
.product_meta {
    display: none !important;
}
.stock-status {
    color: #059669;
    margin-left: 0.5rem;
}
.availability {
    margin-bottom: 15px;
}
.woocommerce div.product form.cart {
    margin-bottom: 1em;
}
.availability-info {
    display: flex;
    align-items: center;
    gap: 0rem;
}
.woocommerce-product-details__short-description p {
    color: #626262;
}
ol.flex-control-nav.flex-control-thumbs li {
    border: 1px solid #000;
}

/******* Login Page ********/
.woocommerce form.woocommerce-form-login {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.woocommerce h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.woocommerce form.woocommerce-form-login .form-row {
    margin-bottom: 20px;
}
.woocommerce form.woocommerce-form-login label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}
.woocommerce .woocommerce-form-login input.input-text {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border 0.3s ease;
}
.woocommerce .woocommerce-form-login input.input-text:focus {
    border-color: #521b0a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(82, 27, 10, 0.2);
}
.woocommerce-form__label-for-checkbox {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.woocommerce .woocommerce-form-login button.woocommerce-button {
    width: 100%;
    padding: 12px;
    background: #521b0a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
}
.woocommerce .woocommerce-form-login button.woocommerce-button:hover {
    background: #3d1408;
    transform: translateY(-2px);
}
.woocommerce .lost_password {
    text-align: center;
    margin-top: 15px;
}
.woocommerce .lost_password a {
    font-size: 14px;
    color: #521b0a;
    text-decoration: none;
    transition: color 0.3s ease;
}
.woocommerce .lost_password a:hover {
    color: #3d1408;
    text-decoration: underline;
}
.wp-singular .main-title {
    display: none;
}
/******* End Login Page ********/

/* WooCommerce Lost Password Form Styling */
.woocommerce .woocommerce-ResetPassword {
    max-width: 450px;
    margin: 40px auto;
    padding: 25px 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: "Segoe UI", Roboto, sans-serif;
}

.woocommerce .woocommerce-ResetPassword p:first-of-type {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.woocommerce .woocommerce-ResetPassword label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.woocommerce .woocommerce-ResetPassword .input-text {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.woocommerce .woocommerce-ResetPassword .input-text:focus {
    border-color: #f69d28; /* Highlight with your theme color */
    box-shadow: 0 0 0 3px rgba(246, 157, 40, 0.2);
}

.woocommerce .woocommerce-ResetPassword .woocommerce-Button {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    background: #521b0a; /* button color */
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.woocommerce .woocommerce-ResetPassword .woocommerce-Button:hover {
    background: #7a2d10; /* slightly lighter hover */
    color: #ffffff;
}

/* Accessibility improvements */
.woocommerce .woocommerce-ResetPassword .required {
    color: #e63946;
}

/* My Account Navigation */
.woocommerce-MyAccount-navigation {
    background: #fff;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 12px;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 18px;
    background: #f7f7f7;
    border-radius: 8px;
    color: #521b0a;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: #521b0a;
    color: #fff;
}

/* Active Menu Item */
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #521b0a;
    color: #fff;
    font-weight: 600;
}

/* My Account Content */
.woocommerce-MyAccount-content {
    background: #fff;
    padding: 10px;
    margin-top: 5px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 15px;
    line-height: 1.6;
}

/* Buttons inside account page */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: #521b0a !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #3d1507 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 22%;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 70%;
}

/*****************  Cart Page ***********************/
.woocommerce-cart .product-name dl,
.woocommerce-cart .product-name .variation {
    display: none !important;
}

.wc-block-cart-item__quantity {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wc-block-components-quantity-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wc-block-components-quantity-selector__input {
    width: 55px;
    text-align: center;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.wc-block-components-quantity-selector__button {
    background: #521b0a;
    color: #fff;
    border: none;
    padding: 6px 10px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wc-block-components-quantity-selector__button:hover:enabled {
    background: #7a2d12;
    padding: 5px;
}
.woocommerce-cart .wc-block-components-quantity-selector {
    margin: 0;
    width: 111px;
}

.wc-block-cart-item__remove-link {
    background: transparent;
    color: #521b0a;
    border: 1px solid #521b0a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-block-cart-item__remove-link:hover {
    background: #521b0a;
    color: #fff;
}
.wc-block-cart-item__prices {
    color: #626262;
}
.wc-block-components-product-metadata {
    display: none;
}
a.wc-block-components-product-name {
    text-decoration: none;
    color: #262626;
}

.wc-block-cart-item__remove-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    color: #521b0a;
    border: 1px solid #521b0a;
    border-radius: 8px;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.wc-block-cart-item__remove-link::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f2ed";
    font-size: 18px;
    color: #521b0a !important;
}

.wc-block-cart-item__remove-link:hover {
    background: #521b0a;
    border-color: #521b0a;
}

.wc-block-cart-item__remove-link:hover::before {
    color: #fff;
}

.woocommerce-cart button.wc-block-cart-item__remove-link {
    font-size: 0px !important;
}
.woocommerce-cart .wc-block-components-product-badge {
    border: 0px solid !important;
    border-radius: 4px;
    font-weight: 500;
    padding: 0;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-weight: 500;
}
.wc-block-components-button:not(.is-link):disabled .wc-block-components-button__text {
    opacity: 1 !important;
    font-weight: 700;
}
button.wc-block-components-button,
.wc-block-cart__submit-container {
    background: #521b0a;
    color: #fff;
    border-radius: 5px;
}
button.wc-block-components-button:hover,
.wc-block-cart__submit-container:hover {
    background: #78350f;
    color: #fff;
    border-radius: 5px;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    text-decoration: none;
    color: #ffffff;
}
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-weight: 500;
    font-size: 19px;
}
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-weight: 500;
}
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    text-align: center;
    color: green;
    font-weight: 500;
}
.woocommerce table.shop_table tbody th {
    font-weight: 500;
    border-top: 1px solid #521b0a;
}
.woocommerce table.shop_table tbody th a {
    color: #626262;
    font-weight: 500;
}
/***************** End  Cart Page ***********************/

/* ---------- HEADER BASE ---------- */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
}

/* Logo Center */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    max-height: 60px;
}

/* Navigation Desktop */
.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #78350f;
}

/* Header Actions (icons) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn img {
    width: 22px;
    height: 22px;
}

/* Menu Toggle (hamburger) */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    display: block;
    width: 26px;
    height: 3px;
    background: #521b0a;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ---------- MOBILE / TABLET ---------- */
@media (max-width: 991px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 100%;
        background: #f3f1f1;
        padding: 15px 20px;
        border-top: 1px solid #eee;
        z-index: 99;
    }

    .nav.active {
        display: flex;
    }

    /* Show toggle */
    .menu-toggle {
        display: block;
    }

    /* Header Layout Small Screen */
    .header-content {
        justify-content: space-between;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto;
    }

    .header-actions {
        gap: 12px;
    }
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #521b0a; /* your theme color */
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block; /* show only on mobile/tablet */
    }
}


/******************* Menu and Search ****************************/
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.icon-btn img {
    width: 28px;
    height: 28px;
}

.customer-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 100px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    z-index: 1000;
    min-width: 180px;
}

.customer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.customer-menu ul li {
    margin: 0;
}

.customer-menu ul li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.customer-menu ul li a:hover {
    background: #f5f5f5;
}

.search-box {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px;
    z-index: 1000;

    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-box.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.search-box form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box input[type="search"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.search-box input[type="search"]:focus {
    border-color: #af0d0d;
}

.search-box button[type="submit"] {
    background: #af0d0d;
    border: none;
    color: #fff;
    padding: 11px 14px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.search-box button[type="submit"]:hover {
    background: #af0d0d;
}

/******************* End Menu and Search ***********************/

.woocommerce h2 {
    font-weight: 500;
}
.woocommerce table.shop_table th {
    font-weight: 500;
    border-color: #af0d0d;
}
.woocommerce ul.order_details li strong {
    font-size: 15px;
    font-weight: 500;
    color: #626262;
}
.woocommerce ul.order_details li {
    font-size: 12px;
}
.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
    font-weight: 500;
    border-color: #af0d0d;
}
.woocommerce table.shop_table {
    border: 1px solid #af0d0d;
}
.woocommerce table.shop_table td {
    border-top: 1px solid #af0d0d;
}
.product-name a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}
.woocommerce .woocommerce-customer-details address {
    border: 1px solid #af0d0d;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.woocommerce-additional-fields {
    display: none !important;
}
.wc-block-components-checkout-place-order-button__text {
    font-weight: 600;
    font-size: 18px;
}
.wc-block-components-form.wc-block-checkout__form p {
    color: #626262;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    border: 1px solid hsla(0, 0%, 7%, 0.11) !important;
    min-width: 0px !important;
    min-height: 0 !important;
    top: -5px !important;
}
div#order-notes {
    display: none;
}
fieldset#order-fields {
    display: none;
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    border-top: none !important;
    padding-top: 0px !important;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
    background: #af0d0d !important;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
    border: 1px solid #af0d0d !important;
}



.step-icon {
    width: 80px;
    height: 80px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    color: #521b0a;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
}

.step-title {
    font-weight: 600;
    color: #1a202c;
    font-size: 18px;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
}

/*********************** Content Page *****************************/
.static-page h2 {
    color: #AF0D0D;
}
.static-page h3 {
    color: #521B0A;
}
.static-page p {
    color: #626262;
}
.links a {
    color: #ffffff !important;
}
.footer-middle .links a:hover {
    color: #AF0D0D !important;
}
.woocommerce-account p a {
    color: #AF0D0D !important;
}
a.edit {
    color: #AF0D0D;
}
.spswiper-wrapper {
    border: 1px solid #ddd;
}
.product-info p {
    max-height: 57px;
    margin-bottom: 27px;
}
/*********************** End Content Page *************************/



@media (max-width: 767px) {
    .promo-title {
        font-size: 28px;
    }

    .promo-subtitle {
        font-size: 20px;
    }
    .btn-primary {
        font-size: 15px;
    }
    .hero {
        height: 180px;
    }
    .about-content {
        gap: 5px;
    }
    .about-text p {
        padding: 10px 23px;
        text-align: left;
    }
    .products {
        padding: 35px 20px;
    }
    .btn-buy {
        font-size: 17px;
        border-radius: 8px;
    }
    .price-offer .woocommerce-Price-amount.amount,
    .price-original {
        font-size: 19px;
    }
    .customer-menu {
        top: 66px;
        right: 0px;
    }
    .social {
        padding: 25px 20px;
    }
    .search-box {
        right: 0px;
        border-radius: 5px;
    }
    .woocommerce-page ul.products[class*="columns-"] li.product {
        width: 100%;
    }
    .cr-all-reviews-shortcode .cr-summaryBox-wrap .cr-summary-separator-int {
        background-color: unset;
    }
}

@media only screen and (max-width: 600px) {
}
.wc-success-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99999;
    display: none;
}

a.added_to_cart.wc-forward {
    display: none;
}

/******************* Variation Product *****************/
.variations_form.cart {
    display: flex;
    gap: 0rem;
    flex-direction: row;
    flex-wrap: wrap;
}
.woocommerce div.product form.cart .variations select {
    max-width: 100%;
    min-width: 39%;
    display: inline-block;
    margin-right: 1em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 0em;
    background-size: 16px;
    -webkit-background-size: 16px;
    background-position: calc(100% - 12px) 50%;
    -webkit-background-position: calc(100% - 12px) 50%;
    height: 36px;
    padding: 10px;
    margin-bottom: 10px;
}
.woocommerce-variation-price {
    margin-bottom: 15px;
}
.woocommerce div.product form.cart .variations label {
    font-weight: 500;
    text-align: left;
}
span.woo-selected-variation-item-name {
    font-weight: 500 !important;
    color: #af0d0d;
    font-size: 15px;
}
.variable-item-contents .variable-item-span {
    padding: 0 7px;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover {
    -webkit-box-shadow: var(--wvs-selected-item-box-shadow,0 0 0 2px #521B0A);
    box-shadow: var(--wvs-selected-item-box-shadow,0 0 0 2px #521B0A);
}
.woocommerce-variation-add-to-cart button.single_add_to_cart_button.button.alt {
    padding: 13px 25px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #af0d0d;
    font-size: 1.25em;
}
a.reset_variations {
    color: #ff1111f5;
    font-size: 16px !important;
    text-decoration: none;
}
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
    font-weight: 500;
    text-decoration: none !important;
    margin-left: 10px;
}
.woocommerce div.product form.cart .variations {
    margin-bottom: 0em;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item .variable-item-span {
    padding: 0px 10px !important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    -webkit-box-shadow: var(--wvs-item-box-shadow,0 0 0 1px #521B0A) !important;
        color: var(--wvs-item-text-color, #626262);
}
.custom-static-block p {
    color: #626262;
}
.custom-static-block strong {
    color: #521B0A;
}
.cr-all-reviews-shortcode .cr-review-form-not-logged-in .cr-review-form-continue {
        background-color: #521B0A;
        height: 24px;
        border-radius: 21px; 
}
.cr-all-reviews-shortcode .cr-review-form-not-logged-in .cr-review-form-continue:hover {
 background-color: #3d1507;
}
#tab-description p {
    color: #626262;
}
/******************* End Variation Product *****************/
.product-price {
    font-size: 23px;
    color: #af0d0d;
}

@media (max-width: 500px) {
.cr-all-reviews-shortcode .cr-summaryBox-wrap .cr-add-review-wrap, .cr-reviews-grid .cr-summaryBox-wrap .cr-add-review-wrap {
    padding: 0px;
}

}

@media (max-width: 480px) {
    body img.custom-logo {
        max-width: 160px;
        height: 47px;
    }
    .about-text {
    padding: 0px;
    }
    .about-title {
    font-size: 26px;
    font-weight: bold;
    color: #521b0a;
    margin-bottom: 0px;
    text-align: left;
    padding: 0 22px;
    }
}


.container-hight{
    min-height: 550px;
}
















