@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

/* Root */
:root {
	--samBlog_Font_Family_All: 'Roboto' !important;
	--samBlog_Font_Family_Headings: 'Roboto Condensed' !important;
	--samBlog_Font_Weight_Normal: 600;
	--samBlog_Font_Weight_Bold: 700;

	--samBlog_Max_Width: 840px;
	--samBlog_Box_Shadow: 0px 5px 5px -2px rgba(0, 0, 0, 0.20);
	--samBlog_Border_SearchBar: 1px solid #8A8A8A;
	--samBlog_Border_SearchBar_Focus: 1px solid #303030;
	--samBlog_Border_Product_Card: 1px solid #E3E3E3;
	--samBlog_Border_Product_Card_Hover: 1px solid #303030;
	--samBlog_Date_Color: #616161;
	--samBlog_Date_Font_Size: 14px;
}
/* end */

/* Font Settings */
.samBlog * {
	font-family: var(--samBlog_Font_Family_All);
}
.samInstantSearch .samIS_SearchBar .samIS_SearchTotal {
	padding: 10px 0 0 0;
	display: block;
	font-weight: var(--samBlog_Font_Weight_Normal);
}
.samBlog h1,
.samBlog h2,
.samBlog h3,
.samBlog h4,
.samBlog h5,
.samBlog h6 {
	text-transform: initial;
	font-weight: var(--samBlog_Font_Weight_Bold);
	font-family: var(--samBlog_Font_Family_Headings);
}
.samBlog.samBlog_Navigation a {
	font-weight: var(--samBlog_Font_Weight_Normal);
}
.samBlog.samBlog_Navigation a.active {
	font-weight: var(--samBlog_Font_Weight_Normal);
}
/* end */


/* Blog Global Classes */
.samBlog .samBlog_Date {
	color: var(--samBlog_Date_Color);
	font-size: var(--samBlog_Date_Font_Size);
	font-weight: 400;
}
/* end */

/* Instant Search */
.samInstantSearch .container {
    max-width: var(--samBlog_Max_Width);
    margin: 20px auto;
}
.samInstantSearch .samIS_SearchBar {
    margin-bottom: 20px;
}
.samInstantSearch .samIS_SearchBar input {
    width: 100%;
    padding: 10px;
    border: var(--samBlog_Border_SearchBar);
	border-radius: 0 !important;

	appearance: none;
	background-image: url("/images/checkout_page/search.svg");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 18px;
}
.samInstantSearch .samIS_SearchBar input:focus {
	border: var(--samBlog_Border_SearchBar_Focus);
}
.samInstantSearch .samIS_SearchBar .samIS_SearchTotal {
	padding: 10px 0 0 0;
	display: block;
}
.samInstantSearch .samIS_Product_Grid {
    display: flex;
    flex-wrap: wrap;
	gap: 12px;
}
.samInstantSearch .samIS_Product_Card {
    background-color: #ffffff;
    width: calc(50% - 6px); /* Two cards in a row */
    border: var(--samBlog_Border_Product_Card);
    overflow: hidden;
    transition: all 0.3s;
    padding: 12px;
	box-shadow: var(--samBlog_Box_Shadow);
    /* height: fit-content !important; */
}
.samInstantSearch .samIS_Product_Card:hover {
    cursor: pointer;
	border: var(--samBlog_Border_Product_Card_Hover);
}
.samInstantSearch .samIS_Product_Card a {
	color: #000000;
}
.samInstantSearch .samIS_Product_Image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}
.samInstantSearch .samIS_Product_Row {
	padding: 6px 0;
}
.samInstantSearch .samIS_Product_Title {
	text-transform: initial;
}
.samInstantSearch .samIS_Product_Desc {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	max-height: 65px;
}
@media (max-width: 991px) {
	.samInstantSearch .samIS_SearchBar {
	    margin-bottom: 10px;
	}
	.samInstantSearch .samIS_Product_Grid {
		gap: 20px;
	}
	.samInstantSearch .samIS_Product_Card {
	    width: 100%; /* One card in a row */
	}
}
/* end */ 

/* Pagination Container */
.samPaginationContainer {
	margin: 30px 0 0 0;
	display: flex;
	justify-content: right;
	gap: 6px;
}
.samPaginationContainer .samPC_ViewAllBtn::after {
	content: 'View All'
}
.samPaginationContainer .samPC_PrevBtn::after {
	content: 'Prev'
}
.samPaginationContainer .samPC_NextBtn::after {
	content: 'Next'
}
.samPaginationContainer #samPC_PageNumber {
    display: inline-block;
    margin-top: 30px;
}
.samPaginationContainer .page-number {
    margin: 0 3px;
}
.samPaginationContainer .page-number.active {
    background-color: #303030;
    color: #ffffff;
}
.samPaginationContainer .dots {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    cursor: default;
    color: #303030;
}
@media (max-width: 991px) {
	.samPaginationContainer {
		justify-content: center;
	}
	.samPC_PageNumber .page-number {
		display: none; /* Hide all buttons by default */
	}

	/* Show the active button */
	.samPC_PageNumber .page-number.active {
		display: inline-flex;
	}

	/* Show the button immediately after the active button */
	.samPC_PageNumber .page-number.active + .page-number {
		display: inline-flex;
	}

	/* Show the button immediately after the active button */
	*:has(+ .page-number.active) {
		display: inline-flex;
	}
}
/* end */


/* Blog Featured Image (PDP Only) */
.samBlog.samBlog_FeaturedImage img {
	height: 500px;
	width: 100%;
	object-fit: cover
}
.samBlog.samBlog_FeaturedImage::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
	pointer-events: none;
}
@media (max-width: 991px) { 
	.samBlog.samBlog_FeaturedImage {
		padding-top: 10px;
	}
	.samBlog.samBlog_FeaturedImage img {
		width: calc(100% + 10px);
		margin-left: -5px;
	}
}
/* end */


/* Blog Navigation */
.samBlog.samBlog_Navigation {
	background-color: #f7f7f7;
	border-bottom: var(--samBlog_Border_Product_Card);
}
.samBlog.samBlog_Navigation a {
	padding: 10px 20px;
	color: #000;
}
.samBlog.samBlog_Navigation a:hover {
	text-decoration: underline;
}
.samBlog.samBlog_Navigation button.hamburger-menu {
	display: none
}
@media (max-width: 991px) {
	.samBlog.samBlog_Navigation {
		background-color: #f7f7f7;
		padding: 20px 9px 12px 9px;
		position: relative;
	}
	.samBlog.samBlog_Navigation .samGlob_DP_Flex {
		justify-content: left;
	}
	.samBlog.samBlog_Navigation a.active {
		order: 1;
		padding: 0;
    }
	.samBlog.samBlog_Navigation button.hamburger-menu {
		display: block;
        order: 2;
		margin-left: auto;
		border: 0;
		background-color: transparent;
		font-size: 26px;
		padding: 0;
    }
    .samBlog.samBlog_Navigation .menu {
        display: none; /* Initially hidden */
        flex-direction: column;
        background-color: #f7f7f7;
		width: 100%;
        box-shadow: var(--samBlog_Box_Shadow);
        padding: 0 10px;
		z-index: 1;
		border-top: var(--samBlog_Border_Product_Card);
		position: absolute;
		top: 100%;
		left: 0;
    }
    .samBlog.samBlog_Navigation .menu a {
        padding: 12px;
        text-align: left;
        border-bottom: var(--samBlog_Border_Product_Card);
    }

    .samBlog.samBlog_Navigation .menu a:last-child {
        border-bottom: none;
    }
}
/* end */


/* Blog Top Section */
.samBlog.samBlog_TopSection .container {
	max-width: var(--samBlog_Max_Width);
    padding-top: 20px;
}
.samBlog.samBlog_TopSection .samBlog_Category {
	padding: 20px 0;
}
.samBlog.samBlog_TopSection .samBlog_Category .samBlog_CateLabel label {
	display: block;
	padding: 10px 0 5px 0;
	color: var(--samBlog_Date_Color);
}
/* Category Buttons - Desktop */
@media (min-width: 993px) {
	.samBlog.samBlog_TopSection .samBlog_Category .samBlog_CateList_Wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		align-items: center;
		justify-content: left;
		width: fit-content;
	}
	.samBlog.samBlog_TopSection .samBlog_Category .samBlog_Category_Wrapper a:hover {
		background-color: #303030;
		color: #ffffff;;
	}
}
/* Category Buttons - Mobile */
@media (max-width: 992px) {
	.samBlog.samBlog_TopSection .samBlog_Category {
		padding: 0;
	}
	.samBlog.samBlog_TopSection .samBlog_Category .samBlog_CateList {
		max-width: max-content;
		overflow-x: scroll;
		padding: 0;
		width: 100%;
	}
	/* Disable Scrollbar */
	.samBlog.samBlog_TopSection .samBlog_Category .samBlog_CateList::-webkit-scrollbar {
		display: none !important;
	}
	.samBlog.samBlog_TopSection .samBlog_Category .samBlog_CateList_Wrapper {
		width: max-content;
		padding: 10px;
		display: flex;
		gap: 6px;
	}
	.samBlog.samBlog_TopSection .samBlog_Category .samBlog_CateList_Wrapper a:active {
		background-color: #303030;
		color: #ffffff;;
	}
} 
/* end */


/* Related Posts Section */
.samBlog .samBlog_Related_Posts {
	margin: 20px 0 30px 0;
}
.samBlog .samBlog_Related_Posts .samGlob_Product_Card_Grid {
	margin: 20px auto;
}
.samBlog .samBlog_Related_Posts .samGlob_Product_Card_Grid .samGlob_Product_Card {
	width: calc(33% - 6px); /* Three cards in a row */
}
/* end */

/* =====BLOG GENERAL=====*/




/* =====BLOG HOMEPAGE=====*/
/* Main Hero */
.samBlog.samBlog_MainHero img {
    width: 100%;
    object-fit: contain;
}
.samBlog.samBlog_MainHero h1 {
    color: #ffffff;
    text-transform: initial;
	text-align: center;
}
@media (max-width: 991px) {
    .samBlog.samBlog_MainHero {
        margin-top: 10px;
    }
	.samBlog.samBlog_MainHero .container {
	    padding: 0;
	}
}
/* end */
/* =====END BLOG HOMEPAGE=====*/





/* =====BLOG PDP and BLOG PDP BIO=====*/

/* General */
.samBlog.samBlog_PDP {
    padding-top: 20px;
}
.samBlog.samBlog_PDP:not(.samBlog_PDP_Bio) .samBlog_PDP_Container {
	padding-top: 20px;
	transform: translateY(-450px);
	margin-bottom: -300px;
	background-color: #ffffff;
	border: var(--samBlog_Border_Product_Card);
	max-width: 800px;
}
@media (max-width: 991px) {
	.samBlog.samBlog_PDP {
	    padding-top: 10px;
	}
    .samBlog.samBlog_PDP .container {
        padding: 10px; /* Overrdie from ds-base */
    }
	.samBlog.samBlog_PDP:not(.samBlog_PDP_Bio) .samBlog_PDP_Container {
		max-width: calc(100% - 20px);
		transform: translateY(-470px);
	}
}
/* end */

/* Article Section */
.samBlog.samBlog_PDP h2,
.samBlog.samBlog_PDP p,
.samBlog.samBlog_PDP button,
.samBlog.samBlog_PDP .samBlog_PDP_Article_Section img {
	margin: 10px 0;
}
.samBlog.samBlog_PDP .samBlog_PDP_Article_Section img {
	width: 100%;
	height: auto;
}
.samBlog.samBlog_PDP p {
	line-height: 1.5;
	margin-bottom: 24px;
}
.samBlog.samBlog_PDP button.btn-primary::after {
	font-family: 'FontAwesome';
	content: '\f061';
	padding-left: 10px;
} 
.samBlog.samBlog_PDP .samBlog_PDP_Title_Section .samBlog_Date::after,
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label::after {	
	content: '\2022';
	padding: 0 8px;
	font-weight: bolder;
}
.samBlog.samBlog_PDP .samBlog_PDP_Title_Section label:hover {
	cursor: default;
}
.samBlog.samBlog_PDP .samBlog_PDP_Title_Section .samBlog_Date:last-child::after,
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label:last-child::after {
	content: '';
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section {
	margin: 10px 0;
	justify-content: left;
}
.samBlog.samBlog_PDP_Bio .samBlog_PDP_Bio_Section {
	align-items: flex-start;
	gap: 10px;
}
.samBlog.samBlog_PDP_Bio .samBlog_PDP_Bio_Section .samBlog_Bio_Name {
	line-height: 1;
}
.samBlog.samBlog_PDP_Bio .samBlog_PDP_Bio_Section .samBlog_Bio_Job {
	font-weight: 500;
}
.samBlog.samBlog_PDP_Bio .samBlog_PDP_Bio_Details {
	margin-top: 0;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section img {
	border-radius: 6px;
	width: 40px;
	height: 40px;
	aspect-ratio: 1/1;
	object-fit: cover;
	margin-right: 8px;
}
.samBlog.samBlog_PDP_Bio .samBlog_PDP_Bio_Section img {
	border-radius: 0;
	width: 120px;
	height: 120px;
	object-fit: cover;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label:hover {
	cursor: default;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label.samBlog_Bio_Name {
	color: #000;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label.samBlog_Bio_Name::before {
	content: 'AUTHOR';
	display: block;
	color: var(--samBlog_Date_Color);
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label.samBlog_Bio_Link a {
	color: #007ac2;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label.samBlog_Bio_Link a:hover {
	text-decoration: underline;
}
/* .samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label.samBlog_Bio_Link a::after {
	font-family: 'FontAwesome';
	content: '\f08e';
	padding-left: 10px;
} */
@media (max-width: 600px) {
	.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label {
		width: 100%;
	}
	.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label.samBlog_Bio_Name,
	.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label.samBlog_Bio_Job {
		width: auto;
	}
	.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label.samBlog_Bio_Job::before {
		content: '\2022';
		padding: 0 4px;
	}
	.samBlog.samBlog_PDP_Bio .samBlog_PDP_Bio_Section label.samBlog_Bio_Job::before {
		display: none;
	}
	.samBlog.samBlog_PDP .samBlog_PDP_Title_Section .samBlog_Date::after {
		padding: 0 0 0 3px;
	}
	.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section label::after {
		display: none;
	}
}
/* end */

/* Article Section => Bio Section (Bottom) */
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section_Bottom {
	align-items: flex-start;
	margin: 10px 0 30px 0;
	background-color: #f7f7f7;
	padding: 6px;
	border-radius: 12px;
	max-width: 440px;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section_Bottom img {
	margin-top: 4px;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section_Bottom label.samBlog_Bio_Name {
	font-weight: 600;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section_Bottom label.samBlog_Bio_Name::before,
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section_Bottom label.samBlog_Bio_Name::after {	
	content: '';
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section_Bottom .samBlog_Bio_Job_Desc {
	width: 100%;
	padding: 0 0 10px 0;
	color: #000;
	font-weight: 500;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section_Bottom .samBlog_Bio_Link {
	width: 100%;
}
.samBlog.samBlog_PDP .samBlog_PDP_Bio_Section_Bottom .samBlog_Bio_Link a {
	font-weight: 500;
}
/* end */


/* Article Section => ShareThis */
.samBlog.samBlog_PDP .sharethis-inline-share-buttons {
	/* margin-top: 60px; */
	display: flex !important;
	width: 100%;
	flex-wrap: wrap;
}
.samBlog.samBlog_PDP .sharethis-inline-share-buttons::before {
	content: 'Spread the word';
	padding-bottom: 10px;
	width: 100%;
}
.samBlog.samBlog_PDP .sharethis-inline-share-buttons .st-btn {
	display: inline-flex !important;
	align-items: center;
}
.samBlog.samBlog_PDP .sharethis-inline-share-buttons .st-btn img {
	position: unset !important;
	margin: 0;
}
/* end */


/* Jump To Section (Author Page Only) */
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo {
	padding-top: 8px; /* Because of H1 padding top */
}
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo ul {
    box-shadow: var(--samBlog_Box_Shadow);
    border: var(--samBlog_Border_Product_Card);
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo.collapsed ul {
    border-bottom: 0;
} 
.samBlog .samBlog_JumpTo ul li {
    padding: 9px;
    border-bottom: var(--samBlog_Border_Product_Card);
}
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo ul li:last-child {
    border-bottom: 0;
}
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo ul li.jumpto_title {
    background-color: #F7F7F7;
    font-weight: 500;

    appearance: none;
    background-image: url("/images/checkout_page/chevron-up.svg");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 18px;
}
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo.collapsed ul li.jumpto_title {
    background-image: url("/images/checkout_page/chevron-down.svg");
}
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo ul li.jumpto_title:hover {
    cursor: pointer;
}
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo ul li a {
    color: #000000;
    text-decoration: none;
    display: inline-block; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
    max-width: 100%; 
}
.samBlog.samBlog_PDP_Bio .samBlog_JumpTo ul li a:hover {
    text-decoration: underline;
}
@media (max-width: 991px) {
    .samBlog.samBlog_PDP_Bio .samBlog_JumpTo ul {
        margin-bottom: 20px;
    }
	
}
/* end */


/* Sticky Jump To Section (PDP Only) */
.samBlog_JumpTo_Sticky {
    position: fixed;
    top: 50%;
    left: 0;
    color: #000;
    padding: 10px;
    cursor: pointer;
    z-index: 9999;
    transform: rotate(-90deg) translateY(-10px);
    transform-origin: top left;
	transition: all 0.3s ease-in-out;
}
.samBlog_JumpTo_Sticky .jumpto_title {
    font-weight: 500;
    padding: 6px 20px;
    text-align: center;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: var(--samBlog_Border_Product_Card);
    background-color: #fff;
    position: relative;
	height: 40px;
    width: fit-content;
}
@media (max-height: 400px) {
	.samBlog_JumpTo_Sticky .jumpto_title {
		padding: 6px 10px;
	}
}
.samBlog_JumpTo_Sticky .jumpto_title::after {
    font-family: 'FontAwesome';
    content: '\f078';
    padding-left: 10px;
}
.samBlog_JumpTo_Sticky.expand .jumpto_title::after {
    content: '\f077';
}
.samBlog_JumpTo_Sticky .jumpto_list_container {
    display: none;
    height: 0;
    opacity: 0;
    overflow: hidden;
    background: white;
    transition: all 0.4s ease-in-out;
    position: absolute;
    left: 100%;
    top: 0;
    transform: rotate(90deg) translateY(0) translateX(10px);
    transform-origin: top left;
    border: var(--samBlog_Border_Product_Card);
}
.samBlog_JumpTo_Sticky.expand .jumpto_list_container {
    display: block;
    opacity: 1;
    height: fit-content;
    max-height: 50vh;
    transform: rotate(90deg) translateY(10px) translateX(50px);
	overflow: scroll;
}
.samBlog_JumpTo_Sticky.expand .jumpto_list_container::-webkit-scrollbar {
	display: none;
}
.samBlog_JumpTo_Sticky .jumpto_list {
    padding: 6px;
	border-bottom: var(--samBlog_Border_Product_Card);
}
.samBlog_JumpTo_Sticky .jumpto_list:last-child {
	border-bottom: 0;
}
.samBlog_JumpTo_Sticky .jumpto_list a {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    color: #000;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}
.samBlog_JumpTo_Sticky .jumpto_list a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
	.samBlog_JumpTo_Sticky {
	    position: fixed;
	    top: unset;
		bottom: 0;
		padding: 0;
		transform: unset;
		transform-origin: unset;
		width: 100%;
	}
	.samBlog_JumpTo_Sticky .jumpto_title {
		width: 100%;
		padding: 0;
		border: 0;
		border-top: var(--samBlog_Border_Product_Card);
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: var(--samBlog_Font_Weight_Bold);
	}
	.samBlog_JumpTo_Sticky .jumpto_title::after {
		content: '\f077';
	}
	.samBlog_JumpTo_Sticky.expand .jumpto_title::after {
		content: '\f078';
	}
	.samBlog_JumpTo_Sticky.expand .jumpto_list_container {
	    max-height: 50vh;
	    transform: unset;
		position: absolute;
	    left: 0;
	    top: unset;
		bottom: 50px;
		width: 100%;
	}
	.samBlog_JumpTo_Sticky .jumpto_list a {
		display: block;
		overflow: unset;
		text-overflow: unset;
		max-width: unset;
		text-align: center;
		padding: 6px;
	}
}
/* end */


/* =====BLOG PDP and BLOG PDP BIO=====*/










