html {
  /* Offsets all scroll anchors by 96px - which is the height of the header */
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

html,
:root {
    font-size: 16px !important;
}

/* Apply to all elements with overflow-y: scroll */
/* No styles yet — handled below via more practical approach */

/* *:where([style*="overflow-y: scroll"], [style*="overflow-y:scroll"], [style*="overflow: scroll"])::-webkit-scrollbar, 
*:where([style*="overflow-y: scroll"], [style*="overflow-y:scroll"], [style*="overflow: scroll"])::-webkit-scrollbar-track, 
*:where([style*="overflow-y: scroll"], [style*="overflow-y:scroll"], [style*="overflow: scroll"])::-webkit-scrollbar-thumb {
} */
 


/* ✅ Better: Use a global rule that targets scrollable elements by behavior */
html {
  scrollbar-color: var(--bg-600) var(--bg-900);
  scrollbar-width: thin;
}

/* WebKit scrollbar for all scrollable elements */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-900);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-600);
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bg-500);
  background-clip: padding-box;
}

.goldika-mc__content_area{
	max-height:75vh;
	overflow-y:auto;
}

@media (max-width: 921px) {
    html,
    :root {
        font-size: 16px !important;
    }
}

@media (max-width: 544px) {
    html,
    :root {
        font-size: 16px !important;
    }
}

.elementor-widget-loop-carousel.elementor-pagination-position-outside:not(:has(>.elementor-widget-container)) .swiper-pagination-bullet, .elementor-widget-loop-carousel.elementor-pagination-position-outside>.elementor-widget-container .swiper-pagination-bullet{
 background:white !important;
}


.woocommerce-js .quantity .minus , .woocommerce-js .quantity .plus {
	margin:0 !important;
	border-right-width: 1px !important;
	border-left-width: 1px !important;
}



.goldika_footer .footer-main-text .footer-text-title{
	color: var(--golden-500);
}

.goldika_footer .footer-menu-header{
	font-size:16px;
}

.goldika_footer .footer-menu-body{
	font-size:14px;
}
.footer-social{
    margin:auto !Important;
}

.goldika_footer .footer-social-ico img{
	filter: invert(1);
}

.goldika_footer .footer-address a, .goldika_footer .footer-tel a{
	font-size:16px;
}

.download-container-desk, .download-container{
	display: flex;
	flex-wrap: wrap;
	align-items: center !important;
	gap: 20px;
	font-family: sans-serif;
}

.download-item img {
	height: 48px !important; /* Adjust height as needed */
	width: auto;
	margin: auto;
	transition: transform 0.2s ease;
	display: block;
}

.download-item img:hover {
	transform: scale(1.05);
}


@media (max-width: 1024px) {


	.footer-details{
		background:unset;
	}
	
	.marketicon{
		max-width: 250px;
	}
	
		.footer-social{
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap:20px;
		flex-wrap: wrap;
	}
.download-container {
	justify-content: center;
}
	.footer-social-ico{
      width: 2em;
}
	.goldika_footer .footer-menu-body ul{
	margin-bottom:1em;
}
	.goldika_footer .footer-menu-body ul li a{
		padding-block: 8px;
	}
}
@media (min-width: 1025px) {

	.foot-social{
		background: var(--body-950) !important;
			border: 1px solid var(--primary-400);
			box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.2);
	}
	.footer-social{
		display: flex;
		justify-content: center;
		align-items: center;
		gap:20px;
		flex-wrap: wrap;
	}

		.footer-details{
		background:var(--body-950);
	}
	
	.trust-logo-sgl p{
		font-size: 14px;
	}
	
	.download-container-desk {
	justify-content: start;
	
}
.footer-social-ico{
      width: 1.5em;
}
}

@media (min-width: 767px) and (max-width: 1024px) {
	 .download-container-desk{
		justify-content: center;
	}
	.footer-social-ico{
      width: 2.5em;
}
}

input:not([type="submit"]):-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-internal-autofill-selected , input.input-text:-webkit-autofill,
input.input-text:-webkit-autofill:hover,
input.input-text:-webkit-autofill:focus,
input.input-text:-internal-autofill-selected {
  -webkit-box-shadow: 0 0 0 1000px var(--body-900) inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 50000s ease-in-out 0s;
}

input:not([type="submit"]):-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill, input.input-text:-moz-autofill {
  background-color: var(--body-900) !important;
  color: white !important;
}
