:root {
	--text-dark: #000;
	--text-medium: #616161;
	--text-light: #b6b9b8;
	--text-white: #fff;
	--color-accent: #25b4c1;
	--font-primary: "Ubuntu", sans-serif;
	--letter-spacing-big: 5px;
	--letter-spacing-small: 2px;
}
body {
	font-family: "Ubuntu", sans-serif;
	background-image: url("../images/main-bg.jpg");
	background-position: top center;
	background-repeat: repeat;
}
.container {
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 20px;
}
figure {
	margin: 0;
}
.breadcrumbs {
	font-size: 15px;
	color: var(--text-light);
	margin: clamp(1.25rem, 0.828rem + 1.394vw, 2.5rem) 0;
	/*20-40*/
}
/*TYPOGRAPHY -----------*/

p {
	line-height: 1.8;
	color: var(--text-medium);
}
p+p {
	margin-top: 20px;
}
p.subtitle {
	font-weight: 700;
	font-style: italic;
	color: var(--text-dark);
}
h1 {
	font-size: clamp(2.188rem, 1.343rem + 2.787vw, 4.688rem);
	/*35-75*/
	font-weight: 500;
}
h2 {
	font-size: clamp(1.875rem, 1.136rem + 2.439vw, 4.063rem);
	/*30-65*/
	font-weight: 500;
}
h3 {
	font-size: clamp(1.875rem, 1.453rem + 1.394vw, 3.125rem);
	/*30-50*/
	font-weight: 500;
}
h4 {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
}
.small-title {
	font-size: clamp(0.875rem, 0.833rem + 0.139vw, 1rem);
	/*14-16*/
	letter-spacing: var(--letter-spacing-big);
	color: var(--text-light);
	display: block;
	font-weight: 400;
	line-height: 1.5;
}
.accent {
	color: var(--color-accent);
	font-style: italic;
}
/*LINKS & BUTTONS -----------*/

a {
	text-decoration: none;
	color: var(--text-medium);
	transition: all .3s ease;
}
p a:hover {
	opacity: 0.7;
}
button, a.button {
	border: none;
	padding: 19px 20px;
	font-family: var(--font-primary);
	font-size: 15px;
	display: inline-block;
	cursor: pointer;
}
.button--dark {
	background-color: #003855;
	color: var(--text-white);
	position: relative;
	overflow: hidden;
}
.button--black {
	background-color: #000;
	color: var(--text-white);
	position: relative;
	overflow: hidden;
}
.button--light {
	background-color: var(--color-accent);
	color: var(--text-white);
	position: relative;
}
.button--black::after, .button--dark:after, .button--light::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(255, 255, 255, 0);
	border-radius: inherit;
	transition: border-color .3s ease;
}
.button--black:hover::after, .button--dark:hover:after, .button--light:hover:after {
	border-color: rgba(255, 255, 255, 1);
}
@media screen and (max-width:600px) {
	button, a.button {
		padding: 19px 15px;
		font-size: 14px;
		letter-spacing: 1px;
	}
}
input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}
/* ------------------------------------------ */

/* HEADER LAYOUT                              */

/* ------------------------------------------ */

.header-logo img {
	width: 140px;
}
.site-header {
	width: 100%;
	padding-top: 20px;
	position: relative!important;
	z-index: 1005 !important;
}
.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-left {
	display: flex;
	align-items: center;
	gap: 80px;
}
.header-nav-link {
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: var(--letter-spacing-small);
	color: #000;
	position: relative;
	display: inline-block;
	padding-bottom: 6px;
	cursor: pointer;
}

.header-nav li.has-megamenu {
	position: relative;
}
.header-nav-links {
	display: flex;
	gap: 60px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.cart-wrapper {
	position: relative;
}
.header-cart {
	background: none;
	border: none;
	padding: 0;
	transition: all .3s ease;
	cursor: pointer;
}
.header-cart img {
	height: 34px;
}
.header-cart:hover {
	opacity: 0.7;
}
.cart-num {
	background-color: var(--color-accent);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: -10px;
	left: -10px;
}
.megamenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(12px);
	background: #fff;
	width: 820px;
	border-radius: 4px;
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
	display: flex;
	visibility: hidden;
	z-index: 99999;
	border-bottom: 5px solid var(--color-accent);
}
.header-nav li.has-megamenu:hover .megamenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.megamenu-title {
	margin: 0 0 12px;
	font-size: 17px;
	color: var(--color-accent);
}
.megamenu-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 50px;
}
.megamenu-brands {
	gap: 18px 50px;
	display: flex;
	flex-direction: column;
}
.megamenu-categories li {
	flex: 0 0 35%;
}
.megamenu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.megamenu-list a {
	text-decoration: none;
	color: #111;
	font-size: 15px;
	display: block;
	padding: 4px 0;
	transition: color .2s ease;
}
.megamenu-list a:hover {
	color: var(--color-accent);
}
.megamenu-left {
	padding: 16px 20px;
}
.megamenu-right {
	background: #f5f5f5;
	padding: 16px 20px;
	border-radius: 4px;
	min-width: 250px;
}
.has-megamenu:hover>.header-nav-link::after {
	transform: translateX(-50%) scaleX(1);
}
.header-nav-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	width: 100%;
	height: 4px;
	background-color: var(--color-accent);
	transition: transform .3s ease;
}
.header-nav-link:hover::after, .header-nav-link:focus::after {
	transform: translateX(-50%) scaleX(1);
}
.header-nav-link.active::after {
	transform: translateX(-50%) scaleX(1);
}
/* ------------------------------------------ */

/* HAMBURGER BUTTON (MOBILE)                  */

/* ------------------------------------------ */

.hamburger {
	display: none;
	width: 30px;
	height: 22px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	position: relative!important;
	z-index: 1020 !important;
}
.hamburger.active span {
	background: #fff !important;
}
.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #000;
	border-radius: 2px;
	transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}
/* ------------------------------------------ */

/* MOBILE MENU OVERLAY                        */

/* ------------------------------------------ */

.header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.mobile-menu {
	position: fixed;
	inset: 0;
	background: rgba(0, 58, 89, 0.99);
	color: #fff;
	display: none;
	padding: 60px 20px;
	z-index: 1010 !important;
	height: 100svh;
	overflow-y:auto;
}
.mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.mobile-menu-list li {
	border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
	padding-bottom: 20px;
}
.mobile-menu-list li:last-child {
	border-bottom: none;
	padding-bottom: 0px;
}
.mobile-submenu li {
	border-bottom: none;
	padding-bottom: 0;
}
.mobile-menu-list>li>a {
	color: #fff;
	font-size: 1.4rem;
	text-decoration: none;
}
.mobile-submenu {
	list-style: none;
	padding: 20px 0 0 0px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mobile-submenu a {
	color: #ddd;
	font-size: 1.1rem;
	text-decoration: none;
}
.mobile-submenu a:hover {
	color: var(--color-accent, #25b4c1);
}
@media (max-width: 980px) {
	.hamburger {
		display: flex;
	}
	.header-nav {
		display: none;
	}
	.header-logo img {
		width: 80px;
	}
	
}
@media (max-width: 500px) {
	.header-logo img {
		width: 60px;
	}
	.header-cart img {
		height: 30px;
	}
}
/* ------------------------------------------ */

/* HERO + ABOUT + HEX GRID LAYOUT             */

/* ------------------------------------------ */

.hero-wrapper {
	max-width: 1920px;
	position: relative;
	margin: 0 auto;
}
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
}
.hero-hexes {
	height: auto;
	position: absolute;
	width: 770px;
	right: 0;
	top: 60px;
}
.hero-hexes img {
	width: 100%;
	height: auto;
	display: block;
}
.hero-content {
	padding-right: 700px!important;
}
.hero-content h1 {
	margin-bottom: clamp(1.25rem, 0.828rem + 1.394vw, 2.5rem);
	/*20-40*/
}
.hero-content p {
	font-size: clamp(0.938rem, 0.832rem + 0.348vw, 1.25rem);
	/*16-20*/
	margin-bottom: clamp(1.25rem, 0.828rem + 1.394vw, 2.5rem);
	/*20-40*/
}
@media screen and (max-width:1370px) {
	.hero-hexes {
		width: 50%;
	}
	.hero-content {
		padding-right: 52%!important;
	}
}
@media screen and (max-width:1200px) {
	.hero {
		min-height: 100%;
	}
	.hero-hexes {
		top: 0;
	}
	.hero-content {
		padding-top: 5%!important;
	}
}
@media screen and (max-width:768px) {
	.hero-content p {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	.hero-hexes {
		width: 45%;
	}
	.hero-content {
		padding-right: 47%;
	}
}
/*ABOUT  -----------*/

.about {
	margin-top: -100px;
}
.about-content {
	padding-left: 50px;
}
.about-content p {
	margin-top: clamp(1.25rem, 0.828rem + 1.394vw, 2.5rem);
	/*20-40*/
}
.about-text {
	max-width: 640px;
	padding-left: 100px;
}
.about-highlight {
	background-color: #000;
	color: #fff;
	font-weight: 400;
	letter-spacing: 9px;
	font-size: clamp(1rem, 0.894rem + 0.348vw, 1.313rem);
	/*16-21*/
	margin-left: 100px;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 45px;
	text-align: center;
}
@media screen and (max-width:1200px) {
	.about {
		margin-top: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
		/*60-120*/
	}
}
@media screen and (max-width:1024px) {
	.about-content, .about-text {
		padding-left: 0;
	}
	.about-highlight {
		margin-left: 0;
	}
}
@media screen and (max-width:768px) {
	.about-text {
		padding-right: 25%;
	}
}
@media screen and (max-width:600px) {
	.about-text {
		padding-right: 0;
	}
	.about-highlight {
		display: none;
	}
}
/*OFFER  -----------*/

.offer {
	text-align: center;
	margin-top: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.offer-slider {
	overflow-x: auto;
	overflow-y: hidden;
	margin-top: clamp(1.875rem, 1.241rem + 2.091vw, 3.75rem)/*30-60*/
}



@media (min-width: 1360px) {
	.offer-slider {
		width: calc(100vw - (100vw - 1360px) / 2);
		margin-left: auto;
	}
}
.offer-track {
	display: flex;
	gap: 20px;
}
.offer-item {
	flex: 0 0 auto;
	width: 320px;
}
.offer-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%; 
}

.offer-image {
	display: block;
	width: 100%;
	height: auto;
	padding-top: 115%;
	background-size: 100%;
	background-position: center;
	transition: background-size 0.4s ease;
	z-index: 1;
}
.offer-item:hover .offer-image {
	background-size: 110%;
}
.offer-caption {
	text-align: center;
	background-color: var(--color-accent);
	color: var(--text-white);
	letter-spacing: var(--letter-spacing-big);
	padding: 12px;
	transition: background-color 0.5s ease, color 0.5s ease;
	z-index: 2;
	text-transform:uppercase;
	line-height:1.3;flex: 1;
	align-items: center;
	justify-content: center;
	display: flex;
}

.offer-item:hover .offer-caption {
	background-color: #003A59;
}


.product-search {
  width: 100%;
  padding: 10px 0;
	margin-bottom:25px;
	position: relative;
}

/* Link (mobile only) */
.search-link {
  display: none;
  cursor: pointer;
  background-color:var(--color-accent);
  color:#fff;
  padding:10px;	
		
}

/* Grid Layout */
.product-search__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}


/* Tablet */
@media (min-width: 640px) {
  .product-search__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .product-search__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Mobile behavior */
@media (max-width: 639px) {

  .search-link {
    display: inline-block;
  }

  .product-search__form {
    display: none;
	  position: absolute;
    z-index: 2000;
    width: 100%;
    background-color: white;
    padding: 20px 10px;
  }

  /* When link is clicked */
  #search-panel:target {
    display: block;
  }

  .product-search__grid {
    grid-template-columns: 1fr;
  }
}

/* Field styling */
.field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}


/*QUALITY  -----------*/

.quality {
	margin-top: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.quality .container {
	padding: 0 20px 0px 0;
}
.quality-inner {
	display: flex;
	align-items: center;
}
.quality-media {
	flex: 0 0 50%;
	position: relative;
}
.quality-media video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.quality-deco {
	position: absolute;
	right: -107px;
	bottom: -70px;
}
.quality-content {
	flex: 0 0 50%;
	padding-left: 5%;
}
.quality-content h1 {
	margin-bottom: clamp(1.25rem, 0.405rem + 2.787vw, 3.75rem)/*20-60*/
}
.quality-content .accent {
	font-style: italic;
}
@media (min-width: 1360px) {
	.quality-media {
		margin-left: calc((min(100vw, 1920px) - 1360px) / -2);
		width: calc(50% + (min(100vw, 1920px) - 1360px) / 2);
	}
}
@media (max-width: 1024px) {
	.quality-deco img {
		width: 30%;
	}
	.quality-deco {
		right: -181px;
		bottom: -30px;
	}
}
@media (max-width: 768px) {
	.quality-inner {
		flex-direction: column;
	}
	.quality .container {
		padding: 0;
	}
	.quality-content {
		padding: 20px 20px 0 20px;
	}
	.quality-media, .quality-content {
		flex: 0 0 auto;
		width: 100%;
		margin-left: 0;
	}
	.quality-deco {
		display: none;
	}
}
/*BRANDS -----------*/

.brands {
	text-align: center;
	margin-top: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.brands-scroller {
	display: flex;
	overflow-x: auto;
	align-items: center;
	justify-content: center;
	gap: 100px;
	margin-top: clamp(1.875rem, 1.241rem + 2.091vw, 3.75rem)/*30-60*/
}
.brand-item {
	flex: 0 0 auto;
}
.brand-item img {
	max-width: 160px;
	;
}
@media screen and (max-width:768px) {
	.brands-scroller {
		gap: 50px;
	}
	.brand-item img {
		max-width: 100px;
	}
}
/*LATEST BLOG-----------*/

.latest-blog {
	/*background-color: #F8F8F8;*/
	padding: clamp(3.125rem, 2.491rem + 2.091vw, 5rem) 0 clamp(3.125rem, 2.491rem + 2.091vw, 5rem) 0;
	/*50-80*/
	margin-top: clamp(3.125rem, 1.646rem + 4.878vw, 7.5rem);
	/*50-120*/
}
.latest-blog-wrapper {
	display: flex;
	gap: clamp(1.25rem, 0.828rem + 1.394vw, 2.5rem);
	/*20-40*/
	align-items: center;
}
.latest-blog-img {
	padding-top: 66%;
	width: 50%;
	background-size: cover;
	background-position: center;
}
.latest-blog-content {
	flex: 1;
}
.latest-blog h2 {
	margin-bottom: clamp(1.25rem, 0.405rem + 2.787vw, 3.75rem);
	/*20-60*/
}
.latest-blog p {
	margin-bottom: clamp(1.25rem, 0.405rem + 2.787vw, 3.75rem);
	/*20-60*/
}
.latest-blog .accent {
	font-style: italic;
}
@media screen and (max-width: 768px) {
	.latest-blog-wrapper {
		flex-direction: column;
	}
	.latest-blog-img {
		width: 100%;
	}
}
/*FOOTER-----------*/

html, body {
	margin: 0;
	padding: 0;
}
footer {
	background-image: url("../images/footer-bg.jpg");
	background-position: center;
	color: #7692a3;
	font-size: 15px;
	padding: clamp(2.5rem, 1.655rem + 2.787vw, 5rem) 0 20px 0;
	/*40-80*/
	background-repeat: repeat;
}
.footer-top {
	display: flex;
	gap: 40px;
	justify-content: space-between;
	padding-bottom: 20px;
}
.footer-left-col {
	width: 30%;
}
.footer-logo {
	width: 80px;
	margin-bottom: 15px;
}
footer p, footer a {
	color: #7692a3;
	transition: all 0.3s ease;
}
footer a:hover {
	color: #fff;
}
.footer-title {
	color: #fff;
	letter-spacing: var(--letter-spacing-big);
	font-weight: 500;
	margin-right: 15px;
	font-size: 15px;
	display: block;
	margin-bottom: 35px;
}
.footer-social-media {
	margin-top: 30px;
	align-items: center;
	display: flex;
}
.footer-social-media a:hover {
	opacity: 0.5;
}
.footer-social-media .footer-title {
	display: inline-block;
	margin-bottom: 0;
}
.footer-social-media img {
	margin-left: 10px;
}

.footer-menu a {
	display: block;
	margin-bottom: 20px;
}
.footer-right-col {
	display: flex;
	flex: 1;
	gap: 100px;
	justify-content: center;
	
}
.footer-contact-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	line-height: 1.6;
}
.footer-contact-row:nth-child(3) {
	align-items: flex-start;
}
.footer-bottom {
	text-align: center;
	line-height: 1.8;
	border-top: 1px solid #215775;
	padding-top: 20px;
}
@media screen and (max-width: 1200px) {
	.footer-left-col {
		width: 40%;
	}
}
@media screen and (max-width: 768px) {
	.footer-top {
		flex-direction: column;
	}
	.footer-left-col {
		width: 100%;
	}
	.footer-right-col {
		justify-content: flex-start;
	}
	.footer-bottom {
		display: flex;
		flex-direction: column-reverse;
	}

	.footer-bottom-left-col {
		margin-top: 10px;
	}
}
@media screen and (max-width: 500px) {
	.footer-right-col {
		flex-direction: column;
		gap: 20px;
	}
	.footer-contact-row {
		margin-bottom: 15px;
	}
	.footer-title {
		margin-bottom: 20px;
	}
	
	.footer-bottom {
		text-align:left
	}
	
	.footer-bottom span {
		display: none;
	}
	
	.footer-bottom-right-col a {
		display: block;
	}
	
	.footer-bottom {
		line-height: 1.9;
	}
}
/*CONTACT PAGE -----------*/

.contact-page {
	width: 100%;
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
/* LEFT SIDE */

.contact-info .breadcrumb {
	margin-bottom: 20px;
}
.contact-info h1 {
	margin-bottom: clamp(1.25rem, 0.828rem + 1.394vw, 2.5rem);
	/*20-40*/
}


.info-grid {
	display: grid;
	gap: 40px;
	margin-top: 40px;
}
.info-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.info-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.info-block .social-media a {
	margin-right: 10px;
}
.info-title {
	display: block;
}
.info-text {
	display: block;
	line-height: 1.6;
}
/* Responsive */

@media (max-width: 700px) {
	.info-row {
		grid-template-columns: 1fr;
	}
}
/* RIGHT SIDE */

input, textarea, select {
	background-color: #F9F7F6;
	border: none;
	font-family: var(--font-primary);
	font-size: 16px;
	width: 100%;
	padding: 15px;
	color: var(--text-medium);
}
.contact-form {
	background-color: #fff;
	padding: 40px;
}
.contact-form-title {
	letter-spacing: var(--letter-spacing-big);
	color: #000;
	font-weight: 500;
	margin-bottom: 20px;
}
.contact-form form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-form-button-wrapper {
	display: flex;
	justify-content: flex-end;
}
.contact-form textarea {
	min-height: 200px;
	resize: vertical;
}
.contact-form button {
	cursor: pointer;
}
.google-map {
	margin-bottom: -5px;
	margin-top: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
/* RESPONSIVE */

@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.contact-form {
		padding: 20px;
	}
}
/*TEXT PAGE-----------*/

.text-page {
	margin-bottom: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
/*PRODUCT LIST----------*/

.product-list {
	margin-bottom: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.product-list-title {
	text-align: center;
	margin-bottom: clamp(1.875rem, 1.453rem + 1.394vw, 3.125rem);
	/*30-50*/
}
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	grid-row-gap: 50px;
}
.product-item {
	width: 100%;
}
.product-link {
	display: block;
	text-decoration: none;
}

.product-image {position:relative; width:100%;padding-top:115%; overflow:hidden;}
.product-image:before {
	content:"";
	position:absolute;
	inset:0;
	background-image:inherit;
	background-size:cover;
	background-position:center;
	transition:transform 0.4s ease;
	
	
}
.product-link:hover .product-image:before {
	transform:scale(1.1);
}

.product-add-to-cart {
	position: absolute;
	bottom: 15px;
	right: 15px;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	transition: all .3s ease;
}
.product-add-to-cart:hover {
	opacity: 0.7;
}
.product-meta {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.product-price {
	color: var(--color-accent);
	font-size: clamp(1rem, 0.958rem + 0.139vw, 1.125rem);
	/*16-18*/
	letter-spacing: var(--letter-spacing-small);
	font-weight: 500;
}
.product-bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 5px;
	gap:15px;
}
.product-title {
	margin: 0;
	color: #000;
	font-weight: 600;
	font-size: 21px;
	letter-spacing: 1px;
	
}
.product-capacity {
	margin: 0;
	color: var(--text-light);
	min-width:50px;
}
@media (max-width: 1000px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.products-grid {
		grid-template-columns: 1fr;
	}
}
/* ============================= */

/* PRODUCT DETAILS                */

/* ============================= */

.product-wrapper {
	display: flex;
	gap: 40px;
	align-items: center;
}
.product-gallery {
	flex: 50%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.product-main-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
}
.product-thumbnails {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	padding-bottom: 5px;
}
.thumb-item {
	flex: 0 0 80px;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	cursor: pointer;
}
.product-info {
	flex: 50%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.product-info-collection {
	color: var(--text-light);
	border-bottom: 1px solid #D2D9DC;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.product-use p {
	color: #000;
}
.product-attributes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	border: 1px solid #D2D9DC;
}
.attr-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 15px;
	border-right: 1px solid #D2D9DC;
	text-align: center;
}
.attr-item:last-child {
	border-right: none;
}
.attr-item-title {
	text-transform: uppercase;
	color: var(--text-light);
}
.attr-item-data {
	font-size: 18px;
}
.product-buy {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	margin-top: 20px;
}
.product-buy-price {
	color: var(--color-accent);
	font-weight: 600;
	font-size: 20px;
}
.product-buy-controls {
	display: flex;
}
.product-quantity {
	display: inline-flex;
	border: 1px solid #D2D9DC;
	margin-right: 10px;
}
.product-quantity button {
	background-color: #fff;
	padding: 18px;
	cursor: pointer;
}
.product-quantity input {
	width: 55px;
	text-align: center;
	background-color: #fff;
	font-size: 16px;
}
.product-price-note {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 400;
	margin-top: 10px;
}
.related-products {
	margin-bottom: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
	margin-top: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.related-header {
	text-align: center;
	margin-bottom: clamp(1.25rem, 0.828rem + 1.394vw, 2.5rem);
	/*20-40*/
}
.related-subtitle {
	margin-bottom: 10px;
}
.related-slider {
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
}
.related-track {
	display: flex;
	gap: 20px;
	overflow-x: hidden;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
	flex: 1;
	margin:0 10px;
	
}
.related-track .product-item {
	flex: 0 0 393px;
	scroll-snap-align: start;
}

.arrow {
	width:20px;
	transition:all .3s ease;
}

.arrow:hover {
	cursor:pointer;
	opacity: 0.5;
}

@media (max-width: 1200px) {
	.product-buy {
		flex-direction: column;
		align-items: flex-start
	}
}
@media (max-width: 900px) {
	.product-gallery {
		width: 100%;
	}
	.related-track {
		justify-content: flex-start;
		overflow-x: auto;
	}
	
	.arrow {
		display: none;
	}
}
@media (max-width: 600px) {
	.product-wrapper {
		gap: 20px;
	}
	.product-attributes {
		grid-template-columns: repeat(2, 1fr);
	}
	.product-info {
		gap: 15px;
	}
	.related-track .product-item {
		flex: 0 0 300px;
		scroll-snap-align: start;
	}
}
@media (max-width: 900px) {
	.product-wrapper {
		flex-direction: column;
	}
	.product-info {
		width: 100%;
		flex: none;
	}
}
/* ============================= */

/* BLOG LIST            */

/* ============================= */

.blog-list {
	margin-bottom: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.blog-list-title {
	text-align: center;
	margin-bottom: clamp(1.875rem, 1.241rem + 2.091vw, 3.75rem)/*30-60*/
}
.blog-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	grid-row-gap: 40px;
}
.blog-card {
	display: block;
	text-decoration: none;
	position: relative;
}
.blog-image {
	width: 100%;
	padding-top: 80%;
	background-size: cover;
	background-position: center;
	transition: background-size 0.4s ease;
	background-size: 100%;
}
.blog-card:hover .blog-image {
	background-size: 110%;
}
.blog-content {
	background: rgba(255, 255, 255, 0.9);
	padding: 20px;
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
}
.blog-date {
	margin-bottom: 5px;
	color: var(--color-accent);
	letter-spacing: var(--letter-spacing-small);
}
.blog-title {
	font-size: clamp(1.063rem, 0.999rem + 0.209vw, 1.25rem);
	/*17-20*/
	color: #000;
	font-weight: 500;
}
.blog-excerpt {
	margin: 0;
}
@media (max-width: 800px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}
.post-single {
	margin-bottom: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.post-layout {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}
.post-body {
	flex: 1;
}
.post-hero {
	width: 100%;
	aspect-ratio: 2 / 1;
	background-size: cover;
	background-position: center;
	margin-bottom: 20px;
}
.post-header {
	margin-bottom: 40px;
}
.post-date, .post-side-date {
	margin-bottom: 5px;
	color: var(--color-accent);
	letter-spacing: var(--letter-spacing-small);
}
.post-heading {
	margin: 0;
	line-height: 1.3;
}
.post-content {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.post-sidebar {
	width: 30%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.post-sidebar-heading {
	margin: 0;
}
.post-sidebar-item {
	display: block;
	border-bottom: 1px solid #D1DCDD;
	padding-bottom: 20px;
}
.post-sidebar-item:last-child {
	border-bottom: none;
}
.post-sidebar-item:hover .post-side-title {
	color: var(--color-accent);
}
.post-side-date {
	margin-bottom: 5px;
	font-size: 14px;
}
.post-side-title {
	margin-bottom: 5px;
	color: #000;
	transition: all .3s ease;
}
.post-side-excerpt {
	font-size: 0.9rem;
}
@media (max-width: 900px) {
	.post-layout {
		flex-direction: column;
	}
	.post-sidebar {
		width: 100%;
		flex: none;
	}
}
.about-us-row {
	display: flex;
	gap: clamp(1.875rem, 1.664rem + 0.697vw, 2.5rem);
	/*30-60*/
	align-items: flex-end;
}
.about-us {
	margin-bottom: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.about-us-text {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.about-us-title {
	margin: 0 0 20px;
	line-height: 1.2;
}
.about-us-accent {
	font-style: italic;
	/* you will style this */
}
/* IMAGE COLUMN */

.about-us-image {
	width: 50%;
}
.about-us-img {
	width: 100%;
	padding-top: 120%;
	background-size: cover;
	background-position: center;
}
.about-us-second {
	margin-top: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.about-us-second .about-us-row {
	align-items: center;
}
/* RESPONSIVE */

@media (max-width: 900px) {
	.about-us-row, .about-us-reverse {
		flex-direction: column;
	}
	.about-us-image {
		flex: none;
		width: 100%;
	}
}
.recaptha {
	margin: 10px 0;
}
.consent {
	font-size: 13px;
	opacity: 0.8;
	display: flex;
	gap: 7px;
	align-items: center;
	line-height: 1.4;
	color: var(--text-medium);
}
[type="checkbox"], [type="radio"] {
	box-sizing: border-box;
	padding: 0;
	width: auto;
	height: auto;
	margin: 0;
}
/* CART PAGE */

.cart-header {
	margin: 0 auto 40px;
	text-align: center;
}
.cart-header h1 {
	margin-bottom: 15px;
}
/* TABLE */

.cart-table {
	margin-bottom: clamp(1.25rem, 0.828rem + 1.394vw, 2.5rem);
	/*20-40*/
	border: 1px solid #D2D9DC;
}
.cart-table-head, .cart-row {
	display: grid;
	grid-template-columns: 4fr 1.2fr 1.4fr 1.2fr 40px;
	align-items: center;
	column-gap: 20px;
}
.cart-table-head {
	padding: 20px;
	border-bottom: 1px solid #D2D9DC;
	font-weight: 500;
}
.cart-row {
	padding: 20px;
}
/* PRODUCT CELL */

.cart-product {
	display: flex;
	align-items: center;
	column-gap: 20px;
}
.cart-product-image {
	width: 80px;
	flex: 0 0 auto;
}
.cart-product-image img {
	width: 100%;
	display: block;
}
/* QTY */

.cart-qty {
	display: flex;
	align-items: center;
	column-gap: 8px;
}
.cart-qty input {
	width: 50px;
	text-align: center;
}
/* SUMMARY */

.cart-summary-price {
	width: 100%;
	justify-content: flex-end;
	display: flex;
	column-gap: 30px;
	align-items: center;
}
.cart-summary-price .summary {
	margin: 0;
	font-size: 18px;
	color: #000;
}
.cart-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-top: 20px;
}


/* OFFER FORM */

.offer-tabs {
    width: 100%;
    margin: 30px 0 0px 0;
}

.offer-tabs-inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.offer-tab {
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s ease;
    white-space: nowrap;
}

/* Hover */
.offer-tab:hover {
    border-color: #999;
}

/* Active */
.offer-tab.is-active {
    border-color: var(--color-accent);
}


/* -------- MOBILE SCROLL -------- */

@media (max-width: 768px) {

    .offer-tabs-inner {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .offer-tabs-inner::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .offer-tab {
        flex: 0 0 auto;
    }
}

.offer-form {
	margin-top: clamp(2.5rem, 1.655rem + 2.787vw, 5rem);
	/*40-80*/
	margin-bottom: clamp(3.75rem, 2.483rem + 4.181vw, 7.5rem);
	/*60-120*/
}
.offer-form-title {
	text-align: center;
	margin-bottom: 30px;
}
.offer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 30px;
}
.offer-field-full {
	grid-column: 1 / -1;
}
.offer-bottom {
	
	margin-top: 20px;
	
}

.offer-actions {
	margin-top:20px;
	display:flex;
	flex-direction:column;
}

.offer-actions button {
	align-self:flex-end;
}

.offer-form textarea {
	height: 200px;
}
.button-close-cart {
	background-color: var(--color-accent);
	color: #fff;
	border-radius: 50%;
	font-size: 22px;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.button-close-cart:hover {
	opacity: 0.8;
}

.offer-recaptcha {
	margin-bottom:20px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
	.cart-table-head {
		display: none;
	}
	.cart-row {
		grid-template-columns: 1fr;
		row-gap: 16px;
	}
	.cart-col-price {
		display: none;
	}
	.cart-summary-price {
		flex-direction: column;
		align-items: flex-end;
	}
	.cart-summary-price .summary {
		font-size: 20px;
	}
	.offer-grid {
		grid-template-columns: 1fr;
	}
	.offer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
.cookie-box {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 340px;
	z-index: 9999;
	display: none;
}
.cookie-box-content {
	background: #003A59;
	border: 1px solid #ddd;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 16px 18px;
	position: relative;
	animation: slideIn 0.4s ease forwards;
}
.cookie-box-close {
	position: absolute;
	top: 8px;
	right: 10px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	color: #fff;
	transition: color 0.2s ease;
}
.cookie-box-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	margin-bottom: 10px;
	color: #fff;
}
.cookie-box-title svg {
	width: 20px;
	fill: #fff;
}
.cookie-box-text {
	font-size: 14px !important;
	line-height: 1.5;
	opacity: 0.8;
	color: #fff;
}
.cookie-box-text a {
	color: #fff;
	opacity: 0.8;
	transition: all .3s ease;
}
.cookie-box-text a:hover {
	opacity: 0.5;
}
.button--cookie {
	padding: 10px;
	font-size: 13px;
	margin-top: 10px;
	border-radius: 10px;
}

@media (max-width: 485px) {
	
	.cart-actions {
		gap:10px;
	}
	
	.cart-actions a,
	.cart-actions button {width:100%; text-align:center;}
	
	.offer-actions button {
		width:100%
	}
}

/* Chrome, Safari, Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  text-align: center;
}


/*GLOBAL ANIMATIONS-----------*/

[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
	opacity: 1;
	transform: translateY(0);
}