/*
Theme Name: Caret - Bootstrap 5 online shop HTML CSS Template
Theme URI: https://templatejungle.com/
Author: TemplatesJungle
Author URI: https://templatejungle.com/
Description: Caret - Bootstrap 5 online shop HTML CSS Template is specially designed shop packaged for online shops by TemplatesJungle.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------
CSS STRUCTURE:

1. VARIABLES
2. GENERAL TYPOGRAPHY

--------------------------------------------------------------*/
body {
  --heading-font: "Prata", Georgia, serif;
  --heading-font-weight: 400;
  --heading-color: #413F3D;
  --heading-line-height: 1.24;

  --swiper-theme-color: #8C907E;

  /* bootstrap */
  --bs-body-font-family: "Lora", Georgia, serif;
  --bs-body-font-size: 16px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #696866;
  --bs-body-color-rgb: 1.6, 1.6, 1.6;
  --bs-body-bg-rgb: 248, 248, 241;
  --bs-body-bg: #F8F8F1;

  --bs-primary: #E8E6D2;
  --bs-secondary: #ABA994;
  --bs-black: #111;
  --bs-white: #fff;
  --bs-light: #f8f8f8;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 221, 79, 70;
  --bs-secondary-rgb: 240, 240, 233;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: #111;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #111;
  --bs-link-hover-color-rgb: 17, 17, 17;

  --bs-border-color : #D6D6BE !important;
  --bs-border-secondary-color : #D6D6BE !important;
}

body {
  letter-spacing: 0.03rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}

h1.light,
.h1,
h2.light,
.h2,
h3.light,
.h3,
h4.light,
.h4,
h5.light,
.h5,
h6.light,
.h6 {
  color: var(--bs-light);
}

h1,
h2,
h3 {
  margin: 25px 0;
}

h5,
h6 {
  letter-spacing: 1px;
}

h1,
.h1 {
  font-size: 4.5rem;
}

h2,
.h2 {
  font-size: 3.6rem;
}

h3,
.h3 {
  font-size: 2.8rem;
}

h4,
.h4 {
  font-size: 1.8rem;
}

h5,
.h5 {
  font-size: 1.4rem;
}

h6,
.h6 {
  font-size: 1rem;
}

a {
  text-decoration: none;
}

/* container fluid */
.container-fluid {
  max-width: 1800px;
}

@media (min-width: 1600px) {
.container, .container-lg {
    max-width: 1500px;
  }
.container, .container-md {
    max-width: 1200px;
  }
}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: var(--bs-light);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-light);
  --bs-btn-hover-bg: var(--bs-dark);
  --bs-btn-hover-border-color: var(--bs-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-light);
  --bs-btn-active-bg: var(--bs-dark);
  --bs-btn-active-border-color: var(--bs-dark);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-light);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-dark.btn-bg-primary {
  --bs-btn-bg: var(--bs-primary);
}

.btn-group-lg>.btn, .btn-lg {
  --bs-btn-padding-y: 1rem;
  --bs-btn-padding-x: 2.8rem;
  --bs-btn-font-size: 1.25rem;
}

.btn.btn-shadow {
  box-shadow: 0px 6px 39px 0px rgba(91, 45, 42, 0.20);
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* preloader */
.preloader {
  position: fixed;
  z-index: 99;
  background: var(--bs-dark);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.preloader.loaded {
  height: 0;
}

/* navbar */
.navbar.fixed-top {
  transition: background-color 0.6s ease-out;
}

/* margin */
.my-lg-6 {
  margin-top: 4.5rem!important;
  margin-bottom: 4.5rem!important;
}
.my-lg-7 {
  margin-top: 6rem!important;
  margin-bottom: 6rem!important;
}
.my-lg-8 {
  margin-top: 8.5rem!important;
  margin-bottom: 8rem!important;
}
.my-lg-9 {
  margin-top: 10rem!important;
  margin-bottom: 10rem!important;
}
.my-lg-10 {
  margin-top: 12.5rem!important;
  margin-bottom: 12.5rem!important;
}

/* padding */
.py-lg-6 {
  padding-top: 4.5rem!important;
  padding-bottom: 4.5rem!important;
}
.py-lg-7 {
  padding-top: 6rem!important;
  padding-bottom: 6rem!important;
}
.py-lg-8 {
  padding-top: 8.5rem!important;
  padding-bottom: 8rem!important;
}
.py-lg-9 {
  padding-top: 10rem!important;
  padding-bottom: 10rem!important;
}
.py-lg-10 {
  padding-top: 12.5rem!important;
  padding-bottom: 12.5rem!important;
}

/* - Background Color
------------------------------------------------------------- */ 
.bg-white-trans {
  --bs-bg-opacity: 0.6;
  background-color: rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important;
}

/* - Border Radius
------------------------------------------------------------- */ 
.rounded-6 {
  border-radius: 3rem;
}
.rounded-top-right {
  border-top-right-radius: 30px;
}
.rounded-bottom-right {
  border-bottom-right-radius: 30px;
}
.rounded-top-left {
  border-top-left-radius: 30px;
}
.rounded-bottom-left {
  border-bottom-left-radius: 30px;
}

/* - Svg Color
------------------------------------------------------------- */ 
.svg-primary {
  fill: var(--bs-primary);
  color: var(--bs-primary);
}
.svg-secondary {
  fill: var(--bs-secondary);
  color: var(--bs-secondary);
}
.svg-yellow {
  fill: var(--bs-yellow);
  color: var(--bs-yellow);
}

/* - circle-pattern
------------------------------------------------------------*/
.circle-pattern::after {
  position: absolute;
  content: "";
  background-color: var(--bs-primary);
  top: -48px;
  right: 42%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  z-index: -1;
}

/* - Sticky Header
------------------------------------------------------------- */ 
.site-header {
  background-color: transparent;
  width: 100%;
  transition: background-color 0.3s ease;
}
.site-header.sticky{
  background-color: var(--bs-body-bg);
}

/* - Video
------------------------------------------------------------- */ 
#video-player .player {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#video-player .player .play-btn {
  width: 70px;
  height: 70px;
}
#video-player .play-btn:hover {
  --bs-bg-opacity: 1;
}

/* - Single Product
------------------------------------------------------------- */
#product-detail img {
  width: 100%;
  min-height: 700px;
  object-fit: cover;
}
.product-info .color-product-options .color-item {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.product-info .color-product-options .color-item span {
  border: 2px solid var(--bs-light);
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}

/* - Subscribe
------------------------------------------------------------- */
#form svg.send {
  right: 0;
  bottom: 50px;
}
.social-links li:hover {
  background-color: var(--bs-primary);
}



 
  /* General styling for the contact section */
  #contact.py-lg-6 {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #f9f9f9; /* Light background for the section */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Professional font */
    color: #333;
  }

  .container {
    max-width: 960px; /* Max width for content readability */
    margin: 0 auto;
    padding: 0 15px; /* Add some horizontal padding */
  }

  .subscribe-content {
    background-color: #ffffff; /* White background for the content box */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }

  /* Section Title - Contact Us */
  .subscribe-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .subscribe-header .display-4 {
    font-size: 2.8em; /* Larger, more prominent font size */
    font-weight: 700;
    color: #2c3e50; /* Strong, professional color */
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }

  .subscribe-header .display-4::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #007bff; /* Accent color for the underline */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }

  /* List of Contact Information */
  .list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-unstyled li {
    margin-bottom: 25px; /* Increased spacing between list items */
    font-size: 1.2em; /* Slightly larger font for readability */
    color: #555;
    display: flex; /* Use flexbox for alignment of strong and text */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center content within each list item */
    text-align: center; /* Fallback for older browsers */
  }

  .list-unstyled li strong {
    font-weight: 600;
    color: #333;
    margin-right: 8px; /* Space between label and value */
  }

  .list-unstyled li a {
    color: #007bff; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .list-unstyled li a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  /* Specific styling for Phone number for local format */
  .list-unstyled li a[href^="tel:"] {
    white-space: nowrap; /* Prevent phone number from breaking */
  }

  /* Specific styling for Email to allow word break */
  .list-unstyled li a[href^="mailto:"] {
    word-break: break-all; /* Allow breaking long email addresses */
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .subscribe-header .display-4 {
      font-size: 2.2em;
    }

    .subscribe-content {
      padding: 30px 20px;
    }

    .list-unstyled li {
      font-size: 1.1em;
      flex-direction: column; /* Stack label and value on small screens */
      align-items: center; /* Center items when stacked */
    }

    .list-unstyled li strong {
      margin-right: 0;
      margin-bottom: 5px; /* Space between stacked label and value */
    }
  }
/* Basic styling for the section and image */
#Area {
  display: flex; /* Use flexbox to position the image and text side by side */
  align-items: center; /* Vertically center the content */
  justify-content: space-between; /* Distribute space evenly */
  padding: 60px 0;
  background-color: #f9f9f9;
}

.container-lg {
  max-width: 1200px; /* Wider container to accommodate the image */
  margin: 0 auto;
  display: flex; /* Use flexbox within the container */
  align-items: center;
  justify-content: space-between;
}

.text-center {
  text-align: center;
  margin-bottom: 40px;
}

.col-lg-8 {
  flex: 1; /* Allow the text column to grow */
  padding-right: 20px; /* Add some spacing between text and image */
}

.card {
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 8px;
  text-align: center;
}

.lead {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 0;
}

/* Style the image */
.service-image {
  max-width: 400px; /* Limit the image width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #Area {
    flex-direction: column; /* Stack text and image on smaller screens */
    text-align: center;
  }

  .container-lg {
    flex-direction: column;
  }

  .col-lg-8 {
    padding-right: 0;
    margin-bottom: 20px; /* Add space between text and image */
  }

  .service-image {
    max-width: 100%; /* Full width on smaller screens */
  }
}