* {
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

:root {
	--mint: #BFE8D5;
	--cream: #FFF3E6;
	--pink: #F7C7D9;
	--white: #FFFFFF;
	--graphite: #2B2B2B;
	--accent: #e74c3c;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--white);
	color: var(--graphite);
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}

.bg-cream {
	background-color: var(--cream);
}

.bg-pink {
	background-color: var(--pink);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

header.top-nav {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	z-index: 1000;
	width: 100%;
	padding: 10px 0;
}

.site-logo {
	height: 40px;
	margin-right: 10px;
}

.site-name {
	font-weight: 700;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.main-nav a {
	margin-left: 25px;
	font-weight: 500;
	font-size: 0.9rem;
	transition: color 0.3s;
	display: inline-flex;
	align-items: center;
}

.main-nav a i {
	margin-right: 5px;
	font-size: 1.1rem;
}

.main-nav a:hover {
	color: var(--accent);
}

.cart-icon-wrapper {
	position: relative;
	cursor: pointer;
	font-size: 1.5rem;
	width: 30px;
	height: 36px;
}

.badge-cart {
	position: absolute;
	top: 5px;
	right: -2px;
	background: var(--accent);
	color: white;
	font-size: 0.7rem;
	padding: 2px 6px;
	border-radius: 50%;
}

.hero-section {
	min-height: 90vh;
	background-color: var(--mint);
	padding: 120px 0 60px;

	.button {
		color: #fff;
	}
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 30px;
	
}

.hero-main-img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.button {
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	display: inline-block;
	text-align: center;
}

.primary-btn {
	background-color: var(--graphite);
	color: white;
}

.primary-btn:hover {
	background-color: #444;
	transform: translateY(-3px);
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}

.section-subtitle {
	font-size: 1rem;
	opacity: 0.7;
	margin-top: -20px;
	margin-bottom: 40px;
}

.about-section {
	padding: 80px 0;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.border-radius-10 {
	border-radius: 10px;
}

.custom-list {
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.custom-list li {
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

.custom-list li::before {
	content: '\eb7a';
	font-family: 'boxicons';
	position: absolute;
	left: 0;
	color: var(--accent);
}

.advantages-section {
	padding: 60px 0;
}

.adv-item {
	padding: 20px;
}

.adv-icon {
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 15px;
}

.products-section {
	padding: 80px 0;
}

.product-card {
	background: var(--white);
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	position: relative;
	transition: transform 0.3s;
	height: calc(100% - 30px);
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-10px);
}

.product-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.7rem;
	font-weight: 700;
	color: white;
	z-index: 5;
}

.product-badge.hit {
	background-color: #f1c40f;
}

.product-badge.promo {
	background-color: #e67e22;
}

.product-img-box {
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.product-img-box img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.product-info h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	font-weight: 700;
}

.product-desc {
	font-size: 0.85rem;
	line-height: 1.5;
	color: #666;
	margin-bottom: 15px;
	flex-grow: 1;
}

.product-price {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--graphite);
	margin-bottom: 15px;
}

.buy-btn {
	width: 100%;
	background-color: var(--mint);
	color: var(--graphite);
	border: 1px solid rgba(0,0,0,0.05);
	padding: 0 20px !important;
}

.buy-btn:hover {
	background-color: #a8dcc4;
}

.promo-banner-section {
	padding: 40px 0;
}

.promo-box {
	background: var(--graphite);
	color: white;
	padding: 40px;
	border-radius: 20px;
	border: 2px dashed var(--mint);
}

.promo-title {
	color: var(--mint);
	margin-bottom: 15px;
}

.accent-btn {
	background-color: var(--pink);
	color: var(--graphite);
}

.accent-btn:hover {
	background-color: #f2a7c4;
}

.slider-section {
	padding: 60px 0;
}

.bullet-custom {
	background: var(--mint) !important;
}

.warranty-section {
	padding: 80px 0;
}

.info-card-warranty {
	background: rgba(255,255,255,0.5);
	padding: 30px;
	border-radius: 15px;
}

.icon-large {
	font-size: 2rem;
	color: var(--graphite);
}

.reviews-section {
	padding: 80px 0;
}

.review-card {
	background: var(--cream);
	padding: 25px;
	border-radius: 15px;
	margin-bottom: 30px;
	height: calc(100% - 30px);
}

.avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.review-header .name {
	font-weight: 700;
	font-size: 0.9rem;
}

.rating {
	color: #f1c40f;
	font-size: 0.8rem;
}

.review-text {
	font-size: 0.9rem;
	font-style: italic;
	margin-top: 15px;
}

.faq-section {
	padding: 80px 0;
}

.accordion-container {
	max-width: 800px;
	margin: 0 auto;
}

.accordion-item {
	background: white;
	margin-bottom: 10px;
	border-radius: 8px;
	overflow: hidden;
}

.accordion-header {
	padding: 15px 20px;
	cursor: pointer;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s;
	font-size: 0.9rem;
}

.accordion-header:hover {
	background: #f9f9f9;
}

.accordion-body {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease-out;
	opacity: 0;
}

.accordion-item.active .accordion-body {
	padding: 15px 20px;
	max-height: 200px;
	opacity: 1;
}

.accordion-item.active .accordion-header i {
	transform: rotate(180deg);
}

.site-footer {
	background: var(--graphite);
	color: white;
	padding: 60px 0 20px;
}

.footer-heading {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 25px;
	color: var(--mint);
}

.footer-contacts, .footer-links {
	list-style: none;
	padding: 0;
}

.footer-contacts li, .footer-links li {
	margin-bottom: 12px;
	font-size: 0.9rem;
}

.footer-links a:hover {
	color: var(--mint);
	text-decoration: underline;
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.8rem;
	opacity: 0.6;
}

/* Cart & Modals */
.cart-modal-overlay, .checkout-modal-overlay, .success-modal-overlay, .mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
}

.cart-modal-container, .checkout-modal-container, .success-modal-container {
	background: white;
	width: 90%;
	max-width: 500px;
	border-radius: 15px;
	padding: 30px;
	max-height: 90vh;
	overflow-y: auto;
}

.cart-modal-header, .checkout-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.cart-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f5f5f5;
}

.cart-item img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-right: 15px;
}

.cart-item-info {
	flex-grow: 1;
}

.cart-item-info h4 {
	font-size: 0.9rem;
	margin: 0;
}

.cart-item-price {
	font-weight: 700;
	color: var(--accent);
}

.qty-control {
	display: flex;
	align-items: center;
	margin-top: 5px;
}

.qty-btn {
	background: #eee;
	border: none;
	width: 25px;
	height: 25px;
	cursor: pointer;
	border-radius: 4px;
}

.qty-val {
	margin: 0 10px;
	font-size: 0.9rem;
}

.remove-item {
	color: #999;
	cursor: pointer;
	font-size: 1.2rem;
	margin-left: 10px;
}

.remove-item:hover {
	color: var(--accent);
}

.floating-phone-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--mint);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	z-index: 999;
	color: var(--graphite);
}

.hamburger-menu {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
}

.mobile-nav-content {
	background: white;
	width: 100%;
	height: 100%;
	padding: 50px;
	text-align: center;
}

.mobile-nav-content a {
	font-size: 1.5rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.close-menu {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 2.5rem;
}

.icon-success {
	font-size: 5rem;
	color: #27ae60;
	margin-bottom: 20px;
}

input, textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
}

label {
	display: block;
	margin-bottom: 5px;
	font-size: 0.85rem;
	font-weight: 600;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 1.8rem;
	}
	.section-title {
		font-size: 1.5rem;
	}
	.site-name {
		font-size: 1rem;
	}
	.hero-section {
		padding-top: 100px;
		text-align: center;
	}
	.hero-main-img {
		margin-top: 40px;
	}
	.promo-box {
		padding: 20px;
		text-align: center;
	}
}/* Main wrapper padding */
.regShieldWrap {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Typography base styles */
.regShieldWrap h1, 
.regShieldWrap h2, 
.regShieldWrap h3, 
.regShieldWrap h4, 
.regShieldWrap h5 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #333; /* You can change the color to match your scheme */
}

/* Heading sizes */
.regShieldWrap h1 { font-size: 24px; }
.regShieldWrap h2 { font-size: 20px; }
.regShieldWrap h3 { font-size: 18px; }
.regShieldWrap h4 { font-size: 16px; }
.regShieldWrap h5 { font-size: 14px; }

/* Paragraph styles */
.regShieldWrap p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 15px;
    color: #444;
}

/* List styles */
.regShieldWrap ul {
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.regShieldWrap li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #444;
}

/* Remove margin from the last element in the container */
.regShieldWrap > *:last-child {
    margin-bottom: 0;
}


.img-container-about {
	padding-top: 40px;
}

.carousel .slide {
	background-position: center;
	background-size: contain;
}
.info-card-warranty {
	margin: auto 0;
}

a:not([class]) {
	color: #fff;
}

.mobile-nav-content {
	a:not([class]) {
		color: #000;
	}

	.button {
		display: flex;
		padding: 10px 20px;
	}
}
.header-basket-wrapper {
		width: 100%;
	}

@media screen and (max-width: 992px) {
	.main-nav {
		display: none;
	}
	.carousel-switch-next, 
	.carousel-switch-prev {
		display: none !important;
	}
}
@media screen and (min-width: 992px) {
.hamburger-menu {
	display: none;
}
}

.top-nav {
	.cell-md-8.cell-4.text-right {
		display: flex; 
		justify-content: space-between;
		gap: 20px;
	}
}

.button.large {
	font-size: 1rem;
}
	
.main-nav {
	a:not([class]) {
	color: #000;
}
}