/* Customized Cozastore CSS for Dwelling Brand */

/* GLOBAL FONT: Montserrat */
body, input, textarea, button {
    font-family: 'Montserrat', sans-serif;
}

/* PRIMARY COLORS: Black and White Theme */
body {
    background-color: #ffffff;
    color: #000000;
}

/* HEADER COLORS */
.main-menu > li > a {
    color: #000000;
}

.main-menu > li:hover > a {
    color: #333333;
}

/* BUTTON STYLES: Rounded and Modern */
button, .btn, .btn-back-to-top, .swal-button {
    border-radius: 10px !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

button:hover, .btn:hover, .btn-back-to-top:hover, .swal-button:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
}

/* PRODUCT BUTTONS */
.block2-btn, .btn-addwish-b2 {
    border-radius: 10px !important;
    background-color: #000000 !important;
    color: #ffffff !important;
}

.block2-btn:hover, .btn-addwish-b2:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
}

/* HEADER ACTIVE MENU */
.main-menu > li.active-menu > a {
    color: #FAEB92;
}

/* CART AND SEARCH ICON COLORS */
.icon-header-item {
    color: #000000;
}

/* TEXT PLACEHOLDERS */
.plh0::-webkit-input-placeholder, .plh0:-moz-placeholder, .plh0::-moz-placeholder, .plh0:-ms-input-placeholder {
    color: #999999;
}

/* BACKGROUND OVERLAYS */
.bg-overlay1::before {
    background-color: #000000;
    opacity: 0.5;
}

/* PRODUCT HOVER EFFECTS */
.block1-txt:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.block1-txt:hover .block1-name,
.block1-txt:hover .block1-info {
    color: #ffffff;
}

/* FOOTER BACKGROUND */
footer {
    background-color: #000000;
    color: #ffffff;
}

/* ENSURE CONSISTENT FONT ACROSS HEADINGS */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
}

/* Mobile Menu Background - Dwelling Brand */
.menu-mobile {
    background-color: #000000; /* Black background */
}

/* Mobile Topbar Text */
.menu-mobile .left-top-bar,
.menu-mobile .right-top-bar a {
    color: #ffffff !important; /* White text */
}

/* Mobile Menu Links */
.menu-mobile a {
    color: #ffffff !important; /* White links */
    transition: color 0.3s ease;
}

.menu-mobile a:hover {
    color: #cccccc !important; /* Soft grey on hover for elegance */
}

/* Mobile Topbar Background */
.menu-mobile .topbar-mobile {
    background-color: #000000; /* Black background */
}

/* Modal Search Background */
.modal-search-header {
    background-color: rgba(0, 0, 0, 0.95); /* Black with slight transparency */
}

/* Modal Search Input Text */
.wrap-search-header input {
    color: #ffffff; /* White text in input */
    background-color: transparent; /* Keep the input minimal */
    border: none; /* Remove default input borders */
    border-bottom: 1px solid #ffffff; /* Simple underline */
}

/* Modal Search Placeholder Text */
.wrap-search-header input::placeholder {
    color: #cccccc; /* Soft grey placeholder */
}

/* Search and Close Buttons in Modal */
.wrap-search-header button,
.btn-hide-modal-search {
    color: #ffffff;
}

.wrap-search-header button:hover,
.btn-hide-modal-search:hover {
    color: #cccccc;
}


/* Dwelling Logo Loader Styles */
/* 20. preloader */
/* line 577, C:/Users/HP/Desktop/July-HTML/292 Health coach/assets/scss/_common.scss */
.preloader {
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  margin: 0 auto;
}

/* line 593, C:/Users/HP/Desktop/July-HTML/292 Health coach/assets/scss/_common.scss */
.preloader .preloader-circle {
  width: 100px;
  height: 100px;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-top-color: #000;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: #fff;
  -webkit-animation: zoom 2000ms infinite ease;
  animation: zoom 2000ms infinite ease;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 615, C:/Users/HP/Desktop/July-HTML/292 Health coach/assets/scss/_common.scss */
.preloader .preloader-circle2 {
  border-top-color: #000;
}

/* line 618, C:/Users/HP/Desktop/July-HTML/292 Health coach/assets/scss/_common.scss */
.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 636, C:/Users/HP/Desktop/July-HTML/292 Health coach/assets/scss/_common.scss */
.preloader .preloader-img img {
  max-width: 55px;
}

/* line 639, C:/Users/HP/Desktop/July-HTML/292 Health coach/assets/scss/_common.scss */
.preloader .pere-text strong {
  font-weight: 800;
  color: #dca73a;
  text-transform: uppercase;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
}


/* Slider Image Overlay */
.item-slick1 {
    position: relative;
    background-size: cover;
    background-position: center;
}

.item-slick1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
    z-index: 1;
}

/* Ensure Text Stays Above the Overlay */
.item-slick1 .container {
    position: relative;
    z-index: 2;
}

/* Slick Slider Dots */
.slick-dots li button:before {
    font-size: 14px;
    color: #ffffff; /* White dots */
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #cccccc; /* Soft grey for active dot */
}

/* Slick Slider Arrows */
.slick-prev, .slick-next {
    font-size: 30px;
    color: #ffffff;
    z-index: 10;
}

.slick-prev:hover, .slick-next:hover {
    color: #cccccc;
}

/* Curve the container */
.block1 {
    border-radius: 10px; /* You can adjust to 30px or more for deeper curves */
    overflow: hidden; /* Ensures the video respects the curved edges */
}

/* Curve the video itself */
.block1 video {
    border-radius: 10px; /* Match the same curve as the parent */
}

.block1:hover video {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* Initially hide the text overlay */
.block1-txt {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Optional subtle dark overlay for better text visibility */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Fade-in on hover */
.block1:hover .block1-txt {
    opacity: 1;
}

/* Ensure text is white and clear */
.block1-name, .block1-info, .block1-link {
    color: #ffffff !important;
}

.block1 video {
    transition: transform 0.5s ease;
}

.block1:hover video {
    transform: scale(1.05);
}

/* Back to Top Button Styling */
.btn-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    width: 50px;
    height: 50px;
    background-color: #000000;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.btn-back-to-top:hover {
    background-color: #333333;
    opacity: 1;
}

.symbol-btn-back-to-top i {
    color: #ffffff;
    font-size: 24px;
}

/* Modal Background Overlay */
.wrap-modal1 .overlay-modal1 {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal Close Button */
.how-pos3 img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Quick View Modal Container */
.bg0 {
    background-color: #ffffff !important;
    border-radius: 10px;
    padding: 30px;
}

/* Product Title */
.mtext-105 {
    color: #000000 !important;
    font-weight: bold;
}

/* Product Price */
.mtext-106 {
    color: #000000 !important;
    font-weight: 600;
}

/* Product Description */
.stext-102 {
    color: #555555 !important;
}

/* Form Elements */
.rs1-select2 select {
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 5px;
    color: #000000;
}

.num-product {
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 5px;
    color: #000000;
}

/* Add to Cart Button */
.js-addcart-detail {
    border-radius: 10px;
    background-color: #000000 !important;
    color: #ffffff !important;
    transition: background-color 0.3s ease;
}

.js-addcart-detail:hover {
    background-color: #333333 !important;
}

/* Quantity Buttons */
.btn-num-product-up, .btn-num-product-down {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 30%;
    width: 30px;
    height: 30px;
    transition: background-color 0.3s ease;
}

.btn-num-product-up:hover, .btn-num-product-down:hover {
    background-color: #333333 !important;
}

/* Social Icons */
.wrap-modal1 a {
    color: #000000 !important;
}

.wrap-modal1 a:hover {
    color: #555555 !important;
}

.bg0 {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Search Toggle Button Styling */
.js-show-search {
    background-color: #948979 !important;
    color: #ffffff !important;
    border-radius: 0px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

/* Icon Styling */
.js-show-search i {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/* Hover Effect */
.js-show-search:hover {
    background-color: #948979 !important;
    color: #ffffff !important;
}

.js-show-search:hover i {
    color: #ffffff !important;
}

/* Filter Toggle Button Styling */
.js-show-filter {
    background-color: #948979 !important;
    color: #ffffff !important;
    border-radius: 0px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

/* Icon Styling */
.js-show-filter i {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/* Hover Effect */
.js-show-filter:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
}

.js-show-filter:hover i {
    color: #ffffff !important;
}

/* Breadcrumb Container (Optional if you want a background) */
.bread-crumb {
    padding: 15px 0;
    font-size: 16px;
}

/* Breadcrumb Links */
.bread-crumb a {
    color: #000000 !important;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover Effect on Links */
.bread-crumb a:hover {
    color: #555555 !important;
}

/* Current Page Indicator */
.bread-crumb span {
    color: #777777 !important;
    font-weight: 400;
}

/* Icon Styling */
.bread-crumb i {
    color: #000000 !important;
}
.bread-crumb {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px 25px;
}

/* Shopping Cart Table */
.table-shopping-cart {
    width: 100%;
    border-collapse: collapse;
}

.table-shopping-cart th, .table-shopping-cart td {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}

.table-shopping-cart th {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
}

.table-shopping-cart td {
    color: #000000;
}

.how-itemcart1 img {
    border-radius: 10px;
}

/* Quantity Controls */
.btn-num-product-down, .btn-num-product-up {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 30%;
    width: 30px;
    height: 30px;
    transition: background-color 0.3s ease;
}

.btn-num-product-down:hover, .btn-num-product-up:hover {
    background-color: #333333 !important;
}

.num-product {
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 5px;
    color: #000000;
    width: 60px;
}

/* Coupon Input */
input[name="coupon"] {
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 10px 20px;
    color: #000000;
}

/* Coupon and Update Cart Buttons */
.flex-c-m.stext-101 {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.flex-c-m.stext-101:hover {
    background-color: #333333 !important;
}

/* Shipping Select and Inputs */
.rs1-select2 select, input[name="state"], input[name="postcode"] {
    border: 1px solid #000000 !important;
    border-radius: 5px;
    padding: 10px;
    color: #000000;
}

/* Cart Totals */
.mtext-109, .mtext-110, .mtext-101 {
    color: #000000 !important;
}

.stext-111 {
    color: #555555 !important;
}

/* Proceed to Checkout Button */
.size-116 {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 15px 30px;
    transition: background-color 0.3s ease;
}

.size-116:hover {
    background-color: #333333 !important;
}

/* Dark Overlay */
.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjustable opacity */
    z-index: 1;
}

/* Header Text Styling */
.bg-img1 h2 {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 48px;
    letter-spacing: 2px;
}

/* Optional: Smooth Fade-in Animation */
.fade-in-text {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Blog Image with Rounded Corners */
.hov-img0 img {
    border-radius: 10px;
}

/* Date Badge Styling */
.size-123 {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 10px;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.size-123:hover {
    background-color: #333333 !important;
}

/* Blog Title */
.ltext-108 {
    color: #000000 !important;
    font-weight: bold;
    transition: color 0.3s ease;
}

.ltext-108:hover {
    color: #555555 !important;
}

/* Blog Meta Text */
.stext-111 {
    color: #000000 !important;
}

.stext-111 span {
    margin-right: 10px;
}

/* Continue Reading Link */
.stext-101 {
    color: #000000 !important;
    transition: color 0.3s ease;
}

.stext-101:hover {
    color: #555555 !important;
}

/* Pagination Styling */
.how-pagination1 {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s ease;
}

.how-pagination1:hover {
    background-color: #333333 !important;
}

.active-pagination1 {
    background-color: #555555 !important;
}

/* Search Bar Styling */
.side-menu input[name="search"] {
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 10px 20px;
    color: #000000;
}

.side-menu button {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.side-menu button:hover {
    background-color: #333333 !important;
}

/* Sidebar Titles */
.mtext-112 {
    color: #000000 !important;
    font-weight: bold;
}

/* Sidebar Links */
.side-menu a {
    color: #000000 !important;
    transition: color 0.3s ease;
}

.side-menu a:hover {
    color: #555555 !important;
}

/* Featured Products - Image Rounded */
.wrao-pic-w img {
    border-radius: 10px;
}

/* Tags Styling */
.flex-c-m {
    background-color: #f9f9f9;
    border-radius: 10px;
    color: #000000 !important;
    padding: 5px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.flex-c-m:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Hover Scaling */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Gradient Button */
.gradient-btn {
    background: linear-gradient(135deg, #7AA874, #C98474);
    text-decoration: none;
    font-weight: bold;
    transition: background 0.4s ease, transform 0.3s ease;
}
.gradient-btn:hover {
    background: linear-gradient(135deg, #C98474, #7AA874);
    transform: translateY(-2px);
}

/* Hover scale effect */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Gradient button */
.gradient-btn {
    background: linear-gradient(45deg, #7AA874, #C98474);
    border: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gradient-btn:hover {
    background: linear-gradient(45deg, #5DA7DB, #9A4444);
    transform: translateY(-3px);
    text-decoration: none;
    color: #fff;
}

/* Card Styling */
.core-card {
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gradient Button */
.gradient-btn {
    background: linear-gradient(45deg, #7AA874, #C98474);
    border: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gradient-btn:hover {
    background: linear-gradient(45deg, #5DA7DB, #9A4444);
    transform: translateY(-3px);
    text-decoration: none;
    color: #fff;
}

/* Custom mobile menu styling */
.menu-mobile-black {
    background-color: black;
}

.menu-mobile-black a {
    color: white !important;
}

.menu-mobile-black a:hover {
    color: #f5c518 !important; /* Optional: subtle gold hover effect */
}

.menu-mobile-black .left-top-bar {
    color: white;
}

.block2-pic img {
  width: 100%;
  height: 300px; /* Adjust as needed: 250px or 280px also works */
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .block2-pic img {
    height: 200px;
  }
}

.block2-pic:hover img {
  transform: scale(1.05);
}

.item-slick1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* Ensures full-screen height */
  min-height: 500px; /* fallback for smaller devices */
}

.item-slick1::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.item-slick1 .container {
  position: relative;
  z-index: 2;
}


