/* Hide toolset on mobile */
#toolset {
	display: none;
}

/* Base styles */
body {
	background-color: #fff;
	color: #000;
	font-size: 15px; /* Adjust base font size */
	font-family: "Diatype Variable", Icons; /* Fallback font */
	line-height:1; /* Improved readability */
	margin: 0; /* Remove default margin */
	padding: 5; /* Remove default padding */font-style: normal;
	font-weight: 400;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}



/* Responsive adjustments */
@media only screen and (max-width: 768px){
	/* Adjustments for smaller screens */
	[data-css-preset] .content_padding {
		padding: 2rem; /* Increase padding for content */
	}

	[data-predefined-style="true"] h1 {
		font-size: 6.8rem; /* Decrease h1 font size */
	color: #fff;
	}

body {
	background-color: #fff;
	color: #000;
	font-size: 15px; /* Adjust base font size */
	font-family: "Diatype Variable", Icons; /* Fallback font */
	line-height: 1.2; /* Improved readability */
	margin: 0; /* Remove default margin */
	padding:05 ; /* Remove default padding */
	font-style: normal;
	font-weight: 00;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}
    
small {
	color: #000;
	font-size: 12px; /* Adjust base font size */
	font-family: "Diatype Variable", Icons; /* Fallback font */
	line-height: 1rem; /* Improved readability */
	margin: 0; /* Remove default margin */
	padding: 40; /* Remove default padding */
	font-style: normal;
	font-weight: 400;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}

    h2{
font-size: 11px;
      	
}

	[data-css-preset] .content_padding {
		padding: 1.5rem; /* Example padding for content */
	}

	/* Example margin adjustments */
	[data-css-preset] .thumbnails {
		margin: 0 -10px; /* Example negative margin for thumbnails */
	}

	.gallery_image_caption {
		margin-top: 0.8rem; /* Example margin top for gallery image caption */
		margin-bottom: 0.3rem; /* Example margin bottom for gallery image caption */
	}

	}

.thumbnails {
        display: grid; /* Use grid layout for gallery items */
        grid-template-columns: repeat(auto-fill, minmax(50%, 1fr)); /* Responsive grid columns */
        gap: 10px; /* Gap between gallery items */
    }

    .thumbnails .gallery-item {
        position: relative;
        overflow: hidden;
    }

/* General text adjustments */
b,
strong {
	font-weight: bold
        ;
}
i,
em {
	font-style: italic;
}

/* Normalize image behavior */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	display: block;
	margin: 0 auto; /* Center images */
}

/* Adjustments for lists */
ul,
ol {
	padding-left: 1.5rem; /* Adjust padding for lists */
}

/* Adjustments for blockquote */
blockquote {
	padding: 0 1.5rem; /* Add padding to blockquote */
}

/* Adjustments for hr */
hr {
	margin: 1.5rem 0; /* Add margin to hr */
}

/* Adjustments for links */
a {
	color: #007bff; /* Blue link color */
	text-decoration: none;
}

a:hover {
	text-decoration: underline; /* Underline on hover */
}

/* Adjustments for gallery image captions */
.gallery_image_caption {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	font-size: 1.5rem; /* Decrease font size */
	font-weight: 500;
	color: rgba(0, 0, 0, 0.85);
	font-family: Arial, sans-serif; /* Fallback font */
	line-height: 1.3;
	text-align: left;
}

/* Adjustments for loading animation */
.loading[data-loading] {
	position: fixed;
	bottom: 8px;
	left: 8px;
}

.add-to-cart-btn {
  position: absolute; /* works well if overlaying on product images */
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  
  background-color: rgba(255, 182, 193, 0.9); /* soft pink w/ transparency */
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;

  opacity: 0; /* hidden by default */
  transition: all 0.3s ease-in-out;
}


.purchase-btn:hover {
  background-color: #ff9db2; /* slightly deeper pink */
  transform: translateY(-2px); /* playful lift */
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.purchase-btn:active {
  transform: translateY(0); /* press effect */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

[data-css-preset] #site_menu_button {
	font-size: 28px /*!site_menu_button*/;
	left: 10rem /*!site_menu_button*/;
	top: 10rem /*!site_menu_button*/;
}

/* Additional adjustments based on specific needs */