/*
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: 5.6
Tested up to: 7.0
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
 * ----------------------------------------------------------------------------
 */

/* Global CSS Variables & Overrides for Bootstrap 5 */
/* Theme-Font's */
@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:ital,wght@0,400..700;1,400..700&family=Libertinus+Math&display=swap');

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/futura/FuturaCyrillicBook.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/futura/FuturaCyrillicMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/futura/FuturaCyrillicDemi.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/futura/FuturaCyrillicBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/futura/FuturaCyrillicExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/futura/FuturaCyrillicHeavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Desktop */
    --fs-body: 18px;
}

body {
    font-size: var(--fs-body);
}


/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    :root {
        --fs-body: 16px;
    }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
    :root {
        --fs-body: 16px;
    }
}


:root {
    --primary-color: #F585B2;
    --border-light: #FFFFFF33;
    --divider-color: #CECECE;
    --bg-color: #E7DFD2;
    --text-color: #222;
    --text-muted: #666;
    --accent-pink-light: #fae8eb;
    --accent-pink: #f2a9c3;
    --footer-bg: #111;
    --white: #ffffff;
    --black: #4B2328;
    --black-rgb: 0, 0, 0;
    --text: #4B2328;
    --theme-bg: #E8D9D9;

    --font-family: 'Futura PT', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
.navbar-brand {
    margin: 0;
    padding: 0;
}
html,
body {
    scroll-behavior: smooth;
}
section, footer, header{
	width:100%;
	float:left;
}
/* Common Css */
/* Heading & Body Text*/

.head-highlighter {
    font-weight: 500;
    line-height: 24px;
    font-size: var(--fs-body);
    color: var(--text);
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.text-lg {
    font-size: var(--fs-body);
    line-height: 27px;
    color: var(--text);
    font-weight: 400;
}

.text-md {
    font-weight: 16px;
    line-height: 27px;
    color: var(--text);
    font-weight: 400;
}

.heading-xl {
    font-size: 36px;
    line-height: 53px;
    color: var(--black);
    font-weight: 600;
}
.inhertfont{  font-family: "Ibarra Real Nova", serif !important}
/* Base custom classes to support WooCommerce / Theme */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: unset;
}

.bg-light-pink {
    background-color: var(--accent-pink-light);
}

.bg-cream {
    background-color: #f4eee7;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Custom Buttons overriding Bootstrap */
.custom-btn {
    padding: 14px 36px;
    font-family:  "Libertinus Math", system-ui;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    /* Sharp edges per design */
    transition: all 0.3s ease;
}

.btn-dark.custom-btn {
    background-color: var(--black);
    border: 1px solid var(--black);
}

.btn-dark.custom-btn:hover {
    background-color: #333;
    border-color: #333;
}

.btn-outline-dark.custom-btn {
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-outline-dark.custom-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Header Styles */
/* .top-banner {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
} */

.main-header {
    background-color: transparent;
    padding: 16px 32px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.main-header.header-scrolled {
    background-color: rgba(0,0,0,.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	padding: 7px 32px;
}

.nav-icons {
    font-size: 18px;
    color: var(--white);
    transition: color 0.5s ease;
}

.nav-icons:hover,
.nav-icons:active {
    color: var(--primary-color);
}

.main-header.header-scrolled .nav-icons {
    color: var(--text);
}

.main-header.header-scrolled .logo svg path {
    fill: var(--primary-color) !important;
}
span.about-text {
    font-weight: 800;
}

/* .icon-counter {
    font-size: 14px;
    color: var(--white);
    padding: 5px 8px;
    background-color: var(--black);
    font-weight: 600;
    border-radius: 20px;
    line-height: 14px;
} */

/* WooCommerce Structure Styles (Placeholder overrides) */
.woocommerce ul.products li.product {
    margin: 0 !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    margin-top: var(--bs-gutter-y) !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

Force WooCommerce products to respect Bootstrap grid .woocommerce ul.products li.product.col-12 {
    width: 100% !important;
}

@media (min-width: 768px) {
    .woocommerce ul.products li.product.col-md-6 {
        width: 50% !important;
    }
}

@media (min-width: 992px) {
    .woocommerce ul.products li.product.col-lg-3 {
         width: 23% !important;
        margin-top: 15px !important;
    }

    .woocommerce ul.products li.product.col-lg-4 {
        width: 33.33333333% !important;
    }
}

.woocommerce-loop-product__title {
    font-size: 32px !important;
    font-weight: 500;
    color: var(--black);
}

.woocommerce-Price-amount {
    font-size: 15px;
    line-height: 27px;
    color: var(--text);
    font-weight: 300;
}

.product-info {
    align-items: center;
    justify-content: space-between;
    padding: px 0 !important;
}
/* Split Layouts overrides */
.max-w-450 {
    max-width: 450px;
}

/* Newsletter form */
.newsletter-form input:focus {
    outline: none;
    box-shadow: none;
}

/* Footer overrides */
.footer-link:hover {
    color: var(--white) !important;
}

/* ==========================Offcanvas    ========== */
#mainOffcanvas {
    --bs-offcanvas-width: 30vw;
    background: #E7DFD2;
}

#mainOffcanvas .offcanvas-body ul,
#mainOffcanvas .offcanvas-body .navbar-nav {
    display: flex;
    flex-direction: column !important;
    gap: 15px;
    align-items: flex-start;
}

#mainOffcanvas .offcanvas-body ul li {
    display: block;
    width: 100%;
}

/* 1. Force the Mega Menu wrapper to stack vertically */
#mainOffcanvas #mega-menu-primary.mega-menu-horizontal {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* 2. Reset the horizontal float that the plugin enforces */
#mainOffcanvas #mega-menu-primary>li.mega-menu-item {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

/* 3. Ensure the anchor links behave like full-width buttons */
#mainOffcanvas .mega-menu-link {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    padding: 15px 20px !important;
}

/* ========================== Hero Section ================================*/
/* Hero Section */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #000;
    /* Black background behind video */
}

/* Ensure the wrapper is the reference point */

/* 2. The wrapper now fills the container, not the screen */
.video_wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Maintains the 16:9 shape */
    overflow: hidden;
}

.video_wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(var(--black-rgb), 50%);
    position: absolute;
    top: 0;
    left: 0;
}

.video_wrapper video {
    min-height: 900px;
}

/* 3. The absolute-fill class remains the same */
.absolute-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border: none;
    /* This makes the video un-clickable/un-controllable */
    pointer-events: none !important;
}

iframe.absolute-fill {
    width: 100% !important;
    height: 100% !important;
    /* This scales the iframe up so YouTube's own internal padding/controls are hidden */
    transform: scale(1.2);
}

/*================= Marquee Wrapper ================= */
.marquee-section {
    width: 100%;
    overflow: hidden;
    background-color: var(--black);
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    gap: 24px;
}

.marquee-track span {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary-color);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*================= About Us ================= */
.about-section {
    border-bottom: 1px solid var(--divider-color);
    padding: 40px 0;
	background: #E7DFD2;
}

/*================= Custom Design ================= */
.custom-design {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 72px 0 120px 0;
    position: relative;
	width: 100%;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
	 display: flex;
     align-items: center;
}
/*=
.custom-design::before {
    content: '';
    background-image: url("https://hivends.org/khasroz/site/wp-content/uploads/2026/07/custom-left.png");
    background-repeat: no-repeat;
     background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 12%;
	 cursor: pointer;
}
*/

/* ==========================================================================
   MAX MEGA MENU - VARIABLES & ALIGNMENT BRIDGE
   ========================================================================== */

#mega-menu-wrap-primary .mega-menu-toggle {
    display: none !important;
}

#mega-menu-wrap-primary, 
#mega-menu-wrap-primary ul#mega-menu-primary {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
   
    display: flex !important;
    justify-content: center !important;
    align-items: center !important; /* Forces perfect middle vertical alignment */
}

/* 3. Link plugin tags natively to your precise :root design tokens */

@media (max-width: 768px){
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
        color: #212529 !important;
        background-color: transparent !important;
    }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  
    height: 40px;
    padding: 0px !important;
    background: transparent;
    text-align: left;
    color: #212529 !important;
    }
}

 /* ==========================================================================
   MAX MEGA MENU - VARIABLES & ALIGNMENT BRIDGE
   ========================================================================== */

   span.highlighter {
    font-size: 16px;
    font-weight: 800;
    line-height:24px;
}
p.description-text {
    font-size: var(--fs-body);
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0%;
    color: #4B2328;
}
h4.item-title {
    font-size: 20px;
    font-weight: 500 !important;
}
.item-prize {
    color: #444444 !important;
    font-size: 20px;
    font-weight: 500 !important;
}
a.btn.view-btn {
    background-color: #4B2328;
    color: #E7DFD2;
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 0%;
    padding: 7px 16px !important;
    gap: 56px !important;
    font-weight: 500;
    border-radius: 0;
}
.book-appointment-link {
    margin-top: 25px;
}
h6.head-highlighter-kash {
    font-weight: 500;
    line-height: 24px;
    font-size: 16px;
    color: var(--text);
    letter-spacing: 2.8px;
    text-transform: uppercase;
}
h6.feature-heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: #000000;
    letter-spacing: 0%;
}
.feature-border {
    border-bottom: 2px solid #000;
    padding: 9px 0 7px 0;
}
h2.community-heading {
     color: #4B2328;
    font-size: 39px;
    line-height: 47px;
    font-weight: 400;
}
strong.community-highlight {
    font-weight: 700;
    font-size: 56px;
    line-height: 58px;
}
p.footer-description {
    font-size: var(--fs-body);
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0%;
    color: #E7DFD2 !important;
}
ul.list-unstyled.footer-nav li {
    font-size: var(--fs-body);
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0%;
    color: #E7DFD2;
	padding:5px 0px;
}
a.text-secondary.text-decoration-none.footer-link {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0%;
    color: #ffffffc9 !important;
}
.footer-nav-link ul li span {
     color: #ffffffc9 !important;
}
.newsletter-form input::placeholder{
    color: #c5c4c4 !important;
    opacity: 1;
}
p.copyright-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color:#E7DFD2;
    letter-spacing: 0%;
}
span.copyright-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #E7DFD2;
    letter-spacing: 0%;
}
.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) #44444466 !important;
}
.appointment-hero{
    position: relative;
    height: 100vh;
    background: center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;

}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:650px;
}

.hero-content h1{
    font-size:52px;
    letter-spacing:6px;
    text-transform:uppercase;
}

.hero-content p{
    margin:25px 0;
    line-height:1.8;
}

.book-btn{
    display:inline-block;
    padding:14px 40px;
    background:#4B2328;
    color:#fff;
    text-decoration:none;
    letter-spacing:2px;
}

.book-btn:hover{
    background:#fff;
    color:#4B2328;
}
.quantity {
    display: none !important;
}
.h6.mb-4 {
  color: #E7DFD2;
}
.woocommerce div.product form.cart .reset_variations:hover {
  color: #E7DFD2;
  background: #4B2328;
}

@media(max-width:767px){
    section.community-section.container {
    margin-top: -90px !important;
    margin-bottom: 0 !important;
}
.custom-design::before {
    top: 5% !important;
}
.custom-design {
    padding: 0 0 60px 0 !important;
}
.design-image {
    height: 267px !important;
}
.heading-xl {
    font-size: 38px;
    line-height: 45px;
}
h2.community-heading {
    font-size: 34px;
}
strong.community-highlight {
    font-size: 51px;
    line-height: 52px;
}
}

.woocommerce .products ul, .woocommerce ul.products {
    padding-top: 0;
    list-style: none outside;
    clear: both;
    margin-top: 0 !important;
}

.site-logo{
    position: relative;
    display: inline-block;
}

.site-logo img{
    max-height: 50px;
    transition: all .3s ease;
}

/* White logo default */
.logo-white{
    display:block;
}

/* Dark logo hidden */
.logo-dark{
    display:none;
}

/* Header scroll hone ke baad */

.main-header.header-scrolled .logo-white{
    display:none;
}

.main-header.header-scrolled .logo-dark{
    display:block;
}


/* Add New Css */
.aabroo-collection {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}
.site-logo img {
    max-height: 50px;
    transition: all .3s ease;
    margin-top: 10px;
    width: 180px;
}
.product-image{
    position:relative;
    overflow:hidden;
}
.product-image{
    position:relative;
    overflow:hidden;
}

/* Overlay */
.product-hover{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;

    transition:.3s;
}

/* Hover */
.product-card:hover .product-hover{
    opacity:1;
    visibility:visible;
}

/* Popup Box */
.quick-popup{
    position:absolute;
    transform:translate(-50%,-50%);
    width:85%;
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
}

.sizes{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:15px 0;
}

.sizes span{
    border:1px solid #ddd;
    padding:8px 15px;
    cursor:pointer;
}

.quick-popup .button{
    display:block;
    width:100%;
    background:#000;
    color:#fff;
    padding:12px;
    text-decoration:none;
}
.product-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.product-card:hover .product-hover {
    opacity: 1;
    visibility: visible;
}

.quick-popup {
    width: 90%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}
.add-main-content {
    display: flex;
    justify-content: space-between;
}
.product-info h3 {
    padding: 0px !important;
}
.product-image{
    position: relative;
}
.wishlist-icon{
    position: absolute;
    top: 0px;
    right: 12px;
    z-index: 999;
}
.wishlist-icon span.yith-wcwl-add-to-wishlist-button__label {
    display: none;
}
.product-image{
    position: relative;
    overflow: hidden;
}

.product-arrows{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    opacity: 0;
    transition: .3s;
    pointer-events: none;
}

.product-card:hover .product-arrows{
    opacity: 1;
}

.product-arrows .arrow{
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    cursor: pointer;
    font-size: 18px;
    pointer-events: auto;
    transition: .3s;
}

.product-arrows .arrow:hover{
    background: #fff;
}

.collage-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:250px 250px;
    gap:15px;
}

.big{
    grid-row:1 / span 2;
}

.tall{
    grid-row:1 / span 2;
}

.small{
    grid-row:span 1;
}

.collage-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
   /*  border-radius:20px; */
    display:block;
}

.swiper{
    width:100%;
    overflow:hidden;
}

.swiper-slide{
    padding:10px;
}

.swiper-pagination{
    position:relative;
    margin-top:25px;
}
.collection-item{
    position:relative;
}

.collection-image{
    position:relative;
    overflow:hidden;
}

.collection-image img{
    width:100%;
    display:block;
}

.collection-hover{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    opacity:0;
    transition:.35s;
}

.collection-item:hover .collection-hover{
    opacity:1;
}

.hover-icons{

    position:absolute;
    top:15px;
    right:15px;

    display:flex;
    gap:12px;
    color:#fff;
}

.left-arrow,
.right-arrow{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

.left-arrow{
    left:15px;
}

.right-arrow{
    right:15px;
}

.collection-hover .add_to_cart_button{

    background:#fff;
    color:#000;
    padding:12px 25px;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
}

.collection-hover .add_to_cart_button:hover{

    background:#000;
    color:#fff;
}
section.why-choose-us.py-5 .head-highlighter {
    font-weight: 500;
    line-height: 24px;
    font-size: 16px;
    color: #4B2328;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}
section.why-choose-us.py-5 .heading-xl {
    font-size: 30px;
    line-height: 53px;
    color: #E7DFD2;
    font-weight: 600;
}
section.why-choose-us.py-5 h6.feature-heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: #E7DFD2;
    letter-spacing: 0%;
}
section.why-choose-us.py-5 .feature-border
 {
    border-bottom: 2px solid #E7DFD2;
    padding: 0px 0 0px 0;
}
section.why-choose-us.py-5 p.description-text {
    font-size: var(--fs-body);
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0%;
    color: #E7DFD2;
}


.collection-item{
    position:relative;
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-hover{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
}

.product-image:hover .product-hover{
    opacity:1;
    visibility:visible;
}

.quick-popup{
    width:80%;
    max-width:300px;
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:14px;
    transform:translateY(20px);
    transition:.35s;
}

.product-image:hover .quick-popup{
    transform:translateY(0);
}

.quick-popup h4{
    margin-bottom:8px;
}

.quick-popup .price{
    display:block;
    margin-bottom:15px;
}

.sizes{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:20px;
}

.sizes span{
    width:42px;
    height:42px;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.quick-popup .button{
    width:100%;
    display:block;
    background:#111;
    color:#fff;
    padding:12px;
    text-decoration:none;
}

.wishlist-icon{
    position:absolute;
    top:15px;
    right:15px;
    z-index:5;
}
.product-info h3 {
    padding: 0px !important;
    font-size: 20px !important;
	color:#4B2328;
}
.wishlist-icon {
  position: absolute;
  top: 389px;
  right: 6px;
  z-index: 10;
}


.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg, .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor img {
    width: 22px;
}
#quickViewModal{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
display:none;
z-index:9999;
}

.modal-content{
width:420px;
background:#fff;
padding:20px;
border-radius:16px;
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
}
#quickViewModal{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
display:none;
z-index:9999;
}

.modal-content{
width:420px;
background:#fff;
padding:20px;
border-radius:16px;
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
}

#quickViewModal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;
}

.quick-view-content{

    width:720px;
    max-width:92%;

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    position:relative;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.quick-popup-inner{

    display:flex;

}

.quick-left{

    width:48%;

}

.quick-left img{

    width:100%;

    height:480px;

    object-fit:cover;

    display:block;

}

.quick-right{

    width:52%;

    padding:35px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.quick-right h3{

    font-size:30px;

    margin-bottom:10px;

}

.price{

    font-size:22px;

    margin-bottom:25px;

}

.sizes{

    display:flex;

    gap:12px;

    margin-bottom:30px;

}

.sizes span{

    width:46px;

    height:46px;

    border:1px solid #ddd;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

}

.quick-right .button{

    width:100%;

    background:#553126;

    color:#fff;

    padding:15px;

    text-align:center;

    text-decoration:none;

    border-radius:8px;

}

.close{

    position:absolute;

    top:15px;

    right:18px;

    width:35px;

    height:35px;

    border-radius:50%;

    background:#fff;

    text-align:center;

    line-height:35px;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 0 10px rgba(0,0,0,.15);

    z-index:10;

}
.collection-item .add-main-content {
    display: flex;
    justify-content: space-between;
	margin-top: 8px;
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-arrow{  
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
}

.prev-arrow{
    left:12px;
}

.next-arrow{
    right:12px;
}

.product-image:hover .product-arrow{
    opacity:1;
    visibility:visible;
}

.product-arrow:hover{
    background:unset;
    color:#fff;
}

.appointment-section{
    padding:0px 0;
    background:#f8f8f8;
}

.appointment-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.appointment-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:0px;
}

.appointment-content{
    width:100%;
	 padding: 60px;
   
}

.appointment-form{
    width:100%;
    background:#fff;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.sub-title{
    display:inline-block;
    color:#fff;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.appointment-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#fff;
    line-height:1.2;
}

.appointment-content p{
    font-size:16px;
    color:#fff;
    line-height:1.8;
    margin-bottom:25px;
}

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

.appointment-list li{
    margin-bottom:15px;
    color:#fff;
    font-size:16px;
}
.appointment-form input{
    width:100%;
}

.appointment-form .wpcf7-form p{
    margin-bottom:18px;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus{
    border-color:#b68b3d;
}

.appointment-form textarea{
    height:140px;
    resize:none;
}

.appointment-form input[type="submit"]{
    background:#000;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.appointment-form input[type="submit"]:hover{
    background:#000;
}
.appointment-wrapper{
    display:flex;
    align-items:stretch;
    max-width:1200px;
    margin:80px auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.appointment-left{
    width:45%;
    background:#0d0d0d;
    color:#fff;
    padding:70px 60px;
}

.appointment-right{
    width:55%;
    background:#fff;
    padding:60px;
}

.appointment-left .sub-title{
    color:#c79a3b;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.appointment-left h2{
    font-size:54px;
    line-height:1.1;
    margin:20px 0;
}

.appointment-left p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:35px;
}

.appointment-left ul{
    list-style:none;
    padding:0;
    margin:0;
}

.appointment-left li{
    margin-bottom:18px;
    font-size:18px;
}

.appointment-right input,
.appointment-right textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:20px;
    font-size:16px;
    box-sizing:border-box;
}

.appointment-right input:focus{
    border-color:#c79a3b;
    outline:none;
}

.appointment-right input[type="submit"]{
    background:#c79a3b;
    color:#fff;
    border:none;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.appointment-right input[type="submit"]:hover{
    background:#a87b24;
}
.woocommerce ul.products li.product a {
    text-decoration: none;
    color: #000;
	font-weight:300;
	font-size: 20px;
}
quick-right .button.add_to_cart_button.ajax_add_to_cart {
    background: #000;
    color: #fff;
}
.row.align-items-center.g-0 {
width:100% !important;
}
  .appointment-wrapper .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        background: #000 !important;
    }
.appointment-wrapper{
	padding:0px
}
.add-wish-list a.button.add_to_cart_button.ajax_add_to_cart {
    background: unset !important;
}
.quick-right .button.add_to_cart_button.ajax_add_to_cart {
    background: #000;
    color: #fff;
	font-size: 14px;
}
.aabroo-collection-right a:hover {
    font-weight: 600;
}
.collageSlider{
    overflow:hidden;
}

.collageSlider .swiper-slide{
    width:100%;
}

.collage-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:250px 250px;
    gap:10px;
}

.collage-grid .big{
    grid-row:1/3;
}

.collage-grid .tall{
    grid-row:1/3;
}

.collage-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
   /*  border-radius:12px; */
    display:block;
}
.collageSlider .swiper-wrapper{
    transition-timing-function: linear !important;
}
/* Swiper */
.collageSlider{
    width:100%;
    overflow:hidden;
}

.collageSlider .swiper-wrapper{
    align-items:stretch;
    transition-timing-function:linear !important;
}

.collageSlider .swiper-slide{
    width:100%;
    height:auto;
}

/* Collage Grid */
.collage-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:repeat(2,300px);
    gap:15px;
    width:100%;
}

/* Grid Items */
.collage-grid .big{
    grid-column:1 / 3;
    grid-row:1 / 2;
}

.collage-grid .tall{
    grid-column:3 / 4;
    grid-row:1 / 3;
}

.collage-grid .small{
    height:100%;
}

/* Images */
.collage-grid img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
/*     border-radius:12px; */
}

/* Links */
.collage-grid a{
    display:block;
    width:100%;
    height:100%;
}
.collage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 15px;
}
.big{
    grid-row:span 2;
}

.tall{
    grid-row:span 2;
}

.small{
    height:100%;
}

.collage-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
 /*    border-radius:12px; */
}

.collage-grid a{
    display:block;
    width:100%;
    height:100%;
}
.collage-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: 50% 20%;
     border-radius: 50px;
}
.product-image{
    overflow: hidden;
}


.aabroo-collection-left h3{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4B2328;
    margin: 0;
    line-height: 1;
}
.aabroo-collection-right a{
    /* font-family: "Inter", sans-serif; */
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    color: #4B2328;
    text-decoration: none;
    position: relative;
    transition: .35s ease;
    border-radius: 50px;
    padding: 7px 20px;
	text-decoration: underline;
}
.product-slider img{
    width:100%;
    display:block;
}

.product-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    border:none;
    background:rgba(255,255,255,.9);
    cursor:pointer;
    z-index:10;
    border-radius:50%;
}

.prev-arrow{
    left:10px;
}

.next-arrow{
    right:10px;
}
.product-image{
    height: 420px;
}

.product-image .slick-slide{
    height: 420px;
}

.product-image .slick-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.add-wish-list a.button.add_to_cart_button.ajax_add_to_cart {
    font-size: 22px;
    margin-top: 0px !important;
    padding: 0px;
    font-weight: 300 !important;
	 color: #4B2328;
}
.add-wish-list {
    padding: 15px 10px;
    font-weight: 300;
}
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
}
.book-appointment-link {
    text-align: center;
    position: unset;
    top: 20px;
    right: 20px;
}

.book-appointment-link a{
    font-size:16px;
    font-weight:500;
    color:#4B2328;   /* Burgundy */
    text-decoration:unset;
    letter-spacing:1px;
    transition:.3s;
}

.book-appointment-link a:hover{
   color: #E7DFD2;
}
.entry-content {
    padding: 20px;
}
.entry-content p {
    padding: 20px 0px;
}
.entry-header {
    margin-top: 70px;
    padding: 50px 100px;
}
.sidebar-inner {
    margin-bottom: 300px;
    padding: 0px 100px;
}
.item-title {
    color: #4B2328 !important;
	font-size: 20px;
}
.archive .products.columns-4 {
    display: flex;
    margin-bottom: 300px;
    flex-wrap: wrap;
    gap: 20px;
}
/* .archive .products.columns-4 li {
    width: 25% !important;
} */

/* Mobile */


.yith-add-to-wishlist-button-block {
    margin: 0px;
}
.contact-form-box{

    max-width:700px;
    margin:0 auto;
    background:#fff;
    padding:60px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-title{

    font-size:40px;
    text-align:center;
    margin-bottom:10px;
    color:#5b3227;

}

.contact-subtitle{

    text-align:center;
    color:#777;
    margin-bottom:40px;

}

.contact-form-box p{
    margin-bottom:20px;
}

.contact-form-box input,
.contact-form-box textarea{

    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 18px;
    font-size:15px;

}

.contact-form-box textarea{

    height:180px;
    padding:18px;

}

.contact-form-box input:focus,
.contact-form-box textarea:focus{

    border-color:#7d4b39;
    outline:none;

}

.contact-form-box input[type=submit]{

    background:#7d4b39;
    color:#fff;
    height:55px;
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.contact-form-box input[type=submit]:hover{

    background:#5a3428;

}
.contact-section.py-5 {
    margin-bottom: 150px;
}

@media(max-width:768px){

.quick-popup-inner{

flex-direction:column;

}

.quick-left,
.quick-right{

width:100%;

}

.quick-left img{

height:320px;

}

.quick-right{

padding:20px;

}

.quick-view-content{

width:95%;

}
.appointment-wrapper {
    flex-wrap: wrap;
}
.appointment-wrapper .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
    background: #000 !important;
}
	.community-section {
    margin-top: -107px !important;
}
	    .related.products {
        padding: 20px;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px){

    .collage-grid{
        display:block;
    }

    .collage-grid > div{
        width:100% !important;
        margin:0;
    }

    .collage-grid img{
        width:100%;
        height:auto;
        display:block;
		margin-top:20px;
    }
	.appointment-section {
    padding: 40px 0;
    background: #f8f8f8;
}
	    .product-slider .slide img{
        height:280px;
        object-fit:cover;
    }

}


/* ================================
   SHOPIFY STYLE VARIATION LAYOUT
================================ */

.variations {
    width: 100%;
}

/* Size label */
.variations .label {
    display: block;
    width: 100%;
}

.variations .label label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

/* Variation row */
.variations .value {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Size boxes */
.variation-size-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 !important;
}

/* Individual size */
.variation-size-box {
    width: 45px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #4B2328;
    background: #E7DFD2;
    color: #4B2328;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s ease;
}

/* Hover */
.variation-size-box:hover {
    border-color: #111;
}

/* Selected */
.variation-size-box.active {
    background: #4B2328 !important;
    color: #fff;
    border-color: #4B2328 !important;
}

/* Disabled */
.variation-size-box.disabled {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
}

/* Hide WooCommerce select */


/* Clear / Reset button */
.reset_variations {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 97px;
    height: 42px;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid #60483d;
    background: transparent;

    color: #60483d;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    flex-shrink: 0;
}

/* Clear hover */
.reset_variations:hover {
    background: #60483d;
    color: #fff;
}


@media (max-width: 380px) {

    .variations .value {
        display: block !important;
    }

    .variation-size-boxes {
        margin-bottom: 12px !important;
    }

    .reset_variations {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .variations .value {
        display: flex !important;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
    }

    .variation-size-boxes {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .variation-size-box {
        width: 44px;
        height: 44px;
    }

    .reset_variations {
        width: 80px;
        height: 42px;
        flex-shrink: 0;
    }
}

.product-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: unset;
    border: none;
    color: #4B2328;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    line-height: 1;
    transition: all .3s ease;
}

.product-arrow:hover{
    color: #6b3138;
}

.prev-arrow{
    left: 10px;
}

.next-arrow{
    right: 10px;
}
.aabroo-collection{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.collection-collage-mobile{
    display:none;
}

.contact-forms{
    padding:80px 20px;
    background:#E7DFD2; /* Cream background */
	margin-bottom: 300px;
}

.contact-forms .container{
    max-width:700px;
    margin:0 auto;
}

.contact-forms form{
    background:#fff;
    padding:50px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-forms label{
    display:block;
    margin-bottom:22px;
    font-size:14px;
    font-weight:500;
    color:#4B2328;
    letter-spacing:.5px;
}

.contact-forms input,
.contact-forms textarea,
.contact-forms select{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 18px;
    font-size:15px;
    color:#333;
    background:#fff;
    outline:none;
    transition:.3s;
    margin-top:8px;
    box-sizing:border-box;
}

.contact-forms textarea{
    height:140px;
    padding:15px 18px;
    resize:none;
}

.contact-forms input:focus,
.contact-forms textarea:focus{
    border-color:#4B2328;
    box-shadow:0 0 0 3px rgba(75,35,40,.12);
}

.contact-forms input[type="submit"]{
    width:100%;
    height:55px;
    background:#4B2328;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    cursor:pointer;
    transition:.3s;
    text-transform:uppercase;
	    margin-top: 35px;
}

.contact-forms input[type="submit"]:hover{
    background:#6A3138;
}

.contact-forms .wpcf7-spinner{
    display:block;
    margin:15px auto 0;
}

.contact-forms .wpcf7-response-output{
    margin-top:20px !important;
    text-align:center;
    border-radius:8px;
}
.collection-aabroo.py-5 .row {
    --bs-gutter-x: 15px;
    justify-content: center;
}
.aabroo-collection-left h2 {
    color: #4B2328;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: capitalize;
	padding-bottom: 10px;
}
#mainOffcanvasLabel {
    color: #4b2328;
}
.btn-close {
    color: #4B2327;
    --bs-btn-close-color: #4b2328;
}
.sidebar-inner {
    display: none;
}
.woocommerce-form-coupon-toggle {
    padding-top: 90px;
}
body.woocommerce-checkout .woocommerce {
    margin-bottom: 160px !important;
}
.page .entry-content {
    padding: 100px;
    margin-bottom: 250px;
}

@media (max-width: 767px){
.collection-collage-mobile{
    display:block;
}

    .product-image{
        height: 220px;
        overflow: hidden;
        position: relative;
    }

    .product-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
.product-card img {
        object-fit: cover !important;
    }
	    .aabroo-collection{
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap:10px;
    }

    .aabroo-collection-left h3{
        font-size:16px;
        margin:0;
        font-weight:500;
		
    }
	.aabroo-collection-left h2 {
    color: #4B2328;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: capitalize;
}

    .aabroo-collection-right a{
        font-size:11px;
        white-space:nowrap;
        text-decoration:none;
        color:#4B2328;
        font-weight:500;
    }

	    .collection-collage{
        display:none;
    }
	.collection-collage-mobile{
    display:block;
    padding:20px 15px;
    background:#E7DFD2;
}

.mobile-collage-item{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mobile-collage-item img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.mobile-pagination{
    margin-top:20px;
    text-align:center;
}

.mobile-pagination .swiper-pagination-bullet{
    background:#4B2328;
    opacity:.4;
}

.mobile-pagination .swiper-pagination-bullet-active{
    opacity:1;
}
	.collage-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.big,
.small,
.tall{
    grid-column:auto !important;
    grid-row:auto !important;
    height:180px;
}

.collage-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
   /*  border-radius:12px; */
}
	.contact-forms{
    padding:50px 15px;
}

.contact-forms form{
    padding:30px 20px;
}

.contact-forms input,
.contact-forms textarea{
    height:50px;
    font-size:14px;
}

.contact-forms textarea{
    height:120px;
}
	.book-appointment-link {
    text-align: center;
    position: unset;
    top: 10px;
    right: 16px;
}
	.product-info h3 {
    padding: 0px !important;
    font-size: 18px !important;
    color: #4B2328;
}
	.aabroo-collection {
    width: 100%;
}
	.woocommerce ul.products li.product a img {
    object-fit: cover !important;
}
.brand-story.py-5.pb-0 {
    padding: 0px 20px;
}
.site-logo img {
    margin-left: 30px;
}
}

.u-columns.woocommerce-Addresses.col2-set.addresses {
  gap: 5px;
}
.toptitlebar_common {
	margin-top: 5%;
	background: #4b2328;
	color: #fff;
	padding: 28px 0;
	text-align: left;
}
.page_innercontent p {
	font-size: 1.2em;
	font-weight: 400;
	color: #4b2328;
	line-height: 30px;
	margin: 0 0 0 0;
	letter-spacing: .8px;
}
.page_innercontent {
	margin: 40px 0;
}
.page_innercontent ul {
	width: 100%;
	float: left;
	list-style: decimal;
	line-height: 31px;
	font-size: 1.2em;
}.page_innercontent li {
	width: 100%;
	float: left;
	color: #343333;
	font-size: 1em;
}
.page_innercontent h1, .page_innercontent h2, .page_innercontent h3, .page_innercontent h4, .page_innercontent h5, .page_innercontent h6{
	margin: 0 0 20px 0;
	padding: 0;
}
.col-12.col-md-10.col-lg-8 p {
    color: #4B2328;
}
/* Product grid */
.collection-aabroo .products{
    margin:0;
    padding:0;
}

/* Reduce left-right spacing */
.collection-aabroo .products > li.product{
    padding-left:8px !important;
    padding-right:8px !important;
    margin-bottom:20px !important;
}

/* Remove extra space below image */
.collection-aabroo .product-image{
    margin-bottom:8px;
}

/* Product content */
.collection-aabroo .add-main-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-top:5px;
}

/* Title */
.collection-aabroo .product-info h3{
    margin:0;
    padding:0;
    font-size:20px;
    line-height:1.3;
}

/* Price */
.collection-aabroo .product-info .price{
    display:block;
    margin-top:2px;
    line-height:1.2;
}

/* Plus icon */
.collection-aabroo .add-wish-list{
    margin-top:2px;
}

.collection-aabroo .add-wish-list a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    text-decoration:none;
    font-size:20px;
    color:#000;
}
/*
.feature-item.pe-md-4 img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(21%) saturate(1478%) hue-rotate(305deg) brightness(93%) contrast(92%);
}
*/
.feature-item.pe-md-4 img {
    filter: brightness(0) saturate(100%) invert(88%) sepia(15%) saturate(250%) hue-rotate(355deg) brightness(95%) contrast(88%);
}
#appointment-popup{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
}

.appointment-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}
.appointment-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 81%;
    background: #E7DFD2;
    border-radius: 12px;
    z-index: 2;
    max-height: 72vh;
}

.appointment-close {
    position: absolute;
    top: 16px;
    right: 43px;
    font-size: 26px;
    cursor: pointer;
    color: #4B2328;
}
.appointment-box-main
 {
    padding: 40px;
    /* padding-top: 0px; */
}
.appointment-box h2 {
    /* text-align: center; */
    margin-bottom: 25px;
    color: #4B2328;
    font-size: 22px;
    text-align: left;
    font-weight: 600;
    /* border-bottom: 1px solid #4B2328; */
    /* margin-bottom: 22px; */
    /* padding-bottom: 10px; */
}
.appointment-box label {
    display: inline-block;
    color: #4B2328;
}

.appointment-box input,
.appointment-box textarea{
    width:100%;
    margin-bottom:15px;
    padding:12px;
     border: 1px solid #4B2328;
    border-radius: 6px;
    background: #E7DFD2;
}
.appointment-box input:focus-visible,
.appointment-box textarea:focus-visible{
color:#4B2328;

}

.appointment-box input[type=submit] {
    width: 38%;
    background: #4B2328;
    color: #E7DFD2;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}
.appointment-box p{
    margin: 0 0 12px;
}

.appointment-box label{
    display: block;
    margin-bottom: 6px;
    color: #4B2328;
    font-weight: 600;
}
.Appointmentss {
    display: flex;
    align-items: center;
    padding: 0px 40px;
    padding-bottom: 0px;
    justify-content: space-between;
    padding-top: 20px;
    border-bottom: 1px solid #4B2328;
}
.appointment-box input,
.appointment-box textarea{
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #4B2328;
    border-radius: 6px;
    background: #fff;
}
.appointment-box br{
    display: none;
}
.single-product .toptitlebar_common {
    display: none;
}
.search-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    z-index:9999;
}

.search-box{
    position:absolute;
    top:100px;
    left:50%;
    transform:translateX(-50%);
    width:600px;
    max-width:90%;
    background:#E7DFD2;
    padding:30px;
    border-radius:10px;
}

.close-search{
    position:absolute;
    top:-8px;
    right:10px;
    font-size:30px;
    cursor:pointer;
	color: #4B2328;
}

.search-box form{
    display:flex;
    align-items:center;
}

.search-box input[type="search"]{
    width:100%;
    padding:14px 20px;
    border:1px solid #E7DFD2;
    outline:none;
    font-size:16px;
	background: #E7DFD2;
}

.search-box button{
    border:none;
    background: #4B2328;
    color: #E7DFD2;
    padding:14px 20px;
    cursor:pointer;
}

@media (max-width:767px){

.collection-collage-mobile{
    overflow:hidden;
    padding:20px 0;
}

.mobileCollageSlider{
    overflow:visible;
}

.mobileCollageSlider .swiper-wrapper{
    align-items:center;
}

.mobileCollageSlider .swiper-slide{
    width:82% !important;
    transition:.4s;
    transform:scale(.88);
    opacity:.8;
    z-index:1;
}

/* Center Slide */
.mobileCollageSlider .swiper-slide-active{
    transform:scale(1);
    opacity:1;
    z-index:5;
}

/* Left & Right images overlap */
.mobileCollageSlider .swiper-slide-prev{
    margin-right:-60px;
    z-index:2;
}

.mobileCollageSlider .swiper-slide-next{
    margin-left:-60px;
    z-index:2;
}

.mobile-collage-item{
    overflow:hidden;
    border-radius:45px;
}

.mobile-collage-item img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
}
.appointment-box input[type=submit] {
    width: 55%;
}
	.col-12.col-md-5.design-image {
    display: none;
}
	.pt-0 {
    padding-top: 50px !important;

}
}
    .ph {
    line-height: 2;
}
.site-logo img {
    max-height: 50px;
    transition: all .3s ease;
    margin-top: 10px;
    width: 170px;
    margin-left: 20px;
}
.col-md-12 h1 {
    color: #E7DFD2;
}

/*=========================================
MY ACCOUNT PAGE
=========================================*/

.woocommerce-account .woocommerce{
    display:flex;
    gap:35px;
    max-width:1400px;
    margin:60px auto;
    padding:0 20px;
}


/*=====================
LEFT SIDEBAR
======================*/

.woocommerce-MyAccount-navigation{
    width:280px;
    background:#4b2328;
    border-radius:12px;
    padding:25px;
}

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

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

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

.woocommerce-MyAccount-navigation a{

display:block;
padding:14px 18px;
border-radius:8px;
text-decoration:none;
font-size:17px;
font-weight:500;
color:#E7DFD2;
transition:.3s ease;

}


/* Active Menu */

.woocommerce-MyAccount-navigation li.is-active a{

background:#E7DFD2;
color:#4b2328;

}


/* Hover */

.woocommerce-MyAccount-navigation a:hover {
  color: #4b2328;
  background: #E7DFD2;
}

/*=====================
RIGHT CONTENT
======================*/

.woocommerce-MyAccount-content{

flex:1;
background:#E7DFD2;
border-radius:12px;
padding:40px;
border:2px solid #4b2328;

}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3{

color:#4b2328;
margin-bottom:18px;

}

.woocommerce-MyAccount-content p{

font-size:17px;
line-height:1.8;
color:#4b2328;

}

.woocommerce-MyAccount-content strong{

color:#4b2328;

}

.woocommerce-MyAccount-content a{

color:#4b2328;
font-weight:600;
text-decoration:none;

}

.woocommerce-MyAccount-content a:hover{

text-decoration:underline;

}


/*=====================
FORMS
======================*/

.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select{

width:100%;
background:#E7DFD2;
border:1px solid #b9a99d;
border-radius:8px;
padding:12px 15px;
color:#4b2328;

}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus{

border-color:#4b2328;
outline:none;
box-shadow:none;

}


/*=====================
BUTTONS
======================*/

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button{

background:#4b2328 !important;
color:#E7DFD2 !important;
border:none;
border-radius:8px;
padding:13px 28px;
font-weight:600;
transition:.3s;

}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover{

background:#6a3940 !important;
color:#E7DFD2 !important;

}


/*=====================
TABLE
======================*/

.woocommerce table.shop_table{

border:1px solid #4b2328;
border-collapse:collapse;
background:#E7DFD2;

}

.woocommerce table.shop_table th{

background:#4b2328;
color:#E7DFD2;
padding:15px;

}

.woocommerce table.shop_table td{

padding:15px;
color:#4b2328;

}


/*=====================
NOTICES
======================*/

.woocommerce-message,
.woocommerce-info{

background:#4b2328;
color:#E7DFD2;
border:none;

}

.woocommerce-error{

background:#b23a3a;
color:#fff;
border:none;

}


/*=====================
ACCOUNT HEADER
======================*/

.account-header{

display:flex;
align-items:center;
gap:18px;
margin-bottom:35px;
padding-bottom:25px;
border-bottom:2px solid #4b2328;

}

.account-header img{

width:70px;
height:70px;
border-radius:50%;
border:3px solid #4b2328;

}

.account-header h2{

margin:0;
color:#4b2328;

}

.account-header p{

margin-top:6px;
color:#4b2328;

}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: unset;
}
.footer-nav-link ul li a {
    color: #E7DFD2;
}
/*=====================
MOBILE
======================*/

@media(max-width:991px){

.woocommerce-account .woocommerce{

flex-direction:column;

}

.woocommerce-MyAccount-navigation{

width:100%;

}

.woocommerce-MyAccount-content{

width:100%;
padding:25px;

}

}


/*======================================
LOGIN & REGISTER PAGE
======================================*/

.woocommerce-account .woocommerce{
    max-width:1300px;
    margin:60px auto;
    padding:0 20px;
}

/* Login & Register Columns */

.woocommerce-account .u-columns{
    display:flex;
    gap:40px;
    align-items:stretch;
    flex-wrap:wrap;
}

/* Card */

.woocommerce-account .u-column1,
.woocommerce-account .u-column2{

flex:1;
min-width:320px;
background:#E7DFD2;
padding:40px;
border:2px solid #4b2328;
border-radius:14px;

}

/* Heading */

.woocommerce-account h2{

font-size:34px;
font-weight:600;
text-align:center;
margin-bottom:30px;
color:#4b2328;

}

/* Labels */

.woocommerce form label{

font-size:14px;
font-weight:600;
color:#4b2328;
margin-bottom:8px;
display:block;

}

/* Inputs */

.woocommerce form input[type=text],
.woocommerce form input[type=email],
.woocommerce form input[type=password],
.woocommerce form input[type=tel]{

width:100%;
height:55px;
padding:0 18px;
background:#fff;
border:1px solid #bcaea3;
border-radius:8px;
color:#4b2328;
font-size:15px;
margin-bottom:20px;
transition:.3s;

}

.woocommerce form input:focus{

border-color:#4b2328;
outline:none;
box-shadow:none;

}

.woocommerce form input::placeholder{

color:#8d7d74;

}

/* Remember Me */

.woocommerce-form__label-for-checkbox{

display:flex;
align-items:center;
gap:10px;
font-weight:500;
color:#4b2328;

}

.woocommerce-form__label-for-checkbox input{

margin:0;

}

/* Button */

.woocommerce button.button,
.woocommerce input.button{

width:100%;
height:55px;
background:#4b2328 !important;
color:#E7DFD2 !important;
border:none;
border-radius:8px;
font-size:16px;
font-weight:600;
transition:.3s;

}

.woocommerce button.button:hover,
.woocommerce input.button:hover{

background:#64353d !important;

}

/* Lost Password */

.woocommerce-LostPassword{

margin-top:18px;
text-align:center;

}

.woocommerce-LostPassword a{

color:#4b2328;
text-decoration:none;
font-weight:600;

}

.woocommerce-LostPassword a:hover{

text-decoration:underline;

}

/* Privacy Text */

.woocommerce-privacy-policy-text{

margin-top:20px;
font-size:14px;
line-height:1.8;
color:#4b2328;

}

/* 
.woocommerce a{
color:#4b2328;
}
.woocommerce a:hover{
color:#fff;
}
*/
/* Error & Success */

.woocommerce-error,
.woocommerce-message,
.woocommerce-info{

background:#4b2328;
color:#E7DFD2;
border:none;
border-radius:8px;
padding:15px;

}

/* Checkbox */

input[type=checkbox]{

accent-color:#4b2328;

}

/* Mobile */

@media(max-width:768px){

.woocommerce-account .u-columns{

flex-direction:column;
gap:25px;

}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2{

padding:25px;

}

.woocommerce-account h2{

font-size:28px;

}

}

/*=================================
LOST PASSWORD PAGE
==================================*/

.woocommerce-lost-password .woocommerce{
    max-width:100%;
    margin:70px auto;
}

/* Remove Outer Border */

.woocommerce-lost-password .woocommerce form,
.woocommerce-account .lost_reset_password{

max-width:520px;
margin:0 auto;
padding:45px;
background:#E7DFD2;
border:1px solid #4b2328;
border-radius:15px;
box-shadow:0 10px 35px rgba(0,0,0,.08);

}

/* Heading */

.woocommerce-lost-password h2,
.woocommerce-lost-password h1{

font-size:34px;
text-align:center;
margin-bottom:15px;
color:#4b2328;

}

/* Description */

.woocommerce-lost-password p{

font-size:16px;
line-height:1.8;
text-align:center;
color:#4b2328;
margin-bottom:25px;

}

/* Label */

.woocommerce-lost-password label{

display:block;
margin-bottom:10px;
font-weight:600;
font-size:16px;
color:#4b2328;

}

/* Input */

.woocommerce-lost-password input[type=text],
.woocommerce-lost-password input[type=email]{

width:100%;
height:55px;
padding:0 18px;
border:1px solid #bcaea3;
border-radius:8px;
background:#fff;
margin-bottom:25px;

}

.woocommerce-lost-password input:focus{

outline:none;
border-color:#4b2328;

}

/* Button */

.woocommerce-lost-password button.button{

width:100%;
height:55px;
background:#4b2328 !important;
color:#E7DFD2 !important;
border:none;
border-radius:8px;
font-size:17px;
font-weight:600;

}

.woocommerce-lost-password button.button:hover{

background:#65363d !important;

}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select
 {
    color: #4b2328;
    border: 1px solid #4b2328;
    background: #E7DFD2;
}
.woocommerce-MyAccount-navigation li a {
  background: #E7DFD2;
  color: #4b2328;
}


/*==================================================
TRACK ORDER PAGE
==================================================*/

.woocommerce-order-tracking{
    background:#E7DFD2;
    padding:80px 20px;
}

/* Card */

.woocommerce-order-tracking form.track_order{

    max-width:850px;
    margin:50px auto;
    background:#E7DFD2;
    border:1px solid #4b2328;
    border-radius:18px;
    padding:45px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/* Description */

.woocommerce-order-tracking form.track_order>p:first-child{

    text-align:center;
    color:#4b2328;
    font-size:16px;
    line-height:1.8;
    margin:0 0 35px;

}

/* Two Columns */

.woocommerce-order-tracking .form-row-first,
.woocommerce-order-tracking .form-row-last{

    width:48%;
    float:left;

}

.woocommerce-order-tracking .form-row-last{

    float:right;

}

.woocommerce-order-tracking .clear{
    clear:both;
}

/* Labels */

.woocommerce-order-tracking label{

    display:block;
    margin-bottom:10px;
    color:#4b2328;
    font-size:15px;
    font-weight:600;

}

/* Inputs */

.woocommerce-order-tracking input[type=text],
.woocommerce-order-tracking input[type=email]{

    width:100%;
    height:55px;
    border:1px solid #4b2328;
    border-radius:8px;
    background:#fff;
    padding:0 18px;
    color:#4b2328;
    font-size:15px;
    transition:.3s;

}

.woocommerce-order-tracking input::placeholder{

    color:#9b8a82;

}

.woocommerce-order-tracking input:focus{

    outline:none;
    border-color:#4b2328;
    box-shadow:0 0 0 3px rgba(75,35,40,.15);

}

/* Button */

.woocommerce-order-tracking .form-row:last-child{

    clear:both;
    text-align:center;
    margin-top:35px;

}

.woocommerce-order-tracking button,
.woocommerce-order-tracking input[type=submit],
.woocommerce-order-tracking .button{

    width:220px;
    height:55px;
    border:none;
    border-radius:50px;
    background:#4b2328;
    color:#E7DFD2;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.woocommerce-order-tracking button:hover,
.woocommerce-order-tracking input[type=submit]:hover,
.woocommerce-order-tracking .button:hover{

    background:#3a1b20;

}

/* Result Table */

.shop_table.order_details{

    width:100%;
    margin-top:40px;
    border-collapse:collapse;

}

.shop_table.order_details th{

    background:#4b2328;
    color:#E7DFD2;
    padding:15px;

}

.shop_table.order_details td{

    background:#fff;
    color:#4b2328;
    padding:15px;
    border:1px solid rgba(75,35,40,.15);

}

/* Notices */

.woocommerce-message,
.woocommerce-info{

    background:#fff;
    border-left:4px solid #4b2328;
    color:#4b2328;
    padding:18px;
    border-radius:8px;
    margin-bottom:25px;

}

.woocommerce-error{

    background:#fff4f4;
    border-left:4px solid #b00020;
    color:#b00020;
    padding:18px;
    border-radius:8px;
    margin-bottom:25px;

}
#post-200 .woocommerce button.button, .woocommerce input.button {
  width: 20% !important;
}

/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

.woocommerce-order-tracking form.track_order{

    padding:35px;

}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:767px){

.woocommerce-order-tracking{

    padding:40px 15px;

}

.woocommerce-order-tracking form.track_order{

    padding:25px;
    margin:20px auto;

}

.woocommerce-order-tracking form.track_order>p:first-child{

    font-size:14px;
    margin-bottom:25px;

}

.woocommerce-order-tracking .form-row-first,
.woocommerce-order-tracking .form-row-last{

    width:100%;
    float:none;

}

.woocommerce-order-tracking input[type=text],
.woocommerce-order-tracking input[type=email]{

    height:50px;
    font-size:14px;

}

.woocommerce-order-tracking button,
.woocommerce-order-tracking input[type=submit],
.woocommerce-order-tracking .button{

    width:100%;
    max-width:220px;
    height:50px;
    font-size:15px;

}

.shop_table.order_details{

    display:block;
    overflow-x:auto;

}
#post-200 .woocommerce button.button, .woocommerce input.button {
  width: 40% !important;
}
}

/*==================================
ACCOUNT NOTICES
==================================*/

.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-error{

    background:#E7DFD2 !important;
    border:1px solid #4b2328 !important;
    border-left:5px solid #4b2328 !important;
    color:#4b2328 !important;
    border-radius:12px;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    box-shadow:none;
}

.woocommerce-MyAccount-content .woocommerce-info::before,
.woocommerce-MyAccount-content .woocommerce-message::before{

    color:#4b2328 !important;
    left:18px;

}

.woocommerce-MyAccount-content .woocommerce-info a.button,
.woocommerce-MyAccount-content .woocommerce-message a.button{

    background:#4b2328 !important;
    color:#E7DFD2 !important;
    border:none !important;
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.woocommerce-MyAccount-content .woocommerce-info a.button:hover,
.woocommerce-MyAccount-content .woocommerce-message a.button:hover{

    background:#33161b !important;
    color:#E7DFD2 !important;

}
/* Wishlist Table */

.wishlist_table{
    background:#E7DFD2 !important;
    border:1px solid #4b2328 !important;
    border-collapse: unset !important;
	border-top: unset !important;
}

/* Table Body */

.wishlist_table tbody,
.wishlist_table tr,
.wishlist_table td{
    background:#E7DFD2 !important;
    color:#4b2328 !important;
}

/* Product Name */

.wishlist_table td.product-name a{
    color:#4b2328 !important;
}

/* Price */

.wishlist_table .woocommerce-Price-amount{
    color:#4b2328 !important;
}

/* Stock */

.wishlist_table .wishlist-in-stock{
    color:#2e7d32 !important;
}

/* Table Header */

.wishlist_table thead th{
    background:#4b2328 !important;
    color:#E7DFD2 !important;
}

/* Hide Wishlist plugin title */
.wishlist-title{
    display:none !important;
}

/* Hide Edit Wishlist button */
.wishlist-title-with-form .show-title-form,
.wishlist-title .show-title-form{
    display:none !important;
}
.align-items-center span.icon-counter.cart-count {
    position: absolute;
    top: 0px;
    right: -8px;
    font-size: 12px;
}
.align-items-center span.icon-counter.wishlist-count {
    position: absolute;
    top: 0;
	font-size: 12px;
}
.woocommerce-notices-wrapper{
    display:none !important;
}
.view-cart-wrap a:hover {
  background: #4B2328;
  color: #E7DFD2;
}
  .collections-gallery .col-md-4 {
    padding: 0px 8px;
  }

form.woocommerce-ordering {
    display: none;
}
/* Cart Page Add to Cart Button */

.woocommerce-cart a.button,
.woocommerce-cart .add_to_cart_button,
.woocommerce-cart .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 12px 20px;
    background: #000;
    color: #fff !important;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
    text-decoration: none;
    cursor: pointer;
}

.woocommerce-cart a.button:hover,
.woocommerce-cart .add_to_cart_button:hover,
.woocommerce-cart .single_add_to_cart_button:hover {
    background: #fff;
    color: #000 !important;
    border-color: #000;
}

/* Disable state */

.woocommerce-cart a.button.disabled,
.woocommerce-cart .add_to_cart_button.disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* If button is inside product card */

.woocommerce-cart .products .product .button {
    width: 100%;
    margin-top: 12px;
}
.nav-icons {
  font-size: 18px;
  color: #E7DFD2 !important;
}


.woocommerce-products-header__title.page-title {
    font-size: 36px;
    font-family: "Ibarra Real Nova", serif !important;
    color: #4B2328;
}
.made-khaas h6.head-highlighter-kash {
    font-weight: 500;
    line-height: 24px;
    font-size: 18px;
    color: #E7DFD2;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.made-khaas .heading-xl {
    font-size: 36px;
    line-height: 53px;
    color: #E7DFD2;
    font-weight: 600;
}
.made-khaas p.description-text {
    font-size: var(--fs-body);
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0%;
    color: #E7DFD2;
}
 .custom-design .col-md-7 {
     width: 100%;
   }
 .custom-design .content-inner.p-4.pb-0.made-khaas {
    text-align: center;
}
.position-relative .h6.mb-4 {
    font-size: 20px;
}
.custom-design .col-md-5 {
     width: 100%;
    }
.custom-design a {
    color: #E7DFD2;
}
.woocommerce form input[type=text], .woocommerce form input[type=email], .woocommerce form input[type=password], .woocommerce form input[type=tel] {
    width: 100%;
    height: 40px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid #4b2328;
    border-radius: 5px;
    color: #4b2328;
    font-size: 18px;
    margin-bottom: 0px;
    transition: .3s;
}
.woocommerce form input[type=text], .woocommerce form input[type=email], .woocommerce form input[type=password], .woocommerce form input[type=tel] {
    background: #E7DFD2;
}

.woocommerce-cart .add_to_cart_button
 {
    background: #4B2328;
    color: #E7DFD2 !important;
    border: 1px solid #4B2328;
}
.woocommerce-cart .add_to_cart_button:hover {
    background: #E7DFD2;
    color: #4B2328 !important;
    border-color: #4B2328;
}
.wp-block-button .wp-block-button__link {
    border-bottom: 1px solid #4B2328 !important;
}
.wp-block-button .wp-block-button__link:hover {
    border-bottom: 1px solid #4B2328 !important;
}
:root :where(.wp-element-button, .wp-block-button__link) {
    background-color: #4B2328;
    color: #E7DFD2;
}
.wc-block-cart-item__wrap span {
     color: #4B2328;
}
.wc-block-components-product-details span {
     color: #4B2328;
}
.wc-block-components-product-details td {
     color: #4B2328;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper span {
     color: #4B2328;
}
.wc-block-components-totals-item.wc-block-components-totals-footer-item span {
    color: #4B2328;
}
.wp-block-woocommerce-cart-order-summary-shipping-block.wc-block-components-totals-wrapper span {
    color: #4B2328;
}
.wc-block-components-totals-item__value strong {
    color: #4B2328;
}
.wc-block-components-panel__button {
    color: #4B2328;
}
.post-type-archive-product .entry-content {
    padding: 50px;
}

.product-image {
    transition: transform .6s ease;
    transform: scale(1);
}
.product-image:hover {
    transform: scale(1.04);
}
.shop-product-image {
     transition: transform .6s ease;
    transform: scale(1);
}
.shop-product-image:hover {
    transform: scale(1.04);
}
.product-wishlist {
    position: absolute;
    top: 8px;
    right: 0px;
}
.woocommerce button.button, .woocommerce input.button {
    width: 100%;
    height: 40px;
    background: #4b2328 !important;
    color: #E7DFD2 !important;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    padding: 13px 34px;
}
.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed {
	    width: 100%;
    height: 40px;
    background: #4b2328 !important;
    color: #E7DFD2 !important;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    padding: 13px 34px;
}
.collections-gallery .slide-main {
    height: 550px;
}
.collections-gallery .product-image {
    height: 550px;
}
.collections-gallery .slick-initialized .slick-slide {
    display: block;
    height: 550px;
}
.collections-gallery .wishlist-icon{
    position: absolute;
    top: 509px;
    right: 6px;
    z-index: 10;
}
@media(max-width:768px){

.product-wishlist {
    position: absolute;
    top: 750px;
    right: 40px;
}
	.collections-gallery .product-image {
    height: 220px;
}
	.collections-gallery .slick-initialized .slick-slide {
    display: block;
    height: unset;
}
	    .product-image {
        height: 250px;
        overflow: hidden;
        position: relative;
    }
	.collections-gallery .wishlist-icon{
    position: absolute;
    top: 262px;
    right: 6px;
    z-index: 10;
}
	.product-image {
        height: 300px;
        overflow: hidden;
        position: relative;
    }
	    .product-slider .slide img {
        height: 300px;
        object-fit: cover;
    }
	.collections-gallery .product-image {
        height: 300px;
    }
}
.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed {
    padding: 13px 82px;
}
.single_add_to_cart_button.button.alt {
    padding: 13px 82px;
}

.book-appointment-link a
 {
    background-color: unset !important;
    text-decoration: underline;
}
.book-appointment-link a:active {
    color: #E7DFD2 !important;
    border: unset !important;
}
.brand-story {
    background-color: #E7DFD2;
    background-image: url('https://hivends.org/khasroz/site/wp-content/uploads/2026/08/BE819E8B-D186-4D10-BCE9-C3773B883311.jpeg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.brand-story-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
}
.brand-story .w-100 {
  width: 94% !important;
}
@media (max-width: 767px) {
    .brand-story {
        background-size: 100% 100%;
    }

    .brand-story-image {
        height: auto;
    }
}

.woocommerce div.product form.cart .variations label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.woocommerce div.product form.cart {
  margin-bottom: 0em;
}

.why-choose-us .mb-5 {
    margin-bottom: 2rem !important;
}
.why-choose-us .pt-md-1 {
        padding-top: 0.0rem !important;
    }
   .why-choose-us .pb-md-2 {
        padding-bottom: 0.0rem !important;
    }
  .why-choose-us .pe-md-4 {
        padding-right: 0.5rem !important;
    }
/*
.why-choose-us-main {
    background-image: url("https://hivends.org/khasroz/site/wp-content/uploads/2026/08/ea22f097-3e31-4550-b12a-e9e1e538a690.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 50px;
}
*/
.why-choose-us-main {
    background-color: #777559;
}
.why-choose-us-center {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 50px;
}
.why-choose-us .row {
    padding-bottom: 30px;
}
.why-choose-us-center {
    padding: 0px 71px;
}
.why-choose-us.py-5 .heading-xl {
    font-size: 36px;
    line-height: 53px;
    color: #4B2328;
    font-weight: 600;
    padding-top: 35px;
}



@media (max-width: 767px) {
    .why-choose-us-main {
        background-size: cover;
        background-position: center top;
        border-radius: 30px;
    }
	.row.align-items-center.g-0 {
    width: 100% !important;
    flex-direction: column-reverse;
}


}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-choose-us {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }


    .why-choose-us .container {
        padding-left: 12px;
        padding-right: 12px;
    }


    .why-choose-us-center {

        /* Keep the border inside the section */
        width: 100%;

        padding: 38px 30px 40px;

        overflow: hidden;

        /*
         * IMPORTANT:
         * Don't let the border stretch with
         * the horizontal feature content.
         */
        background-size: cover;

        background-position: center;

        background-repeat: no-repeat;
    }


    /* MOBILE HEADING */

    .why-choose-us-center .heading-xl {

        font-size: 27px;

        line-height: 1.2;

        margin-bottom: 30px !important;

        white-space: nowrap;
    }


    /* =====================================
       HORIZONTAL SCROLL AREA
    ===================================== */

    .why-features-scroll {

        width: 100%;

        overflow-x: auto;

        overflow-y: hidden;

        /*
         * Smooth mobile scrolling
         */
        -webkit-overflow-scrolling: touch;

        scroll-behavior: smooth;

        /*
         * Hide scrollbar
         */
        scrollbar-width: none;

        -ms-overflow-style: none;

        /*
         * Prevent scrollbar from changing layout
         */
        padding-bottom: 5px;
    }


    .why-features-scroll::-webkit-scrollbar {
        display: none;
    }


    /* =====================================
       FEATURE TRACK
    ===================================== */

    .why-features-track {

        display: flex;

        flex-wrap: nowrap;

        gap: 20px;

        width: max-content;

        grid-template-columns: none;
    }


    /* =====================================
       MOBILE FEATURE CARD
    ===================================== */

    .why-feature-card {

        /*
         * One card takes almost complete
         * mobile width.
         */
        flex: 0 0 calc(100vw - 105px);

        width: calc(100vw - 105px);

        min-width: calc(100vw - 105px);

        max-width: calc(100vw - 105px);

        box-sizing: border-box;
    }


    .feature-item {

        width: 100%;

        padding-right: 5px;
    }


    /* ICON */

    .feature-icon {

        width: 48px !important;

        height: 48px !important;

        margin-bottom: 8px;
    }


    /* TITLE */

    .feature-heading {

        font-size: 19px;

        line-height: 1.35;

        margin-bottom: 8px;

        white-space: normal;
    }


    /* =====================================
       BORDER UNDER HEADING
       This will NOT stretch outside card
    ===================================== */

    .feature-border {

        width: 100%;

        max-width: 100%;

        height: 1px;

        margin-bottom: 10px;

        background: rgba(255,255,255,.8);
    }


    /* DESCRIPTION */

    .description-text {

        font-size: 13px;

        line-height: 1.75;

        margin: 0;

        max-width: 100%;
    }
    .product-info {
        display: unset;
        /* flex-direction: column-reverse; */
        text-align: left;
        gap: 5px;
    }
	.add-wish-list {
    padding-top: 0px !important;
}
	.made-khaas .heading-xl {
    font-size: 20px;
    line-height: 30px;
}
	    .heading-xl {
        font-size: 24px;
        line-height: 30px;
        padding-top: 15px;
    }
	.why-choose-us.py-5 .heading-xl {
    font-size: 20px !important;
}
	section.why-choose-us.py-5 h6.feature-heading {
    font-size: 18px;
}
	    strong.community-highlight {
        font-size: 20px;
        line-height: 30px;
    }
	    h2.community-heading {
        font-size: 20px;
    }
	.wishlist_table.modern_grid li .item-details h3, .wishlist_table.images_grid li .item-details h3, .wishlist_table.mobile li .item-details h3 {
    font-size: 20px;
}
	.col-md-12 h1 {
    color: #E7DFD2;
    font-size: 24px;
}
	.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart, .wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist {
    text-align: left;
}
	.price {
    font-size: 16px;
}
	.footer-brand {
    width: 140px;
}


}



/* =====================================
   CONTACT SECTION
===================================== */

.contact-section {
    padding: 70px 20px;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section .row {
    margin: 0;
}


/* =====================================
   CONTACT FORM BOX
===================================== */

.contact-form-box {
    width: 100%;

    padding: 45px 60px;
    border-radius: 16px;

}


/* =====================================
   FORM
===================================== */

.custom-contact-form {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =====================================
   FORM GROUP
===================================== */

.custom-contact-form .form-group {
    width: 100%;
    margin: 0 0 22px 0;
    padding: 0;
}


/* =====================================
   LABEL
===================================== */

.custom-contact-form label {
    display: block;
    width: 100%;
    margin: 0 0 9px 0;
    padding: 0;
    
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;

    
    text-align: left;
}


/* =====================================
   INPUT
===================================== */

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"] {
    display: block;
    width: 100%;
    height: 52px;
}
  .contact-form-box {
	background: #E7DFD2;
    }





/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .contact-section {
        padding: 45px 15px;
    }

    .contact-form-box {
        padding: 30px 22px;
        border-radius: 12px;
		        background: #E7DFD2;
    }

    .custom-contact-form .form-group {
        margin-bottom: 18px;
    }

    .custom-contact-form input[type="text"],
    .custom-contact-form input[type="email"],
    .custom-contact-form input[type="tel"] {
        height: 50px;
    }

    .custom-contact-form input[type="submit"] {
        height: 52px;
    }
	.product-share-wrap {
        position: absolute;
        top: 940px;
        right: 35px;
    }
	.site-logo img {
    width: 140px;
    margin-left: 22px;
}
	.product-data a:hover {
    color: #4B2328;
}
	.item-title {
    color: #4B2328 !important;
    font-size: 18px;
}
	
}



