/**
* template:  Starluxe

TABLE OF CONTENTS

        + Global
        + Header
        + Header Content
        + Products
        + About Us
        + Edge
        + Tranding Products
        + Brands
        + Blog
        + Testimonials
        + Contact

*/

@import 'reset.css';
@import 'all.min.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
	--color-light-gray: #fbf9fa;
	--color-dark: #222222;
	--color-white: #ffffff;
	--color-gray: #555555;
	--color-red: #ff6666;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	outline: none;
	display: inline-block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

img {
	outline: none;
	height: auto;
	display: block;
}

body {
	font-family: "Jost", sans-serif;
	font-weight: 400;
	color: var(--color-gray);
	font-size: 16px;
	line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-dark);
	margin-bottom: 30px;
	text-transform: uppercase;
	line-height: 1;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 18px;
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.ptb {
	padding-top: 50px;
	padding-bottom: 50px;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.btn {
	background-color: var(--color-red);
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 16px 42px;
	border-radius: 5px;
	font-size: 14px;
}

.btn:hover {
	background-color: var(--color-dark);
}

.align-center {
	text-align: center;
}

.suptitle {
	display: inline-block;
	color: var(--color-red);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

::-moz-selection {
	color: var(--color-white);
	background-color: var(--color-red);
}

::selection {
	color: var(--color-white);
	background-color: var(--color-red);
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: var(--color-red);
}

.social-link li {
	margin-left: 20px;
}

.social-link li a {
	color: var(--color-dark);
}

.social-link li a:hover {
	color: var(--color-red);
}

#openmenu,
#closemenu {
	font-size: 30px;
	color: var(--color-dark);
	display: none;
}

#closemenu {
	color: var(--color-white);
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-red);
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px 20px;
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-light-gray);
	z-index: 100000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#preload img {
	width: 40px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.res-send {
	display: none;
	font-size: 14px;
	margin-top: 20px;
}

.res-send .error {
	color: var(--color-red);
}

.res-send .send {
	color: var(--color-dark);
}

#subscribe-wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100vh;
	width: 100vw;
	background-color: rgba(34, 34, 34, 0.2);
	z-index: 20000;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.subscribe-content {
	background-color: var(--color-white);
	padding: 20px 50px 50px 50px;
	margin: 50px auto 0 auto;
	max-width: 600px;
	width: 90%;
	overflow: auto;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

#close-popup {
	float: right;
	font-size: 30px;
	color: var(--color-dark);
}

#close-popup:hover {
	color: var(--color-red);
}

#subscribe-wrapper h2 {
	font-size: 25px;
	margin-bottom: 10px;
	clear: both;
}

#subscribe-wrapper form {
	margin-top: 30px;
}

#subscribe-wrapper form input[name="subscribe"] {
	padding: 15px 15px;
	outline: none;
	border: none;
	border: 1px solid rgba(121, 121, 121, 0.4);
	display: block;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 3px;
	font-family: "Jost", sans-serif;
	font-weight: 400;
	color: var(--color-dark);
}

#subscribe-wrapper form input[name="subscribe"]::-webkit-input-placeholder {
	color: var(--color-gray);
	font-family: "Jost", sans-serif;
	font-weight: 400;
}

#subscribe-wrapper form input[name="subscribe"]::-moz-placeholder {
	color: var(--color-gray);
	font-family: "Jost", sans-serif;
	font-weight: 400;
}

#subscribe-wrapper form input[name="subscribe"]:-ms-input-placeholder {
	color: var(--color-gray);
	font-family: "Jost", sans-serif;
	font-weight: 400;
}

#subscribe-wrapper form input[name="subscribe"]::-ms-input-placeholder {
	color: var(--color-gray);
	font-family: "Jost", sans-serif;
	font-weight: 400;
}

#subscribe-wrapper form input[name="subscribe"]::placeholder {
	color: var(--color-gray);
	font-family: "Jost", sans-serif;
	font-weight: 400;
}

#subscribe-wrapper button {
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	cursor: pointer;
	outline: none;
	border: none;
}


/**************************************
*
*         HEADER   
*
***************************************/


#header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.9);
}

.wrapper-header {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

#logo img {
	max-width: 100%;
}

.menu li {
	float: left;
	margin: 0 20px;
}

.menu li a {
	color: var(--color-dark);
	text-transform: uppercase;
}

.menu li a:hover {
	color: var(--color-red);
}


/**************************************
*
*         HEADER CONTENT 
*
***************************************/


.wrapper-header-content {
	height: 800px;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: cover;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}


/**************************************
*
*         PRODUCTS 
*
***************************************/


.sigle-products {
	border: 1px solid transparent;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	position: relative;
}

.label {
	position: absolute;
	top: 10px;
	left: 10px;
	color: var(--color-white);
	text-transform: uppercase;
	background-color: var(--color-red);
	font-size: 10px;
	padding: 8px 10px;
	font-weight: 700;
	letter-spacing: 3px;
	line-height: 1;
}

.sigle-products:hover {
	border: 1px solid rgba(85, 85, 85, 0.2);
}

.single-products-img {
	background-color: var(--color-light-gray);
	display: block;
	padding: 20px;
}

.single-products-img img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.wrapper-single-products-content {
	padding: 20px;
}

.rating {
	margin-bottom: 5px;
}

.rating i {
	font-size: 12px;
	color: #ffc78b;
}

.single-category-name {
	margin-bottom: 15px;
}

.single-products-name {
	color: var(--color-dark);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 14px;
}

.single-products-name:hover {
	color: var(--color-red);
}

.price .sale {
	margin-right: 10px;
	text-decoration: line-through;
	color: var(--color-red);
}


/**************************************
*
*         ABOUT US
*
***************************************/


.aboutus-content {
	width: 50%;
	padding: 50px;
	background-color: var(--color-light-gray);
}

.aboutus-content p {
	margin-bottom: 20px;
}

.aboutus-img {
	width: 50%;
}

.aboutus-img img {
	width: 100%;
}


/**************************************
*
*         EDGE
*
***************************************/


.wrapper-edge {
	padding-top: 50px;
	padding-bottom: 50px;
}

.single-edge {
	padding: 10px;
	width: 25%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.single-edge i {
	font-size: 30px;
	margin-right: 20px;
}

.single-edge h3 {
	margin-bottom: 5px;
}


/**************************************
*
*      TRANDING PRODUCTS
*
***************************************/


.wrapper-product-tabs {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 20px;
}

.product-list li {
	margin: 10px 20px;
}

.product-list li a {
	text-transform: uppercase;
	color: var(--color-dark);
}

.product-list li a:hover,
.product-list li.active a {
	color: var(--color-red);
}

.wrapper-products .wrapper-product-section:not(:first-child) {
	display: none;
}

.wrapper-product-section .sigle-products {
	width: calc(25% - 20px);
	margin: 10px;
}


/**************************************
*
*        BRANDS 
*
***************************************/


.wrapper-brands {
	padding-bottom: 50px;
}

.brands-carousel img {
	-webkit-filter: opacity(50%);
	filter: opacity(50%);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.brands-carousel a:hover img {
	-webkit-filter: opacity(100%);
	filter: opacity(100%);
}


/**************************************
*
*      BLOG
*
***************************************/


.single-blog {
	padding-bottom: 20px;
}

.single-blog img {
	margin-bottom: 20px;
}

.single-blog h3 {
	color: var(--color-dark);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 18px;
}

.date-author {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
	font-size: 14px;
}

.date-author p i {
	margin-right: 10px;
}

.excerpt {
	margin-bottom: 15px;
}

.single-blog a {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	color: var(--color-dark);
}

.single-blog a:hover {
	color: var(--color-red);
}


/**************************************
*
*        TESTIMONIALS 
*
***************************************/


.wrapper-testimonials {
	max-width: 1000px;
}

.single-testimonials img {
	width: 80px !important;
	height: 80px !important;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 30px;
}

.wrapper-author {
	margin-top: 30px;
}

.single-testimonials h3 {
	font-size: 18px;
	margin-bottom: 5px;
}


/**************************************
*
*        CONTACT 
*
***************************************/


#contacts {
	background-color: var(--color-light-gray);
	padding-bottom: 80px;
	padding-top: 80px;
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
}

.wrapper-contact>div a {
	color: var(--color-gray);
}

.wrapper-contact>div a:hover {
	color: var(--color-red);
}

.wrapper-contact>div .social-link {
	margin-top: 20px;
}

.wrapper-contact>div .social-link li {
	margin-right: 20px;
	margin-left: 0px;
}

.wrapper-contact>div .social-link li a {
	color: var(--color-dark);
}

.wrapper-contact>div .social-link li a:hover {
	color: var(--color-red);
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
	display: block;
}

.copyright {
	background-color: var(--color-dark);
	padding: 30px 15px;
	color: var(--color-content);
}

/* ──────────────────────────────────────────────────────────────
 * Salesio strict-mode overrides for perfumes
 * ──────────────────────────────────────────────────────────── */

/* Rule 7 + 9 + 2 defensive hides — popups / scroll-top removed from HTML
 * but if cached HTML still renders them, hide here. */
#subscribe-wrapper, #scroll-top { display: none !important; }

/* Rule 26: hero bg via <img class="section-bg-image"> instead of inline style */
.wrapper-header-content { position: relative; overflow: hidden; }
.wrapper-header-content > .section-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 0;
}
.section-bg-image:not([src]), .section-bg-image[src=""] { display: none; }
.wrapper-header-content > .header-content { position: relative; z-index: 1; }

/* Rule 24-25: convert all carousels to flat grids */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.products-grid .sigle-products {
  position: relative;
  text-align: center;
  padding: 20px 18px;
  background: #fff;
  border-radius: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.products-grid .sigle-products:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.products-grid .sigle-products .single-products-img img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: block;
}
.products-grid .single-products-name {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--color-text, #2b2b2b);
  text-decoration: none;
}
.products-grid .label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-primary, #b76e79);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.brands-grid .brand-cell img { max-width: 140px; opacity: 0.7; transition: opacity 0.2s; }
.brands-grid .brand-cell:hover img { opacity: 1; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-grid .single-blog {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.blog-grid .single-blog img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-grid .wrapper-blog-content { padding: 20px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 992px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonials-grid .single-testimonials {
  background: #fff;
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.testimonials-grid .single-testimonials img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  display: block;
}

/* Universal logo rule */
.logo__link { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo__img { display: inline-block; max-height: 4.4rem; width: auto; vertical-align: middle; }
.logo__img:not([src]), .logo__img[src=""] { display: none; }
.logo__img[src]:not([src=""]) ~ .logo-text { display: none; }
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
}

[data-cms-logo-on="light"] .logo-text,
[data-cms-logo-on="light"] .logo__img {
  color: var(--brand-color, var(--color-primary, var(--salesio-primary, #b76e79)));
}
[data-cms-logo-on="dark"] .logo-text,
[data-cms-logo-on="dark"] .logo__img {
  color: #ffffff;
}
[data-cms-logo-on="dark"] .logo__img {
  filter: brightness(0) invert(1);
}

/* Pointer cursor on interactive elements */
a, button, [data-cms-action], [role="button"], .btn, label[for] { cursor: pointer; }
button:disabled, .btn:disabled, [aria-disabled="true"] { cursor: not-allowed; }
