@charset "UTF-8";

/* ===================================================
   COLORS
   =================================================== */
:root {
   --bg-body: #e8f5fc;
/*   --primary: #238BC6;*/
   --primary: #0000EE;
   --secondary: #E31E24;
   --accent: #fcd34d;
   --dark: #111;
   --white: #fff;
   --red: #d63b3b;
   --green: #349e00;

   --bg-header: #fff;
   --bg-breadcrumb: #fff;
   --bg-footer: #fff;

   --bg-side-nav-hover: #f3f3f3;

   --nav-toggle-border: #ccc;
   --search-form-border: #999;

   --bg-benefit-box: #f3f3f3;
   --bg-filters-box: #f3f3f3;

   --border-primary: #ebe6df;

   --bg-button: var(--primary);
   --bg-button-hover: var(--dark);
   --text-button: var(--white);
   --text-button-hover: var(--white);

   --transition: all .2s ease-in-out;
   --transition2: all .4s ease-in-out;

   --bg-related: transparent;

   --bg-product-top: var(--secondary);
}


/* ===================================================
   GLOBAL SETTINGS & RESET
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Jost', sans-serif; background-color: var(--bg-body); background-image: url('../img/bg.jpg'); background-repeat: repeat; color: var(--dark); line-height: normal; }


/* ===================================================
   COMPONENTS – TYPOGRAPHY
   =================================================== */
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-family: 'Jost', sans-serif; }

ul { margin: 0; padding: 0; }
ul li { margin: 0; padding: 0; list-style: none; }

p { margin: 0; padding: 0; font-size: 1rem; font-family: 'Jost', sans-serif; }
button, input { font-family: 'Jost', sans-serif; }

img { margin: 0; padding: 0; }

a { text-decoration: none; margin: 0; padding: 0; }
a:hover { text-decoration: none; }


/* ===================================================
   COMPONENTS – TOOLTIPS
   =================================================== */
.tooltip-bubble { position: absolute; z-index: 9999; background: rgba(0, 0, 0, 0.85); color: var(--white); padding: 6px 10px; font-size: 13px; border-radius: 4px; white-space: nowrap; pointer-events: none; opacity: 0; transform: translateY(-5px); transition: all 0.15s ease; }


/* ===================================================
   COMPONENTS – LAYOUT HELPERS
   =================================================== */
.section { padding: 4rem 0; }
.text-center { text-align: center; }
.container { margin: 0 auto; }

@media (min-width: 576px) {
   .container { width: 100%; }
}
@media (min-width: 768px) {
   .container { width: 720px; }
}
@media (min-width: 992px) {
   .container { width: 960px; }
}
@media (min-width: 1200px) {
   .container { width: 1140px; }
}
@media (min-width: 1400px) {
   .container { width: 1320px; }
}
@media (min-width: 1500px) {
   .container { width: 1440px; }
}

   
/* ===================================================
   COMPONENTS – TITLES
   =================================================== */
.section-title { display: block; margin: 0; padding: 60px 15px 15px 15px; font-size: 26px; line-height: normal; text-transform: uppercase; }
.page-title { display: block; margin: 0; padding: 30px 0; font-size: 32px; line-height: normal; color: var(--dark); text-transform: none; }


/* ===================================================
   COMPONENTS – BUTTONS
   =================================================== */
.btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 500; text-align: center; cursor: pointer; transition: background 0.3s; }
.btn.btn-primary { background-color: var(--bg-button); color: var(--text-button); }

.button-style-2 { padding: .6rem 4rem; border-radius: 30px; background: var(--bg-button); color: var(--text-button); text-transform: uppercase; font-weight: 300; font-size: 20px; letter-spacing: 0.1rem; transition: var(--transition); }
.button-style-2:hover { background: var(--bg-button-hover); color: var(--text-button-hover); }


/* ===================================================
   HEADER
   =================================================== */
.header { position: sticky; top: 0; z-index: 9; background: var(--bg-header); background-image: url('../img/bg.jpg'); background-repeat: repeat; }
.header > .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 10px 0; }

.header .header-left { display: flex; align-items: center; gap: 3rem; }
.header .header-left .header-logo { display: flex; justify-content: flex-start; width: auto; }
.header .header-left .header-logo img { width: 230px; }

.header .header-left #nav-toggle { display: none; justify-content: flex-start; margin: 0; padding: 7px; border: 1px solid var(--nav-toggle-border); cursor: pointer; z-index: 10000; position: relative; border-radius: 6px; }
.header .header-left #nav-toggle i { font-size: 2.3rem; color: var(--dark); }

.search-nav { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; row-gap: 1rem; margin: 0 auto; padding: 0; }
.search-nav ul { display: flex; justify-content: center; align-items: center; column-gap: 2rem; margin: 0; }
.search-nav ul li { display: flex; margin: 0; padding: 0; }
.search-nav ul li a { font-size: 15px; font-weight: 500; color: var(--dark); text-decoration: none; }
.search-nav ul li a:hover, .search-nav ul li.active a { text-decoration: underline; color: var(--primary); }

.search-nav .search-form { display: flex; max-width: 100%; width: 500px; border: 1px solid var(--search-form-border); border-radius: 50px; overflow: hidden; }
.search-nav .search-form .search-input { flex: 1; padding: .8rem 1rem; font-size: .9rem; font-weight: 400; border: none; outline: none; background: var(--white); }
.search-nav .search-form .search-btn { background: var(--white); color: var(--secondary); border: none; padding: 0 1rem; cursor: pointer; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; font-weight: 800; }
.search-nav .search-form .search-btn:hover { color: var(--primary); }

.search-autocomplete { position: absolute; top: 110%; left: 0; right: 0; z-index: 999; overflow-y: auto; width: 100%; max-height: 70vh; background: var(--white); border: 1px solid var(--border-primary); box-shadow: 0 8px 16px rgba(0,0,0,0.1); display: none; border-radius: 10px; padding: 1rem; text-align: left; }
.result-item { background: var(--white); color: var(--dark); padding: 0.4rem 0; cursor: pointer; font-size: .9rem; font-weight: 400; border-bottom: 1px solid var(--border-primary); line-height: normal; }
.result-item:last-child { border-bottom: 0; }
.result-item:hover { text-decoration: underline; }
.result-item.no-result { color: #999; cursor: default; border-bottom: 0; }
.result-item.no-result:hover { text-decoration: none; }
.result-item[data-type="category"] { color: var(--primary); }
.result-item[data-type="brand"] { color: var(--secondary); }
.result-item[data-type="product"] { color: var(--dark); }

.header .header-contacts { display: grid; grid-template-columns: repeat(2, auto); column-gap: 2rem; justify-content: end; }
.header .header-contacts ul { display: grid; width: 100%; row-gap: .5rem; }
.header .header-contacts li a { display: flex; justify-content: start; align-items: center; column-gap: .5rem; margin: 0; color: var(--dark); font-weight: 500; font-size: 16px; }
.header .header-contacts li i { width: 34px; height: 34px; line-height: 34px; border-radius: 34px; text-align: center; font-size: 22px; background: #f5f5f5; color: var(--secondary); }
.header .header-contacts li a:hover span { text-decoration: underline; }

@media (max-width: 991px) {
   .header .container { flex-direction: column;  padding: 10px 20px; }
   .header .header-left { display: grid; grid-template-columns: auto 1fr; width: 100%; }
   .header .header-left .header-logo { display: grid; justify-self: end; width: 180px; }
   .header .header-left .header-logo img { width: 180px; }

   .header .header-left #nav-toggle { display: grid; justify-self: start; }

   .search-nav { width: 100%; }
   .search-nav .search-form { max-width: 100%; width: 100%; }
   .search-nav ul { display: none; }

   .header .header-contacts { display: none; }
}

@media (max-width: 1399px) {
   .header .header-contacts li a { font-size: 14px; }
   .search-nav .search-form { width: 400px; }
   .search-nav ul { column-gap: .7rem; }
}


/* ===================================================
   MAIN NAVIGATION
   =================================================== */
#main-nav { background-color: var(--primary); font-family: sans-serif; white-space: nowrap; overflow-x: auto; }
#main-nav .container { margin: 0 auto; max-width: 100%; overflow-x: auto; }
#main-nav ul { display: flex; flex-wrap: nowrap; list-style: none; margin: 0; padding: 0; }
#main-nav ul li { flex-shrink: 0; margin: 0; padding: 0; }
#main-nav ul li a { display: block; height: 100%; padding: 20px 30px; font-size: 17px; text-decoration: none; color: var(--white); font-weight: 500; white-space: nowrap; transition: var(--transition2); text-transform: none; letter-spacing: .5px; }
#main-nav ul li a:hover, #main-nav ul li.active a { color: var(--white); background: var(--secondary); }

@media (max-width: 991px) {
   #main-nav { display: none; }
}
@media (max-width: 1399px) {
   #main-nav ul li a { padding: 20px; font-size: 16px; }
}


/* ===================================================
   LEFT SIDE NAVIGATION
   =================================================== */
#side-nav { position: fixed; top: 0; left: -370px; width: 350px; height: 100%; background: white; box-shadow: 4px 0 12px rgba(0,0,0,0.2); transition: left 0.3s ease; z-index: 9999; padding: 0; }
#side-nav.active { left: 0; }

#side-nav #nav-close { position: absolute; top: 0; right: 1rem; display: grid; justify-content: center; align-content: center; height: 52px; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

#nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); backdrop-filter: blur(10px); z-index: 9990; display: none; opacity: 0; transition: opacity 0.3s ease; }
#nav-overlay.active { display: block; opacity: 1; }

#side-nav .navigation { position: absolute; overflow-x: hidden; display: flex; flex-direction: column; overflow-y: scroll; width: 100%; height: 100%; margin: 52px 0 0 0; border-top: 1px solid var(--border-primary); padding: 0 1rem; }
#side-nav .navigation h3 { display: block; margin: 1.5rem 0 0 0; padding: 0; color: var(--dark); font-size: 21px; font-weight: 500; }

#side-nav .nav-menu { list-style: none; padding: 1rem 0; margin: 0; }
#side-nav .nav-menu li { margin: 0; padding: 0; border-bottom: 1px solid var(--border-primary); }
#side-nav .nav-menu li:last-child { border-bottom: 0 none; }
#side-nav .nav-menu li a { display: flex; justify-content: space-between; align-items: center; cursor: pointer; margin: 0; padding: .5rem .8rem; line-height: normal; text-decoration: none; font-weight: 400; color: var(--dark); font-size: 16px; }
#side-nav .nav-menu li:hover a { background: var(--bg-side-nav-hover); }
#side-nav .nav-menu li i { color: var(--primary); }

#side-nav .nav-cats { overflow: hidden; width: 100%; }
#side-nav .nav-cats .nav-cats-slider { display: flex; transition: transform 0.4s ease-in-out; will-change: transform; }
#side-nav .nav-cats .nav-cats-slider .category-panel { min-width: 100%; width: 100%; box-sizing: border-box; }
#side-nav .nav-cats .nav-cats-slider .category-panel .nav-menu li a { font-size: 17px; }
#side-nav .nav-cats .nav-cats-slider .category-back { display: flex; justify-content: start; align-items: center; column-gap: .5rem; font-size: 17px; line-height: normal; font-weight: 500; margin: 20px 0 0 0; cursor: pointer; color: var(--primary); }
#side-nav .nav-cats .nav-cats-slider .category-back:hover { color: var(--dark); }
#side-nav .nav-cats .nav-cats-slider .category-next.active { color: var(--primary); }
#side-nav .nav-cats .nav-cats-slider .all-link { color: var(--primary); }

#side-nav .side-socials { display: flex; justify-content: center; align-items: center; column-gap: .5rem; margin: 20px 0 0 0; }
#side-nav .side-socials a { display: flex; justify-content: center; align-items: center; width: 38px; height: 38px; border-radius: 38px; font-size: 20px; background: var(--dark); color: var(--white); }
#side-nav .side-socials a:hover { background: var(--primary); color: var(--white); }

@media (max-width: 991px) {
   #side-nav .navigation h3 { margin: .5rem 0 0 0; }
}


/* ===================================================
   HOME SLIDER
   =================================================== */
#home-slider { position: relative; }
#home-slider .slider-row { height: 70vh; position: relative; z-index: 1; background-position: center !important; background-size: cover !important; background-repeat: no-repeat !important; display: flex; align-items: center; justify-content: center; }
#home-slider .slider-row::before { content: ""; position: absolute; width: 100%; height: 100%; left: -0.5px; top: 0; background: rgba(11, 28, 57, .1); z-index: -1; }
#home-slider .slider-row .slider-info { text-align: center; max-width: 70%; }
#home-slider .slider-row .slider-info h2 { display: block; margin: 0; padding: 0; color: var(--white); font-size: 52px; line-height: 56px; font-weight: 700; text-shadow: 0px 0px 5px #111; }
#home-slider .slider-row .slider-info h3 { display: inline-block; margin: 30px 0 0 0; padding: 10px 35px; line-height: normal; background: var(--secondary); color: var(--white); font-size: 22px; font-weight: 400; text-shadow: 0px 0px 3px #111; border-radius: 10px; text-transform: uppercase; }

#home-slider .owl-nav { margin-top: 0px; }
#home-slider .owl-nav button.owl-prev, #home-slider .owl-nav button.owl-next { position: absolute; top: 50%; transform: translate(0, -50%); font-size: 30px; margin: 0; padding: 0; background: rgba(255, 255, 255, .6); color: var(--primary); display: grid; justify-content: center; align-content: center; cursor: pointer; height: 45px; width: 45px; border-radius: 45px; text-align: center; transition: var(--transition); }
#home-slider .owl-nav button.owl-prev:hover, #home-slider .owl-nav button.owl-next:hover { background: rgba(255, 255, 255, 1); color: var(--primary); }
#home-slider .owl-nav button.owl-prev { left: 30px; }
#home-slider .owl-nav button.owl-next { right: 30px; }

@media (max-width: 991px) {
   #home-slider .slider-row .slider-info h2 { font-size: 32px; line-height: 32px; }
   #home-slider .slider-row .slider-info h3 { padding: 10px 25px; font-size: 17px; }

   #home-slider .owl-nav button.owl-prev { left: 5px; }
   #home-slider .owl-nav button.owl-next { right: 5px; }
}


/* ===================================================
   BANNER CATEGORIES SECTION
   =================================================== */
.banners-cats-section { margin: 100px 0; padding: 0; }
.banners-cats-section .banners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.banners-cats-section .banners-grid .banner-box { display: grid; border-radius: 12px; margin: 0; padding: 0; transition: var(--transition); }
.banners-cats-section .banners-grid .banner-box:hover { box-shadow: 0 0 10px rgba(50, 50, 50, 0.7); }
.banners-cats-section .banners-grid .banner-box img { width: 100%; border-radius: 12px 12px 0 0; margin: 0; padding: 0; }
.banners-cats-section .banners-grid .banner-box h3 { dispaly: block; padding: 12px 0; margin: 0; font-size: 26px; font-weight: 300; background: var(--primary); color: var(--white); border-radius: 0 0 12px 12px; transition: var(--transition); }
.banners-cats-section .banners-grid .banner-box:hover h3 { background: var(--secondary); }

@media (max-width: 991px) {
   .banners-cats-section { margin: 40px 0; padding: 0 10px; }
   .banners-cats-section .banners-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
   .banners-cats-section .banners-grid .banner-box h3 { font-size: 18px; font-weight: 400; padding: 10px 0; }
}


/* ===================================================
   PRODUCT CARD STYLE
   =================================================== */
.products { position: relative; }
.products .grid { display: grid; grid-template-columns: repeat(5, 1fr); justify-content: center; align-content: center; }
.products .empty { padding: 30px 0; font-size: 18px; font-weight: 300; font-style: italic; color: var(--dark); }

#top-products-carousel { position: relative; }
#top-products-carousel .owl-nav { margin: 0; display: block; }
#top-products-carousel .owl-nav button.owl-prev, #top-products-carousel .owl-nav button.owl-next { position: absolute; top: 50%; transform: translate(0, -50%); font-size: 30px; margin: 0; padding: 0; background: rgba(230, 230, 230, .4); color: var(--primary); display: grid; justify-content: center; align-content: center; cursor: pointer; height: 45px; width: 45px; border-radius: 45px; text-align: center; transition: var(--transition); }
#top-products-carousel .owl-nav button.owl-prev:hover, #top-products-carousel .owl-nav button.owl-next:hover { background: rgba(230, 230, 230, 1); color: var(--primary); }
#top-products-carousel .owl-nav button.owl-prev { left: -50px; }
#top-products-carousel .owl-nav button.owl-next { right: -50px; }

.product-card-wrapper { display: flex; padding: 5px; box-sizing: border-box; height: 100%; }
.product-card-wrapper .product-card { background: var(--white); border: 1px solid #ddd; border-radius: 10px; overflow: hidden; position: relative; text-align: center; padding: 10px; transition: box-shadow 0.3s; display: flex; flex-direction: column; justify-content: space-between; height: 100%; transition: var(--transition); }
.product-card-wrapper .product-card:hover { border-color: var(--primary); box-shadow: 0 0 10px rgba(150, 150, 150, 0.6); }
.product-card-wrapper .product-card .product-image { flex-shrink: 0; border-radius: 10px; }
.product-card-wrapper .product-card .product-image img { width: 100%; max-width: 100%; object-fit: contain; border-radius: 10px; }

.product-card-wrapper .product-card .product-info { margin-top: 10px; flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-start; }
.product-card-wrapper .product-card .product-info .product-title { padding: 0 5px; font-size: 17px; font-weight: 500; margin: 0; color: var(--dark); flex-grow: 1; text-align: left; }
.product-card-wrapper .product-card .product-info .product-title a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; height: 4.2em; line-height: 1.4em; color: var(--dark); }

.product-card-wrapper .product-card .product-info .product-price { display: none; column-gap: .5rem; }
.product-card-wrapper .product-card .product-info .product-price span { color: var(--dark); font-size: 15px; font-weight: 500; text-decoration: line-through; }
.product-card-wrapper .product-card .product-info .product-price strong { color: var(--dark); font-size: 15px; font-weight: 600; }
.product-card-wrapper .product-card .product-info .product-price strong.promo { color: var(--red); }

.product-card-wrapper .product-card .product-header { position: absolute; top: 17px; left: 17px; right: 17px; display: flex; align-items: center; justify-content: space-between; gap: 0; }
.product-card-wrapper .product-card .product-header .product-top { background-color: var(--bg-product-top); padding: 6px 12px; font-weight: 300; font-size: 13px; text-transform: uppercase; border-radius: 8px; color: var(--white); z-index: 2; letter-spacing: 0; }

@media (max-width: 991px) {
   .products .grid { grid-template-columns: repeat(2, 1fr); }
   .product-card-wrapper .product-card { padding: 5px; }
   .product-card-wrapper .product-card .product-info { margin-top: 5px; }
}


/* ===================================================
   SHOP PAGE
   =================================================== */
#shop-page { position: relative; display: grid; padding: 0; margin: 0 0 60px 0; }

#categories-slider { position: relative; margin: 0 0 40px 0; padding: 0; width: 100%; overflow-x: hidden; max-width: 100%; }
#categories-slider .owl-item { width: auto !important; }
#categories-slider .owl-stage-outer { width: 100%; max-width: 100%; }
#categories-slider .cat-box { width: auto; white-space: nowrap; display: flex; align-items: center; column-gap: .4rem; text-align: center; text-decoration: none; text-transform: none; padding: 5px 10px; border-radius: 10px; transition: 0.2s ease; background: var(--white); color: var(--dark); font-size: 17px; font-weight: 400; border: 1px solid #ddd; }
#categories-slider .cat-box i { color: var(--primary); }
#categories-slider .cat-box:hover, #categories-slider .cat-box.active { background: var(--primary); border: 1px solid var(--primary); color: var(--white); }
#categories-slider .cat-box:hover i, #categories-slider .cat-box.active i { color: var(--white); }

@media (max-width: 991px) {
   #shop-page { padding: 0 10px; width: 100%; max-width: 100%; }
   #cat-info { padding: 10px; }
}


/* ===================================================
   PRODUCT PAGE
   =================================================== */
#product-page { position: relative; padding: 50px; background: rgba(255, 255, 255, .6); }
#product-page .product-page-wrapper { display: grid; column-gap: 2rem; grid-template-columns: 50% 50%; padding: 0 0 50px 0; }

#product-page .product-page-wrapper .product-top { display: inline-block; background-color: var(--bg-product-top); padding: 5px 8px; margin: 0 0 10px 0; font-weight: 300; font-size: 13px; text-transform: uppercase; border-radius: 4px; color: var(--white); z-index: 2; letter-spacing: .5px; }

#product-page .product-page-wrapper .product-title { margin: 0 0 30px 0; padding: 0; font-size: 38px; line-height: normal; font-weight: 700; color: var(--dark); text-transform: none; }

#product-page .product-page-wrapper .product-stock { margin: 0; font-size: .8rem; font-weight: 500; text-transform: uppercase; }
#product-page .product-page-wrapper .product-stock i { font-size: 1.2em; vertical-align: middle; margin-right: 5px; }
#product-page .product-page-wrapper .product-stock .in-stock { color: var(--green); display: inline-flex; align-items: center; }
#product-page .product-page-wrapper .product-stock .out-of-stock { color: var(--red); display: inline-flex; align-items: center; }

#product-page .product-page-wrapper .product-price { margin: 25px 0; display: flex; column-gap: .5rem; }
#product-page .product-page-wrapper .product-price span { color: var(--dark); font-size: 26px; font-weight: 500; text-decoration: line-through; }
#product-page .product-page-wrapper .product-price strong { color: var(--dark); font-size: 26px; font-weight: 600; }
#product-page .product-page-wrapper .product-price strong.promo { color: var(--red); }

#product-page .product-page-wrapper .add-to-cart-button { display: flex; justify-content: center; align-items: center; column-gap: .5rem; border: 0; outline: 0; width: 100%; padding: 15px 0; border-radius: 6px; background: var(--primary); color: var(--white); cursor: pointer; transition: var(--transition);  text-transform: uppercase; }
#product-page .product-page-wrapper .add-to-cart-button i { font-size: 22px; font-weight: 400; }
#product-page .product-page-wrapper .add-to-cart-button span { font-size: 17px; font-weight: 400; }
#product-page .product-page-wrapper .add-to-cart-button:hover { background: var(--dark); color: var(--white); }

#product-page .product-page-wrapper .product-additions { display: grid; row-gap: .4rem; margin: 40px 0 0 0; padding: 0; }
#product-page .product-page-wrapper .product-additions li { display: grid; grid-template-columns: auto 1fr; column-gap: .8rem; justify-content: center; align-content: center; justify-items: start; align-items: center; padding: 0; margin: 0; }
#product-page .product-page-wrapper .product-additions li::before { font-size: 22px; content: "\e182"; font-family: "Phosphor"; color: var(--primary); font-weight: 400; }
#product-page .product-page-wrapper .product-additions li strong { font-size: 18px; color: var(--primary); font-weight: 400; }

#product-page .product-page-wrapper .product-gallery { text-align: center; }
#product-page .product-page-wrapper .product-gallery .owl-main-gallery .item img { max-width: 100%; max-height: 500px; object-fit: contain; }
#product-page .product-page-wrapper .product-gallery .owl-thumbs-gallery { margin-top: 10px; }
#product-page .product-page-wrapper .product-gallery .owl-thumbs-gallery .item { margin: 0; cursor: pointer; border: 3px solid #ccc; transition: border-color 0.3s; border-radius: 6px; }
#product-page .product-page-wrapper .product-gallery .owl-thumbs-gallery .item.active, #product-page .product-page-wrapper .product-gallery .owl-thumbs-gallery .item:hover { border-color: var(--primary); }
#product-page .product-page-wrapper .product-gallery .owl-thumbs-gallery .item img { width: 100%; object-fit: cover; margin: 0 auto; }

#product-page .product-page-wrapper .product-gallery .owl-nav { margin: 0; }
#product-page .product-page-wrapper .product-gallery .owl-nav button.owl-prev, #product-page .product-page-wrapper .product-gallery .owl-nav button.owl-next { position: absolute; top: 50%; transform: translate(0, -50%); font-size: 30px; margin: 0; padding: 0; background: rgba(255, 255, 255, .3); color: var(--primary); display: grid; justify-content: center; align-content: center; cursor: pointer; height: 45px; width: 45px; border-radius: 45px; text-align: center; transition: var(--transition); }
#product-page .product-page-wrapper .product-gallery .owl-nav button.owl-prev:hover, #product-page .product-page-wrapper .product-gallery .owl-nav button.owl-next:hover { background: rgba(255, 255, 255, .6); color: var(--primary); }
#product-page .product-page-wrapper .product-gallery .owl-nav button.owl-prev { left: 20px; }
#product-page .product-page-wrapper .product-gallery .owl-nav button.owl-next { right: 20px; }

.product-gallery .thumbs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 5px; margin-top: 15px; justify-content: center; }
.product-gallery .thumbs-grid .thumb-item { border: 3px solid #ccc; border-radius: 6px; cursor: pointer; transition: border-color 0.3s; overflow: hidden; }
.product-gallery .thumbs-grid .thumb-item.active, .product-gallery .thumbs-grid .thumb-item:hover { border-color: var(--primary); }
.product-gallery .thumbs-grid .thumb-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

#product-page .product-info-title { font-weight: 700; font-size: 28px; }

#product-page .product-buttons { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 2rem; margin: 50px 0 0 0; justify-content: center; align-content: center; text-align: center; }
#product-page .product-buttons a { display: grid; grid-template-columns: auto auto; justify-content: center; align-items: center; column-gap: .5rem; width: 100%; background: #0866FF; color: var(--white); font-size: 20px; border-radius: 12px; padding: 20px 0; border: 0; outline: 0; transition: var(--transition); cursor: pointer; }
#product-page .product-buttons button { display: grid; grid-template-columns: auto auto; justify-content: center; align-items: center; column-gap: .5rem; background: var(--secondary); color: var(--white); font-size: 20px; border-radius: 12px; padding: 20px 0; border: 0; outline: 0; transition: var(--transition); cursor: pointer; }
#product-page .product-buttons a:hover, #product-page .product-buttons button:hover { background: var(--green); color: var(--white); }

@media (max-width: 991px) {
   #product-page { padding: 30px 10px; }
   #product-page .product-page-wrapper .product-content { order: 1; }
   #product-page .product-page-wrapper .product-gallery { order: 2; }

   #product-page .product-page-wrapper .product-gallery .owl-main-gallery { display: none; } 

   .product-gallery .thumbs-grid .thumb-item { display: inherit; border: 3px solid #ccc; border-radius: 6px; cursor: pointer; transition: border-color 0.3s; overflow: hidden; }
   .product-gallery .thumbs-grid .thumb-item.active, .product-gallery .thumbs-grid a:hover { border: 3px solid #ccc; }
   .product-gallery .thumbs-grid .thumb-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

   #product-page .product-page-wrapper { column-gap: 0; grid-template-columns: 100%; padding: 0 0 30px 0; }

   #product-page .product-page-wrapper .product-title { margin: 0 0 20px 0; font-size: 32px; }

   #product-page .product-page-wrapper .product-additions { row-gap: .2rem; margin: 20px 0 0 0; }
   #product-page .product-page-wrapper .product-additions li { column-gap: .5rem; }
   #product-page .product-page-wrapper .product-additions li::before { font-size: 18px;}
   #product-page .product-page-wrapper .product-additions li strong { font-size: 15px; }

   #product-page .product-buttons { column-gap: .5rem; margin: 30px 0; }
   #product-page .product-buttons a, #product-page .product-buttons button { font-size: 17px; padding: 15px 10px; }
   #product-page .product-buttons a i, #product-page .product-buttons button i { font-size: 24px; }

   #product-page .product-info { padding: 10px; }
}


/* ===================================================
   RELATED PRODUCTS ON PRODUCT PAGE
   =================================================== */
.related-products { position: relative; background: var(--bg-related); padding: 0 0 50px 0; }


/* ===================================================
   GALLERY STYLE
   =================================================== */
.gallery { position: relative; }
.gallery .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; justify-content: center; align-content: center; }

.gallery-card-wrapper { display: grid; padding: 0; box-sizing: border-box; height: 100%; }
.gallery-card-wrapper .gallery-card { background: var(--white); border: 1px solid #ddd; border-radius: 10px; overflow: hidden; position: relative; text-align: center; padding: 10px; transition: box-shadow 0.3s; display: flex; flex-direction: column; justify-content: space-between; height: 100%; transition: var(--transition); }
.gallery-card-wrapper .gallery-card:hover { border-color: var(--primary); box-shadow: 0 0 10px rgba(150, 150, 150, 0.6); }
.gallery-card-wrapper .gallery-card .gallery-image { flex-shrink: 0; border-radius: 10px; }
.gallery-card-wrapper .gallery-card .gallery-image img { width: 100%; max-width: 100%; object-fit: contain; border-radius: 10px; }
.gallery-card-wrapper .gallery-card h3 { padding: 10px 5px; font-size: 22px; line-height: 24px; font-weight: 600; margin: 0; color: var(--dark); flex-grow: 1; text-align: left; }

.gallery-box { background: var(--white); border: 1px solid #ddd; flex-shrink: 0; border-radius: 10px; overflow: hidden; position: relative; text-align: center; padding: 10px; transition: box-shadow 0.3s; display: flex; flex-direction: column; justify-content: space-between; height: 100%; transition: var(--transition); }
.gallery-box:hover { border-color: var(--primary); box-shadow: 0 0 10px rgba(150, 150, 150, 0.6); }
.gallery-box img { width: 100%; max-width: 100%; object-fit: contain; border-radius: 10px; }

.gallery-info { margin: 30px 0 0 0; padding: 30px; background: var(--bg-product-info); border-radius: 6px; text-align: justify; }

@media (max-width: 991px) {
   #gallery-page { padding: 0 10px; }
   .gallery .grid { grid-template-columns: repeat(2, 1fr); }
   .gallery-card-wrapper .gallery-card { padding: 5px; }
   .gallery-card-wrapper .gallery-card h3 { font-size: 18px; font-weight: 600; }

   .gallery-box { padding: 5px; }
}


/* ===================================================
   BLOG STYLE
   =================================================== */
.blog { position: relative; }
.blog .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; justify-content: center; align-content: center; }

.blog .grid .post-card { display: flex; padding: 5px; box-sizing: border-box; height: 100%; }
.blog .grid .post-card a { background: var(--white); border: 1px solid #ddd; border-radius: 10px; overflow: hidden; position: relative; text-align: center; padding: 10px; transition: box-shadow 0.3s; display: flex; flex-direction: column; justify-content: space-between; height: 100%; transition: var(--transition); }
.blog .grid .post-card a:hover { border-color: var(--primary); box-shadow: 0 0 10px rgba(150, 150, 150, 0.6); }
.blog .grid .post-card a figure { flex-shrink: 0; border-radius: 10px; }
.blog .grid .post-card a figure img { width: 100%; max-width: 100%; object-fit: contain; border-radius: 10px; }
.blog .grid .post-card a h3 { padding: 10px 5px; font-size: 22px; line-height: 24px; font-weight: 700; margin: 0; color: var(--dark); flex-grow: 1; text-align: left; }

.post-gallery { margin: 50px 0 0 0; }
.post-gallery a { background: var(--white); border: 1px solid #ddd; flex-shrink: 0; border-radius: 10px; overflow: hidden; position: relative; text-align: center; padding: 10px; transition: box-shadow 0.3s; display: flex; flex-direction: column; justify-content: space-between; height: 100%; transition: var(--transition); }
.post-gallery a:hover { border-color: var(--primary); box-shadow: 0 0 10px rgba(150, 150, 150, 0.6); }
.post-gallery a img { width: 100%; max-width: 100%; object-fit: contain; border-radius: 10px; }

.post-info { margin: 0; padding: 30px; background: var(--bg-product-info); border-radius: 6px; text-align: justify; }

@media (max-width: 991px) {
   #blog-page { padding: 0 10px; }
   .blog .grid { display: grid; grid-template-columns: repeat(1, 1fr);  gap: 1rem; }

   .blog .grid .post-card { padding: 0; }
   .blog .grid .post-card a { padding: 5px; }
   .blog .grid .post-card a h3 { font-size: 24px; line-height: 24px; font-weight: 600; }

   .post-info { padding: 10px; }
}


/* ===================================================
   VIDEOS PAGE
   =================================================== */
.videos-page { position: relative; padding: 0 0 50px 0; }
.videos-page .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; justify-content: center; align-content: center; }
.videos-page .grid iframe { width: 100%; min-height: 400px; }

@media (max-width: 991px) {
   .videos-page { padding: 0 10px; }
   .videos-page .grid { grid-template-columns: 1fr; }
}


/* ===================================================
   COLORS PAGE
   =================================================== */
.colors-page { position: relative; padding: 0 0 50px 0; }
.colors-page .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; justify-content: center; align-content: center; margin-top: 30px; }
.colors-page .grid .color-card { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; justify-content: center; align-items: center; }
.colors-page .grid .color-card i { background: var(--white); padding: 10px; border-radius: 100%; font-size: 42px; color: var(--secondary); }
.colors-page .grid .color-card h3 { font-size: 26px; color: var(--dark); }
.colors-page .grid .color-card h3:hover { text-decoration: underline; }

@media (max-width: 991px) {
   .colors-page { padding: 0 10px; }
   .colors-page .grid { grid-template-columns: 1fr; }
}


/* ===================================================
   CUSTOM PAGE
   =================================================== */
.custom-page { position: relative; }

@media (max-width: 991px) {
   .custom-page { padding: 0 10px; }
}


/* ===================================================
   STYLE TEXT
   =================================================== */
.style-text { background: rgba(255, 255, 255, .4); margin: 0; padding: 30px; font-size: 18px; font-weight: 400; line-height: normal; color: var(--primary); text-align: justify; line-height: normal; }
.style-text h2 { font-size: 24px; font-weight: 500; margin: 20px 0; color: var(--primary); line-height: normal; }
.style-text h3 { font-size: 20px; font-weight: 500; margin: 20px 0; color: var(--primary); line-height: normal; }
.style-text h4 { font-size: 18px; font-weight: 500; margin: 20px 0; color: var(--primary); line-height: normal; }
.style-text p { font-size: 18px; font-weight: 400; margin: 10px 0; color: var(--primary); line-height: normal; }
.style-text strong { font-weight: 600; color: var(--primary); }
.style-text table { width: 100%; margin: 20px 0; }
.style-text table td, .style-text table th { border: 1px solid #888; padding: 10px; background: var(--white); }
.style-text table td p, .style-text table th p { margin: 0; padding: 0; }
.style-text ul { margin: 15px 0; padding: 0; }
.style-text ul li { position: relative; display: block; padding: 0; margin: 5px 0; justify-content: start; align-items: center; font-size: 18px; font-weight: 400; line-height: normal; }
.style-text ul li p { display: inline-block; padding: 0; margin: 0; font-size: 18px; font-weight: 400; }
.style-text ul li::before { margin-right: 10px; font-size: 18px; content: "\e182"; font-family: "Phosphor"; color: var(--primary); font-weight: 400; }
.style-text ol { margin: 15px; padding: 0; }
.style-text ol li { padding: 0; margin: 5px 0; justify-content: start; align-items: center; font-size: 18px; font-weight: 400; line-height: normal; }
.style-text ol li p { display: inline-block; padding: 0; margin: 0; font-size: 18px; font-weight: 400; }

@media (max-width: 991px) {
   .style-text { text-align: justify; }
}



/* ===================================================
   CONTACTS PAGE
   =================================================== */
.contacts-page { position: relative; }
.contacts-page-flex { display: grid; grid-template-columns: 30% 1fr; column-gap: 2rem; }
.contacts-page-flex h2 { display: block; margin: 0 0 20px 0; padding: 0; font-size: 24px; font-weight: 500; color: var(--dark); }

.contacts-page-flex .contacts-info { width: 100%; display: flex; flex-direction: column; row-gap: 1rem; margin: 0 0 40px 0; }
.contacts-page-flex .contacts-info li a { display: flex; justify-content: start; align-items: center; column-gap: .8rem; margin: 0; color: var(--dark); font-weight: 400; font-size: 17px; }
.contacts-page-flex .contacts-info li i { font-size: 22px; }
.contacts-page-flex .contacts-info li a:hover span { text-decoration: underline; }

.contacts-page-flex .contacts-socials { width: 100%; display: flex; justify-content: start; align-items: center; column-gap: .7rem; margin: 0; }
.contacts-page-flex .contacts-socials a { display: flex; justify-content: center; align-items: center; width: 38px; height: 38px; border-radius: 38px; font-size: 20px; background: var(--primary); color: var(--white); }
.contacts-page-flex .contacts-socials a:hover { background: var(--dark); color: var(--white); }

.contacts-page-flex .contact_form_message { display: block; margin: 20px 0 0 0; text-align: left; font-size: 26px; }
.contacts-page-flex .contact_form_message .success { font-weight: 500; color: var(--primary); }
.contacts-page-flex .contact_form_message .error { font-weight: 500; color: var(--red); }

.contacts-map { margin: 50px 0 0 0; }
.contacts-map iframe { width: 100%; min-height: 550px; }

@media (max-width: 991px) {
   .contacts-page { padding: 0 10px; }
   .contacts-page-flex { display: grid; width: 100%; grid-template-columns: 1fr; column-gap: 0; padding: 0; }
   .contacts-page-flex .contacts-socials { margin-bottom: 40px; }
}


/* ===================================================
   ERROR PAGE
   =================================================== */
.error-page { display: flex; align-items: center; justify-content: center; padding: 100px 0; }
.error-page .container { text-align: center; }
.error-page h1 { font-size: 4rem; color: var(--primary); }
.error-page p { padding: 20px 0; font-size: 1.2rem; color: var(--dark); }
.error-page .btn { margin-top: 2rem; padding: 0.75rem 1.5rem; background: var(--primary); color: white; text-decoration: none; border-radius: 5px; transition: background 0.3s; }
.error-page .btn:hover { background: var(--dark); }


/* ===================================================
   FORM STYLE
   =================================================== */
.form-group { position: relative; margin: 0 0 1rem 0; }
.form-group .error_string { position: absolute; top: 0; right: 15px; height: 30px; line-height: 30px; color: var(--red); font-size: 14px; }
.form-group label { display: block; height: 30px; line-height: 30px; margin-bottom: 0.5rem; padding: 0; font-size: 1rem; font-weight: 400; }
.form-group .form-control { width: 100%; padding: 0.75rem; border: 1px solid #ccc; border-radius: 15px; font-size: 1rem; background-color: var(--white); box-sizing: border-box; transition: border-color 0.3s ease; }
.form-group textarea.form-control { max-width: 100%; width: 100%; }
.form-group .form-control:focus { border-color: var(--secondary); outline: none; }
.form-group button { padding: 0.8rem 2.5rem; background: var(--primary); color: var(--white); border: none; border-radius: 15px; font-size: 1rem; cursor: pointer; transition: background 0.3s ease; }
.form-group button:hover { background: var(--dark); color: var(--white); }


/* ===================================================
   FOOTER
   =================================================== */
.footer { position: relative; margin: 50px 0 0 0; padding: 80px 0; background: var(--primary); border-top: 1px solid #eee; }
.footer .footer-socials { display: flex; justify-content: center; align-items: center; column-gap: 1rem; margin: 0 0 30px 0; }
.footer .footer-socials a { display: flex; justify-content: center; align-items: center; width: 48px; height: 48px; border-radius: 48px; font-size: 24px; background: var(--white); color: var(--dark); }
.footer .footer-socials a:hover { color: var(--primary); }

.footer .footer-menu { display: flex; justify-content: center; align-items: center; column-gap: 2rem; margin: 40px 0; }
.footer .footer-menu li { display: flex; margin: 0; padding: 0; }
.footer .footer-menu li a { font-size: 17px; font-weight: 400; color: var(--white); text-decoration: underline; }
.footer .footer-menu li a:hover { text-decoration: underline; color: var(--secondary); }

.footer .copyright { margin: 0; padding: 0; text-align: center; font-weight: 300; font-size: 14px; color: var(--white); }

@media (max-width: 991px) {
   .footer .footer-menu { display: none; }
}


/* ===================================================
   BREADCRUMBS
   =================================================== */
.breadcrumbs { margin: 0; padding: 1rem 0; background: var(--bg-breadcrumb); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; gap: 0.5rem; }
.breadcrumbs ol li { display: flex; align-items: center; padding: 0; margin: 0; color: var(--dark); font-size: 13px; font-weight: 400; }
.breadcrumbs ol li::after { font-family: "Phosphor"; content: "\e13a"; padding: 0 0 0 5px; color: var(--dark); font-size: 12px; }
.breadcrumbs ol li:last-child::after { content: none; }
.breadcrumbs ol li a { padding: 0; margin: 0; color: var(--dark); text-decoration: none; transition: color 0.2s; }
.breadcrumbs ol li a:hover { color: var(--dark); text-decoration: underline; }
.breadcrumbs ol li[aria-current="page"] { color: var(--primary); }

@media (max-width: 991px) {
   .breadcrumbs { padding: 1rem 10px; font-size: 13px; }
   .breadcrumbs ol { flex-wrap: nowrap; overflow-x: hidden; -webkit-overflow-scrolling: touch; white-space: nowrap; max-width: 100%; }
}


/* ===================================================
   PAGINATION
   =================================================== */
.pagination { display: flex; flex-direction: row; justify-content: center; gap: 5px; list-style: none; margin: 3rem 0 0 0; padding: 2rem 0; flex-wrap: wrap; }
.pagination .page-item a { display: block; width: 40px; height: 40px; line-height: 40px; text-align: center; font-size: 15px; font-weight: 400; color: var(--dark); border: 1px solid #ddd; border-radius: 6px; text-decoration: none; transition: all 0.2s ease; background-color: var(--white); }
.pagination .page-item a:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.pagination .page-item.active a, .pagination .page-item a[aria-current="page"] { background: var(--primary); color: var(--white); border-color: var(--primary); pointer-events: none; }

@media (max-width: 991px) {
   .pagination { gap: 4px; }
   .pagination .page-item a { padding: 6px 10px; font-size: 13px; }
}