/* Define custom font families from Google Fonts */
:root {
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Theme Colors */
    --color-primary: #9F2241; /* Deep Maroon/Rose */
    --color-secondary: #D4AF37; /* Royal Gold */
    --color-background: #FFFBF7; /* Warm Beige/Off-white */
    --color-text: #3D322F; /* Dark Brown/Charcoal */
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-background);
}
.bgcolor{
  background: #aa6437;
}
.bgcolor1{
    background: #aa6437;
    color: #fff;
    font-weight: 600;
}
.bgcolor1:hover{
  background: #000;
  color: #fff;
}
/* Custom utility classes */
.font-serif {
    font-family: var(--font-serif);
}
.logoclr{
    color: #aa6437;
}
.text-secondary1{
color: #D4AF37;
}
.bg-secondary1{
    background-color: #aa6437;
}
.bg-primary1 { background-color: #000;  }
.bg-primary2 { background-color: #aa6437;  opacity: 0;}
.bg-primary2:hover{
   opacity: 1; 
   -webkit-transition: all 0.3s 
ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s 
ease 0s;
}
.text-primary { color: var(--color-primary); }
.border-primary { border-color: var(--color-primary); }

.bg-secondary { background-color: var(--color-secondary); }
.text-secondary { color: var(--color-secondary); }
.border-secondary { border-color: var(--color-secondary); }

html {
    scroll-behavior: smooth;
}

/* Dropdown Menu for Desktop */
.group:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
}

/* Themed Placeholder Fallback */
.img-fallback {
    background-color: #E9D8D5; /* Light placeholder color */
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

/* Slider Styles */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1; /* Behind the text overlay */
}

.hero-slide.active {
    opacity: 1;
}

.owl-carousel {
	width: 100%;
	margin: 0 auto;
	padding: 30px 0;

}
.owl-carousel .item {
	font-size: 30px;
	text-align: center;
	line-height: 2;
	font-weight: 700;
	background-color: #eee;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	z-index: 1;
	width: 40px;
	height: 40px;
	background-color: #ccc;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
}

.owl-nav button span {
	font-size: 30px;
	height: 100%;
	display: block;
	width: 100%;
}
.owl-carousel .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel .owl-nav button.owl-next {
	right: 0;
}
.owl-carousel .owl-nav {
	margin: 0;
}


.owl-theme .owl-nav .disabled,
button.disabled {
	opacity: 0.6;
}
.add{
    font-size: 15px;
}


/* Quick View Area */



.modal-content {
  background: #fff;
  border-radius: 12px;
  max-height: 90vh;
  overflow-y: auto;
}

/* Thumbnails styling */
.thumb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 450px;
  padding-right: 5px;
}

.thumb {
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid transparent;
  width: 65px;
  height: 65px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.thumb:hover,
.active-thumb {
  border-color: #dc3545;
  transform: scale(1.05);
}

/* Main product image */
.main-img img {
  border-radius: 12px;
  max-height: 450px;
  object-fit: cover;
}

/* Buttons & spacing */
.btn-close {
  opacity: 1;
}

.modal-body {
  padding: 2rem 3rem;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
}

/* Share icons hover */
.bi {
  cursor: pointer;
  transition: transform 0.2s;
}

.bi:hover {
  transform: scale(1.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .thumb-list {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
  }
  .thumb {
    width: 55px;
    height: 55px;
  }
  .main-img img {
    max-height: 300px;
  }
  .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow);
    }
}
.modal-backdrop.show {
  background-color: rgba(0,0,0,0.35);
}
.modal-dialog{
    width: auto!important;
}
/* Force modal to center vertically and stay visible */
.modal-dialog-centered-custom {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 1rem);
}

/* Fix overflow scroll for tall modals */
.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

/* Ensure close button always visible */
.btn-close {
  z-index: 10;
}
.modal.fade .modal-dialog{
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-backdrop {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 1050; /* must be above other elements but below modal */
}

.modal-backdrop.show {
  opacity: 1;
}
.modal {
  z-index: 1060 !important;
}
.modal-backdrop {
  z-index: 1050 !important;
}


/*------ Breadcrumb ------*/
.page-breadcrumb {
  padding: 25px 0;
}
.breadcrumbs li {
  display: block;
  float: left;
  font-size: 12px;
  font-weight: 500;
  margin-right: 12px;
  text-transform: uppercase;
}
.breadcrumbs li + li::before {
  color: #909090;
  content: "/";
  padding-right: 12px;
}
.breadcrumbs li a {
  color: #909090;
}
@media (min-width: 1280px) {
    .container {
        max-width: 1280px!important;
    }
}
.bg-off-white {
    background: #f8f8f8;
}

.about-us-area {
  background: #fff;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  position: relative;
}
.about-us-area::before {
  background: #f8f8f8 none repeat scroll 0 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  bottom: -1px;
  content: "";
  left: 50%;
  margin-left: -16px;
  position: absolute;
  top: -1px;
  width: 32px;
}
.about-us-area .about-content {
  margin-top: 83px;
  text-align: left;
}
.about-us-area .about-content h2 {
  font-size: 25px;
  line-height: 17px;
  margin: 0 0 20px;
  padding-bottom: 6px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
}
.about-us-area .about-content h2::before {
  background: #909090 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 25px;
}
.about-us-area .about-content p {
  color: #606060;
  font-weight: 300;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 10px 0px 0px;
}
.about-us-area .about-content p:last-child {
  margin-bottom: 0;
}

.about-us-area .about-image img {
  padding: 30px 0 30px 30px;
  width: 100%;
}
.about-page{
  margin: 50px 0px;
}

.shipping-service-area {
  background: #fff;
  padding: 40px 0;
  margin: 80px 0px;
}
.sin-service {
  border-right: 1px solid #dddddd;
  padding-left: 72px;
  text-align: left;
}
.sin-service:last-child {
  border-right: 0px solid #dddddd;
}
.sin-service .icon {
  display: block;
  float: left;
  margin-right: 20px;
}
.sin-service .icon i {
  border: 1px solid #dddddd;
  border-radius: 50%;
  display: block;
  font-size: 36px;
  height: 72px;
  line-height: 70px;
  width: 72px;
}
.sin-service:hover .icon i {
  border-width: 1px;
  border-style: solid;
  color: #fff;
}
.sin-service .content {
  margin-top: 12px;
}
.sin-service .content h3 {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 12px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.sin-service .content p {
  font-weight: 300;
}

.logoimg{
  width: 180px;
}

.shipping-service-area {
  background: #fff;
  padding: 40px 20px;
  margin: 50px 0px;
}
.sin-service {
  border-right: 1px solid #dddddd;
  padding-left: 72px;
  text-align: left;
}
.sin-service:last-child {
  border-right: 0px solid #dddddd;
}
.sin-service .icon {
  display: block;
  float: left;
  margin-right: 20px;
}
.sin-service .icon i {
  border: 1px solid #dddddd;
  border-radius: 50%;
  display: block;
  font-size: 30px;
  height: 72px;
  line-height: 70px;
  width: 72px;
}
.sin-service:hover .icon i {
  border-width: 1px;
  border-style: solid;
  color: #fff;
  background-color: #000;
}
.sin-service .content {
  margin-top: 12px;
}
.sin-service .content h3 {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #303030;
  font-weight: 600;
}
.sin-service .content p {
  font-weight: 300;
  font-size: 14px;
}

.tab-list {
   display: inline-block;
    margin-bottom: 30px;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  .tab-list li {
    display: block;
    display: inline-block;
    margin-right: 15px;
  }
  .tab-list li:last-child {
    margin-right: 0;
  }
  .tab-list li a {
    background: #303030;
    color: #fff;
    display: block;
    height: 42px;
    line-height: 44px;
    padding: 0 20px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
  }
  .tab-list li a:hover {
    background: #505050;
  }
  .tab-list li a.active {
    background: #aa6437;
  }
  .tab-content {
    clear: both;
    background: #f9f9f9;
    padding: 20px 0px;
    border-radius: 6px;
  }

  .nav-link:focus, .nav-link:hover{
    color: #fff;
  }

  .tab-pane p{
    font-size: 14px;
    padding: 10px 0px;
  }
  .page1{
    margin: 50px 0px;
  }
  .content1{
    padding: 0px 50px;
  }
  .about-contenttab{
    margin: 50px 0px;
  }
  .section-title {
  margin-bottom: 50px;
}
.section-title h1 {
  font-size: 25px;
  line-height: 17px;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 13px;
  font-weight: 600;
}
.section-title h1::before {
  width: 64px;
  height: 1px;
  background: #dddddd;
  margin-left: -32px;
  bottom: 0px;
  left: 50%;
  content: "";
  position: absolute;
}
.team-wrap {
  border: 2px solid #eee;
  position: relative;
}
.team-image {
  position: relative;
}
.team-image::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  content: "";
}
.sin-team:hover .team-image::before {
  opacity: .8;
  background-color: #f05a66;
}
.team-image img {
  width: 100%;
}
.team-details {
  bottom: 0px;
  left: 0;
  opacity: 0;
  padding: 0 15px;
  position: absolute;
  right: 0;
  text-align: center;
}
.sin-team:hover .team-details {
  bottom: 30px;
  opacity: 1;
}
.team-details h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 14px;
  margin: 0 0 10px;
}
.team-details h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 12px;
  margin: 0 0 18px;
}
.team-details p {
  color: #fff;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 25px;
}

#contact-map {
  border: 10px solid #fff;
  display: block;
  height: 420px;
  width: 100%;
}
.contact-form h2 {
  font-size: 20px;
  line-height: 17px;
  margin: 0 0 20px;
  padding-bottom: 6px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-form h2::before {
  background: #909090 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 25px;
}

.contact-info h2 {
  font-size: 20px;
  line-height: 17px;
  margin: 0 0 20px;
  padding-bottom: 6px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-info h2::before {
  background: #909090 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 25px;
}
.contact-info-wrap {
  border: 1px solid #eee;
  padding: 80px 30px;
  background: #fff;
}
.sin-contact-info {
  margin-bottom: 23px;
  text-align: left;
}
.sin-contact-info:last-child {
  margin-bottom: 0;
}
.sin-contact-info .icon {
  display: block;
  float: left;
  line-height: 44px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.sin-contact-info .icon i {
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  font-size: 17px;
  color: #606060;
  border: 1px solid #606060;
  border-radius: 50px;
}
.sin-contact-info p, .sin-contact-info a {
  overflow: hidden;
  font-weight: 300;
  color: #606060;
  margin: 0;
  font-size: 14px;
}
.margin-bottom-90 {
    margin-bottom: 90px !important;
}
.input-box {
    float: left;
    margin-bottom: 18px;
    width: 100%;
}
.input-box input, .input-box textarea, .input-box select {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ded6d6;
    color: #909090;
    font-size: 12px;
    font-weight: 300;
    height: 44px;
    padding: 5px 12px;
    text-align: left;
    width: 100%;
}
 .input-box textarea {
    min-height: 106px;
}
.submit-box.width-full {
    width: 100%;
}
.submit-box {
  width: auto;
}
.submit-box input {
  border: medium none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 37px;
  padding: 0 36px;
  text-align: center;
  text-transform: uppercase;
  width: auto;
  background: #aa6437;
}
.submit-box.width-full input {
  width: 100%;
}
.submit-box input:hover {
  background: #303030 none repeat scroll 0 0;
  color: #fff;
}
.bg{
  background: #000;
  color: #fff;
}
.main-img img{
width: 100%;
}
.productdetails-sec{
  padding: 50px 0px 0px 0px;
}
.imgsec{
  margin: 0px 0px 50px 0px !important;
}
.bgpad{
  padding-top: 50px;
}

.blog-image {
  position: relative;
}
.blog-image a {
  display: block;
  position: relative;
}
.blog-image a::before {
  background: #000 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.4;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotateX(90deg);
  z-index: 1;
}
.sin-blog:hover .blog-image a::before {
  transform: rotateX(0);
}
.blog-image a img, .blog-image img {
  width: 100%;
}
.blog-date {
  background: #fff none repeat scroll 0 0;
  height: 63px;
  left: 5px;
  padding: 14px 0;
  position: absolute;
  top: 5px;
  width: 63px;
  z-index: 1;
}
.blog-date h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 14px;
  margin: 0 0 10px;
}
.blog-date p {
  font-weight: 300;
  line-height: 12px;
}
.blog-details {
  background: #fff none repeat scroll 0 0;
  padding: 10px 15px 13px;
  text-align: left;
}
.blog-details .blog-meta {
  margin-bottom: 6px;
}
.blog-details .blog-meta p {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}
.blog-details .blog-meta p a {
  color: #909090;
  display: block;
  float: left;
  margin-right: 18px;
}
.blog-details .blog-meta p a:last-child {
  margin-right: 0;
}

.blog-details .blog-meta p a i {
  display: block;
  float: left;
  font-size: 14px;
  line-height: 22px;
  margin-right: 5px;
}
.blog-details .blog-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 32px;
  margin: 0 0 3px;
  text-align: left;
  float: left;
  width: 100%;
}
.blog-details .blog-title a {
  color: #303030;
}

.blog-details > p {
  font-size: 13px;
  font-weight: 300;
  color: #606060;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    visibility: visible;
}
.blog-details .read-more {
  font-weight: 600;
  text-decoration: none;
    color: #606060;
    font-size: 14px;
    color: #aa6437;
}
.sin-blog{
 margin-bottom: 50px;
  
}

/*------ Shop Toolbar ------*/
.shop-toolbar {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #eeeeee;
  padding: 13px 14px;
  width: 100%;
}
.pagination {
  border-radius: 0;
  display: block;
  margin: 0;
  max-height: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.pagination ul {
  display: inline-block;
}
.pagination ul li {
  display: block;
  float: left;
}
.pagination ul li + li {
  margin-left: 8px;
}
.pagination ul li a {
  border: 1px solid #eeeeee;
  color: #303030;
  display: block;
  font-size: 12px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  width: 30px;
}
.pagination ul li a i {
  color: #909090;
  display: block;
  font-size: 15px;
  line-height: 28px;
}
.pagination ul li a.active {
  color: #fff;
      background-color: #aa6437;
}
.pagination ul li a.active:hover {
  color: #fff;
  background: #aa6437;
}
.search-sidebar-form input {
    border: 1px solid #eee;
    color: #909090;
    font-weight: 300;
    height: 36px;
    padding: 6px 15px;
    text-align: left;
    width: 100%;
}
.sin-sidebar {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #eeeeee;
    margin-bottom: 30px;
    padding: 22px 0;
    text-align: left;
}
.sidebar-container .row > div:nth-child(2n+1) {
  clear: both;
}
.sin-sidebar {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #eeeeee;
  margin-bottom: 30px;
  padding: 22px 0;
  text-align: left;
}
.sidebar-wrapper {
  padding: 0 23px;
}
.sin-sidebar .cus-scroll {
  max-height: 210px;
}
.sidebar-title {
  color: #606060;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 11px;
  margin: 0 0 22px;
  padding: 0 23px 9px;
  position: relative;
  text-transform: uppercase;
}
.sidebar-title::before {
  width: 25px;
  position: absolute;
  background: #606060;
  height: 1px;
  left: 23px;
  bottom: 0;
  content: "";
}
.fix {
    overflow: hidden;
}
.sin-sidebar ul li {
  padding-right: 30px;
  position: relative;
}
.sin-sidebar ul li a {
  color: #606060;
  display: block;
  line-height: 11px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.sin-sidebar .sidebar-wrapper > ul > li:last-child > a {
  margin-bottom: 0;
}
.sin-sidebar ul li ul {
  padding-left: 13px;
}

.sin-sidebar ul li ul li a {
  color: #909090;
  font-weight: 300;
}

.tags-sidebar a {
  border: 1px solid #efefef;
  color: #606060;
  display: block;
  float: left;
  font-size: 13px !important;
  line-height: 23px;
  margin-bottom: 14px;
  margin-right: 8px;
  padding: 0 6px;
  text-transform: capitalize;
}
.tags-sidebar a:hover {
  background: #000000;
  border-color: #000000;
  color: #fff;
}
.video-sidebar a {
  display: block;
  position: relative;
}
.video-sidebar a::before {
  background: rgba(0, 0, 0, 0) no-repeat scroll center center;
  -webkit-background-size: cover;
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.video-sidebar a img {
  width: 100%;
}
.video-sidebar a:hover::before {
  opacity: 1;
}
.sin-sidebar-post {
  padding-left: 22px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eee;
}
.sin-sidebar-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0px solid #eee;
}
.sin-sidebar-post .image {
  border: 1px solid #eeeeee;
  display: block;
  margin-right: 11px;
  width: 64px;
}

.sin-sidebar-post .content a {
  color: #444444;
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
}
.sin-sidebar-post .content p {
  color: #444444;
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
}
.search-sidebar {
  background: transparent;
  border: none;
  padding: 0;
}

.search-sidebar-form form {
  position: relative;
}
.search-sidebar-form input {
  border: 1px solid #eee;
  color: #909090;
  font-weight: 300;
  height: 36px;
  padding: 6px 15px;
  text-align: left;
  width: 100%;
}
.search-sidebar-form .search-submit {
  background: #000000 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  height: 36px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 54px;
}
.search-sidebar-form .search-submit i {
  font-size: 16px;
  display: block;
  line-height: 36px;
}

.sin-sidebar.category-sidebar li a {
  text-transform: inherit;
}
.sin-sidebar .treeview > li.collapsable:last-child > a {
  margin-bottom: 22px;
}
.sin-sidebar .treeview li:last-child ul li:last-child a {
  margin-bottom: 0;
}
.treeview .hitarea {
  cursor: pointer;
  display: block;
  height: 10px;
  line-height: 10px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 14px;
}


#price-range {
  background: #eeeeee none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  height: 4px;
  margin-bottom: 19px;
  margin-top: 4px;
}
#price-range .ui-slider-range {
  background: #303030;
  border-radius: 0;
}
#price-range .ui-slider-handle {
  background: #eee none repeat scroll 0 0;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  height: 12px;
  margin: 0;
  top: -4px;
  width: 12px;
}
#price-range .ui-slider-handle:last-child {
  margin-left: -12px;
}

.price-values p {
  display: block;
  float: left;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 12px;
  margin-bottom: 0;
  margin-right: 21px;
  text-transform: uppercase;
}
#price-amount {
  border: medium none;
  display: block;
  float: left;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 10px;
  padding: 0;
  width: 110px;
}

.size-sidebar a {
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
  display: block;
  float: left;
  line-height: 35px;
  text-align: center;
  text-transform: uppercase;
  width: 20%;
}
.size-sidebar a:last-child {
  border-right: 0px solid #eee;
}
.size-sidebar a:hover {
  color: #fff;
}
.color-list {
  border: 1px solid #eeeeee;
  display: block;
  float: left;
  height: 11px;
  margin-right: 15px;
  width: 11px;
}
.color-black {
  background: #000;
}
.color-white {
  background: #fff;
}
.color-red {
  background: #ff0000;
}
.color-blue {
  background: #0000ff;
}
.color-pink {
  background: #ff69b4;
}

.sin-sidebar.banner-sidebar {
  border: medium none;
  padding: 0;
}
.banner-sidebar .sin-banner {
  margin: 0;
}

.banner-sidebar .banner-bref h1 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 40px;
  margin: 0;
}
/* Quick View Area */
.quick-view-modal .row {
  margin-left: -30px;
  margin-right: -30px;
}
.quick-view-container {
  background: #fff none repeat scroll 0 0;
  display: inline-block;
  padding: 30px 15px;
  position: relative;  
}
.quick-view-modal {
  animation-name: zoomOut;
}
.quick-view-modal.in {
  animation-name: zoomIn;
}
.model-close {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #303030;
  height: 40px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 40px;
  z-index: 9;
}
.model-close i {
  display: block;
  font-size: 20px;
  line-height: 40px;
}
.model-close:hover {
  background: #f1f2f3;
}

.blog-details-page .sin-blog {
  margin-bottom: 30px;
}
.blog-details-page .blog-details {
  padding: 20px 30px 25px;
}
.blog-details-page .blog-details > p {
  margin-bottom: 25px;
}
.blog-details-page .blog-details > p:last-child {
  margin-bottom: 0;
}
/* Comments List */
.comment-list {
  margin-bottom: 30px;
  padding-right: 100px;
}
.comment-list > li {
  padding-right: 40px;
}
.comment-list > li ul {
  margin-left: 40px;
  margin-right: -40px;
}

.sin-comment {
  background: #fff none repeat scroll 0 0;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
}
.comment-image {
  border: 1px solid #eee;
  width: 77px;
  margin-right: 20px;
}


.comment-details h4 {
  display: block;
  float: left;
  font-size: 18px;
  font-weight: 500;
  margin-top: 0;
  line-height: 14px;
  margin-bottom: 10px;
}
.comment-details h4 span {
  color: #606060;
  display: block;
  float: right;
  font-size: 13px;
  font-weight: 300;
  margin-left: 17px;
}
.comment-details a {
  color: #909090;
  float: right;
  font-size: 20px;
}

.comment-details p {
  overflow: hidden;
  width: 100%;
  color: #606060;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    visibility: visible;
    margin-top: 10px;
}
/* Comment Form */
.comment-form {
  padding-right: 200px;
}
.comment-form h2 {
  font-size: 20px;
  line-height: 17px;
  margin: 0 0 20px;
  padding-bottom: 6px;
  position: relative;
  text-transform: uppercase;
}
.comment-form h2::before {
  background: #909090 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 25px;
}

.cont{
  border-color: #fff;
}

.terms-page p{
font-size: 14px;
padding: 10px 0px ;
}
.terms-page{
  padding: 50px 0px 0px 0px;
}

.accordion-button {
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  border-radius: 0.375rem;
}

.accordion-button:not(.collapsed) {
  background-color: #aa6437; /* theme maroon */
  color: #fff;
  box-shadow: none;
}

.collapse{
  visibility: visible!important;
}
.border-tt{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer h3{
  margin-top: 30px;
}

.bdleft{
  height: 100px;
  border-left:1px solid;
  margin-top: 30px;
}

  /* Footer column left borders */
  .footer-col {
    position: relative;
    padding-left: 1.5rem;
  }

  .border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
  }

  /* Remove border on small screens for clean stacking */
  @media (max-width: 768px) {
    .border-left {
      border-left: none;
      padding-left: 0;
    }
  }

  /* Optional subtle top gradient border (OYO style) */
  