@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root{
	--blue: #3490f3;
	--hov-blue: #2e7fd6;
	--soft-blue: rgba(0, 123, 255, 0.15);
	--secondary-base: #FF5500;
	--hov-secondary-base: #EB4E00;
	--soft-secondary-base: rgba(255,85,0,0.15);
	--gray: #9d9da6;
	--gray-dark: #8d8d8d;
	--secondary: #919199;
	--soft-secondary: rgba(145, 145, 153, 0.15);
	--success: #85b567;
	--soft-success: rgba(133, 181, 103, 0.15);
	--warning: #f3af3d;
	--soft-warning: rgba(243, 175, 61, 0.15);
	--light: #f5f5f5;
	--soft-light: #dfdfe6;
	--soft-white: #b5b5bf;
	--dark: #292933;
	--soft-dark: #1b1b28;
	--primary: #0080FF;
	--hov-primary: #0066CC;
	--soft-primary: rgba(0,128,255,0.15);
}
.ff-inter {
	font-family: 'Inter', sans-serif, sans-serif;
}
.pagination .page-link,
.page-item.disabled .page-link {
	min-width: 32px;
	min-height: 32px;
	line-height: 32px;
	text-align: center;
	padding: 0;
	border: 1px solid var(--soft-light);
	font-size: 0.875rem;
	border-radius: 0 !important;
	color: var(--dark);
}
.pagination .page-item {
	margin: 0 5px;
}

.form-control:focus {
	border-width: 2px !important;
}
.iti__flag-container {
	padding: 2px;
}

.tagify.tagify--focus{
	border-width: 2px;
	border-color: var(--primary);
}

#map{
	width: 100%;
	height: 250px;
}
#edit_map{
	width: 100%;
	height: 250px;
}

.pac-container { z-index: 100000; }

/* Product Image Hover */

.image-hover-effect {
    position: relative;
    overflow: hidden;
}
.product-hover-image {
    top: 0;
    left: 0;
    opacity: 0; 
    transition: opacity 0.6s ease-in-out;
}

.image-hover-effect:hover .product-hover-image {
    opacity: 1; 
}

.live-circle-icon {
    animation: blink-1p5 1.5s infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes blink-1p5 {
    0%   { opacity: 1; }   
    50%  { opacity: 0.5; }   
    100% { opacity: 1; }  
}

  /* Respect reduced motion preferences */
  @media (prefers-reduced-motion: reduce) {
    .blink { animation: none; }
  }

.product-details-page .add-to-cart {
  transition: transform 0.3s ease-in-out;
}

.product-details-page .add-to-cart:hover {
  transform: scale(1.02, 1.1);
}

/* Image Gallery Viewer */


.img-zoom {
   cursor:grab;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left:0; top:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
    overflow: auto;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    top: 50%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-toolbar button {
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    border-radius: 5px;
}
.lightbox-close { font-size: 22px; background: rgba(0,0,0,0.7);}


.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    background: rgb(0 0 0 / 25%);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1100;
    transition: background 0.3s ease;
}
.lightbox-arrow:hover {
    background: rgba(0,0,0,0.8);
}
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

.lightbox-toolbar {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* left + right */
    align-items: center;
    padding: 0 15px;
    z-index: 1100;
}

.toolbar-left {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.toolbar-right button {
    margin-left: 4px;
    font-size: 18px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.toolbar-right button:hover {
    background: rgba(0,0,0,0.8);
}


.lightbox-modal img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
   
    max-width: 90% !important;
    max-height: 80% !important;
    margin: 0 !important; 
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

/* Expand Icon */
.carousel-box {
    position: relative; 
    overflow: visible;  
}

.wd-show-product-gallery-wrap {
    position: absolute;
    bottom: 40px;
    left: 10px;
    z-index: 999; 
}

.wd-show-product-gallery-wrap a {
    display: flex;
    align-items: center;
    padding: 6px ;
    background: rgba(0,0,0,0);
    color: #666666;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    width: 35px;
    transition: width 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.wd-show-product-gallery-wrap a .text {
    margin-left: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wd-show-product-gallery-wrap a:hover {
    width: 145px; 
    color: #000;
}

.wd-show-product-gallery-wrap a:hover .text {
    opacity: 1;
}

/* Custom hober effect on btn */
.custom-hov-btn:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.custom-hov-btn:active {
    transform: translateY(1px);
}

.pb-26px{
    padding-bottom: 1.625rem;
}
.py-19px{
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
}
.py-32px{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.pt-32px{
    padding-top: 2rem;
}
.pb-32px{
    padding-bottom: 2rem;
}
.mb-32px{
    margin-bottom: 2rem;
}

.my-32px{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
/* Extra small devices (xs) <576px */
@media (max-width: 575.98px) {
    .pb-26px { padding-bottom: 1rem !important; }
    .py-19px { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
    .py-32px { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .pt-32px { padding-top: 1rem !important; }
    .pb-32px { padding-bottom: 1rem !important; }
    .mb-32px { margin-bottom: 1rem !important; }
    .my-32px { margin-top: 1rem !important; margin-bottom: 1rem !important; }
}

/* Small devices (sm) ≥576px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .pb-26px { padding-bottom: 1.25rem !important; }
    .py-19px { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
    .py-32px { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
    .pt-32px { padding-top: 1.25rem !important; }
    .pb-32px { padding-bottom: 1.25rem !important; }
    .mb-32px { margin-bottom: 1.25rem !important; }
    .my-32px { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
}

/* Medium devices (md) ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .pb-26px { padding-bottom: 1.5rem !important; }
    .py-19px { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .py-32px { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .pt-32px { padding-top: 1.5rem !important; }
    .pb-32px { padding-bottom: 1.5rem !important; }
    .mb-32px { margin-bottom: 1.5rem !important; }
    .my-32px { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
}

/* Large devices (lg) ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .pb-26px { padding-bottom: 1.625rem !important; }
    .py-19px { padding-top: 1.1875rem !important; padding-bottom: 1.1875rem !important; }
    .py-32px { padding-top: 1.75rem !important; padding-bottom: 1.75rem !important; }
    .pt-32px { padding-top: 1.75rem !important; }
    .pb-32px { padding-bottom: 1.75rem !important; }
    .mb-32px { margin-bottom: 1.75rem !important; }
    .my-32px { margin-top: 1.75rem !important; margin-bottom: 1.75rem !important; }
}

/* Extra large devices (xl) ≥1200px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .pb-26px { padding-bottom: 1.75rem !important; }
    .py-19px { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
    .py-32px { padding-top: 1.875rem !important; padding-bottom: 1.875rem !important; }
    .pt-32px { padding-top: 1.875rem !important; }
    .pb-32px { padding-bottom: 1.875rem !important; }
    .mb-32px { margin-bottom: 1.875rem !important; }
    .my-32px { margin-top: 1.875rem !important; margin-bottom: 1.875rem !important; }
}

/* Extra extra large devices (xxl) ≥1400px */
@media (min-width: 1400px) {
    .pb-26px { padding-bottom: 1.625rem !important; }
    .py-19px { padding-top: 1.1875rem !important; padding-bottom: 1.1875rem !important; }
    .py-32px { padding-top: 2rem !important; padding-bottom: 2rem !important; } /* max 2rem */
    .pt-32px { padding-top: 2rem !important; }
    .pb-32px { padding-bottom: 2rem !important; }
    .mb-32px { margin-bottom: 2rem !important; }
    .my-32px { margin-top: 2rem !important; margin-bottom: 2rem !important; }
}
.product_box {
	transition-duration: .3s;
	border-radius: .5rem;
	margin-bottom: 0px;
	border: 1px solid #fff !important;
}
.product_box:hover {
	border:1px solid #fff !important;
	cursor:pointer !important;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}
.product_box:hover img {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

@media (min-width: 1500px) {
    .container, .container-xxl {
       /*  max-width: 90%; */
    }
}
.g-0 .col {
	padding: 0px;
}
.g-2 .col {
	padding: 8px;
}
.bg-theme {
	background:#800000;
}
.giftboxindex {
  background: linear-gradient(45deg, #fc4f2d, #661804);
  border: 2px solid #fc4f2d !important;
  transition: all 0.3s ease;
  color: #fff;
  border-radius: 10px;
}

.giftboxindex:hover {
  background: #fff;
  color: #fc4f2d;
  border: 2px solid #fc4f2d !important;
  cursor: pointer !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(252, 79, 45, 0.3);
}

.giftboxindex:hover h4 {
	color:#000 !important;
}
.giftboxindex:hover p {
	color:#000 !important;
}
/* Light Scrollbar Design */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;        /* light background */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c9c9c9;        /* light grey thumb */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b1b1b1;        /* slightly darker on hover */
}

/* Firefox support */
* {
  scrollbar-width: thin;
  scrollbar-color: #c9c9c9 #f1f1f1;
}

.btn-sm.btn-icon {
    padding: 6px !important;
    width: calc(2.02rem + 2px) !important;
    height: calc(2.02rem + 2px) !important;
    font-size: 20px !important;
}

/* Main box */
.thecore-square-box{
	position: relative;
	overflow: hidden;
}

/* Main Image */
.main-img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

/* Slice container */
.slice-container{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	z-index:2;
}

/* Slice */
.slice{
	flex:1;
	background-size:cover;
	background-position:center;
	transform: translateY(0);
	transition: transform 1s ease;
}

/* Break animation */
.slice.animate{
	transform: translateY(-100%);
}
.product_list .product{
	
}
.feature-box {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 12px;
    padding: 20px;
    z-index: 1;
}

/* Gradient Background */
.feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #078BDC 0%, #35CAFE 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

/* Hover Effect */
.feature-box:hover::before {
    transform: translateY(0);
}

/* Lift Effect */
.feature-box:hover {
    transform: translateY(-8px);
    
}

/* 🔥 White Text & Icon on Hover */
.feature-box:hover .feature-title,
.feature-box:hover .feature-text,
.feature-box:hover .feature-icon {
    color: #fff;
}

/* Icon */
.feature-icon {
    font-size: 40px;
    color: #6c757d;
    transition: 0.3s;
}

/* Title */
.feature-title {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

/* Text */
.feature-text {
    font-size: 13px;
    color: #6c757d;
    transition: 0.3s;
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    gap: 5px;
}
.product {
	border: 1px solid #dddddda1;
    padding: 10px;
    margin-right: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
}
.product:hover {
	border: 1px solid #0000ff6e;
    cursor: pointer;
    padding: 10px;
    margin-right: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.footer_custom {
    background: linear-gradient(#000000eb, #000000e6), url(../img/diff_bg.jpg);

    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.slick-list {
	padding: 10px 0px !important;
}
.difference_bg {
  background: linear-gradient(#070044bf, #177ed2e6),
              url('../img/footer_bg.jpg');
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.blur_bg_card {
  background: #fff; /* transparent glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

  transition: all 0.3s ease;
  height: 100%;
}

/* Hover Effect 🔥 */
.blur_bg_card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.newsletter-heading {
    font-size: 4rem;
    color: #222;
    font-weight: 200;
    line-height: 1;
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-color: #c8699e;
    background-image: linear-gradient(60deg, #fcc5e4 0%, #fda34b 15%, #ff7882 35%, #c8699e 52%, #7046aa 71%, #0c1db8 87%, #020f75 100%);
}
.category_card {
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid #dddddd82;
  padding: 12px;
}

.category_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.header_menu_links {
	color: #fff;
}
.category_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 4 boxes */
  gap: 8px;
}

/* Responsive 🔽 */
@media (max-width: 992px) {
  .category_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .category_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .category_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.border-light {
	border-color: #ededf263 !important;
}
.discount-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: red;
	color: #fff;
	font-size: 12px;
	padding: 3px 6px;
	border-radius: 3px;
	z-index: 9;
}
.pd_img {
    background: #ddd;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.ordmodal {
    width: 600px;
    right: 0;
    left: auto !important;
    margin: 10px !important;
    border-radius: 16px;
}
.go-top-btn {
	position: fixed;
	bottom: -60px; /* hidden by default */
	right: 20px;
	z-index: 999;
	width: 45px;
	height: 45px;
	border: none;
	background: linear-gradient(45deg, #070044, #177ed2);
	color: #fff;
	font-size: 18px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	transition: all 0.4s ease;
	opacity: 0;
}

/* show state */
.go-top-btn.show {
	bottom: 20px;
	opacity: 1;
}

/* hover */
.go-top-btn:hover {
	transform: scale(1.1);
}
.thumb-img {
	cursor: pointer;
	transition: 0.3s;
	border: 2px solid transparent;
}

.thumb-img:hover {
	border: 2px solid #000;
	transform: scale(1.05);
}

.zoom-container {
	position: relative;
	overflow: hidden;
	cursor: zoom-in;
	width: 500px;
	height: 500px;
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.2s ease;
	will-change: transform;
	image-rendering: auto;
	backface-visibility: hidden;
	filter: contrast(1.05) saturate(1.05);
}