/*

      SEO Assignment #2-Part B 

      Chellie's Claws Nails
      Author: Carol Laquie
      Date: March 5, 2026

      Filename: index.html
   -->
*/

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
 --header-height:160px;
 --header-height-min:80px;
}


:root {
	
/* BRAND COLORS */
--cream-bg:#F5EFE8;
--burgundy:#ab1234;
--gold:#93754A;
--accent-color:#777;
	
/* TEMPLATE COLORS */
	accent-color:#777;
--dark-color:#ab1234;;
--light-color:#93754A;
--grey-color:#e3e3e3;
--light-grey-color:#fafafa;
--primary-color:#93754A;
--light-primary-color:#f3eee8;

/* FONTS */
--body-font:"Inter", sans-serif;
--heading-font:"Inter", sans-serif;

}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  	font-family: var(--body-font);
  	font-size: 18px;
  	font-weight: 300;
  	line-height: 1.8;
	color:#333;
  	background:var(--cream-bg);
  	margin: 0;
}

body.no-scroll {
    overflow: hidden;
}

a {
  color: var(--dark-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}

p>a {
  color: var(--primary-color);
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 5px;
  margin-bottom: 0;
}
ul li, ol li {
  margin-bottom: 5px;
  outline: 0;
}
ul li.active a{
  color: var(--dark-color);
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 2rem;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}
figure {
  margin: 0;
}
img {
  	display: inline-block;
  	border: 0;
  	max-width: 100%;
  	height: auto;
  	vertical-align: middle;
}
::selection {
  	background: var(--primary-color);
  	color: var(--light-color);
  	text-shadow: none;
	background-size: cover;
}
::-moz-selection {
  	background: var(--primary-color);
  	color: var(--light-color);
  	text-shadow: none;
}

::-webkit-input-placeholder {
    color: #7A7A7A; /* WebKit browsers */
}
:-ms-input-placeholder {
    color: #7A7A7A;/* Internet Explorer 10+ */
}

/* Typography */
/*----------------------------------------------*/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--heading-font);
  color: var(--dark-color);
  line-height: 1.2;
}
h1.light, .h1, h2.light, .h2, h3.light, .h3, h4.light, .h4, h5.light, .h5, h6.light, .h6 {
  color: var(--light-color);
}
h1, h2, h3 {
  margin: 25px 0;
  text-transform: capitalize;
}
h5, h6 {
  letter-spacing: 1px;
}
h1, .h1 {
  font-size: 3em;
  line-height: 1.4;
}
h2, .h2 {
  font-size: 2em;
  line-height: 1.4;
}
h3, .h3 {
  font-size: 1.4em;
  line-height: 1.4;
}
h4, .h4 {
  font-size: 1.1em;
  line-height: 1.4;
}
h5, .h5 {
  font-size: .83em;
  line-height: 1.25;
}
h6, .h6 {
  font-size: .67em;
  line-height: 1.1;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
p {
   font-family: var(--body-font);
   font-size: 18px;
   line-height: 1.8;
   margin: 0 0 20px 0;
}
p.dark {
    color: var(--dark-color);
}
p.light {
    color: var(--light-color);
}
p:empty {
  display: none;
}
small {
  font-size: 85%;
}
mark {
  background-color: var(--grey-color);
  padding: 0.28rem;
}
dfn, cite, em, i {
  font-style: italic;
}
::placeholder {
    color: var(--grey-color);
}

/*----------------------------------------------*/
/* 2.1 Floating & Alignment */
/*----------------------------------------------*/

.align-left {
  float: left;
  text-align: left;
}
.align-right {
  float: right;
  text-align: right;
}
.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/**::after,*/
.container::after,
.row::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/** Text Align
--------------------------------------------------------------*/
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lead {
  font-size: 120%;
  line-height: 1.7em;
}
.text-lead strong {
  font-size: 115%;
  font-weight: 500;
}
.text-muted {
  color: var(--primary-color);
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/*------------------------------------------------
/* 2.3 Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 50px;
    padding: 6px 15px;
    background-color: var(--light-background-color);
    border: 1px solid var(--grey-color);
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box; 
  }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 130px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--grey-color);
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; 
}
fieldset {
  padding: 0;
  border-width: 0; 
}
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline;
  margin-left: .5rem;
  font-weight: normal; }

/*------------------------------------------------
/* 2.4 Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }

/*------------------------------------------------
/* 2.5 Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  border-radius: 4px; 
  background-color: var(--accent-color);
  color: var(--light-color);
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: normal; 
  }

/*------------------------------------------------
/* 2.6 Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
   }
th:first-child,
td:first-child {
  padding-left: 0; 
  }
th:last-child,
td:last-child {
  padding-right: 0; 
  }

/*------------------------------------------------
/* 2.7 Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,

/*------------------------------------------------
/* 2.8 Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; 
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; 
}
.u-pull-right {
  float: right; 
}
.u-pull-left {
  float: left; 
}
.list-icon i {
  margin-right: 10px;
}
.list-unstyled {
  list-style: none;
}
.txt-fx .letter {
  opacity: 0;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.overflow-hidden {
    overflow: hidden;
}
.hide {
    display: none !important;
}

/* display flex utilities */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.justify-content-end {
  -ms-flex-pack: justify !important;
  justify-content: end !important;
}
.justify-content-center {
  -ms-flex-pack: justify !important;
  justify-content: center !important;
}
.justify-content-evenly {
  -ms-flex-pack: justify !important;
  justify-content: space-evenly !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
/* disable selction in section title */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/*------------------------------------------------
/* 2.9 Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* -Row Border
------------------------------------------*/
hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-width: 0;
  border-top: 1px solid var(--grey-color); 
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button {
  background-image: none;
  background: var(--dark-color);
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 0.75em 1.5em;
  margin-top: 15px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #cfbca2;
  z-index: 1;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:hover,
.btn:focus,
	input[type="button"]:focus,
	input[type="button"]:hover,
	input[type="submit"]:focus,
	input[type="submit"]:hover,
	input[type="reset"]:focus,
	input[type="reset"]:hover,
	input[type="file"]:focus,
	input[type="file"]:hover,
	button:focus,
	button:hover {
  text-decoration: none;
  outline: 0;
}
.light .btn:hover {
  color: var(--light-color);
}
.btn:last-child {
  margin-right: 0;
}
.btn:active,
.btn.btn-outline-light:active,
.btn.btn-outline-dark:active,
.btn.btn-outline-accent:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="file"]:active,
button:active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.65em;
}
.btn.btn-medium {
  padding: 1.1em 3.0em;
  font-size: 1.0em;
}
.btn.btn-large {
  padding: 1.5em 5.5em;
  font-size: 1.3em;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 6px;
}
.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0,0,0,1);
  color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-outline-accent {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.btn.btn-outline-accent:hover {
  background: var(--accent-color);
  color: var(--light-color);
}
.btn.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--light-color);
}
.btn.btn-outline-light:hover {
  border-color: rgba(0,0,0,0.5);
  color: var(--dark-color);
}
.btn.btn-outline-primary {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--dark-color);
}
.btn.btn-outline-primary:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}
.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  text-align: center;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-dark {
  background: var(--light-color);
  color: var(--dark-color);
}
.btn.btn-dark:hover {
  background: var(--primary-color);
}
.btn.btn-light {
  background: var(--light-color);
  color: #ab1234;
}
.btn.btn-light:hover {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-grey {
  background: var(--grey-color);
  color: var(--dark-color);
}
.btn.btn-grey:hover {
  background: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-accent {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.btn.btn-accent:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}
.btn.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left{
  text-align: left;
  display: block;
}
.btn-center{
  text-align: center;
  display: block;
}
.btn-right{
  text-align: right;
  display: block;
}

/* - Buttons With Arrow
------------------------------------------------------------- */
.btn-wrap {
  font-weight: 500;
  text-transform: capitalize;
  width: fit-content;
}
.btn-wrap:hover i.icon.icon-arrow-io {
  transform: translate3d(5px,0,0) rotate(-180deg);
}
.btn-wrap i.icon.icon-arrow-io {
  display: inline-block;
  font-size: 1.4em;
  transform: rotate(-180deg);
  transition: transform 0.3s ease-out;
}

/*----------------------------------------------*/
/* 2.11 Images */
/*----------------------------------------------*/

/*--- Image Dimension
-----------------------------------------------*/
img.video-image,
img.post-image,
img.insta-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
img.large-image {
    width: 100%;
    height: 660px;
    object-fit: cover;
}
img.small-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
img.single-image {
    width: 100%;
    height: 810px;
    object-fit: cover;
}
img.brand-image {
    max-width: 100%;
    height: auto;
    margin: 20px;
}

/*--- Image Shape
-----------------------------------------------*/
img.image-rounded {
   border-radius: 10px;
}
img.image-circle {
   border-radius: 50%;
}


/* site-banner */
/*----------------------------------------------*/
.site-banner{
  text-align: center;
}
.site-banner h1.page-title{
    font-size: 7.2em;
    font-weight: 800;
    line-height: 1em;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--dark-color);
}
@media screen and (max-width: 1099px) {
  .site-banner h1.page-title{
      font-size: 6em;
  }
}
@media screen and (max-width: 768px) {
  .site-banner h1.page-title{
      font-size: 4.6em;
  }
}
@media screen and (max-width: 600px) {
  .site-banner h1.page-title{
      font-size: 3.2em;
  }
}

/* Hero section
/*----------------------------------------------*/
.hero-section {
    position: relative;
}
.hero-section h2 {
    font-size: 1.8em;
    text-transform: none;
}

/*--- Section Title
-----------------------------------------------*/
.section-header {
    width: 100%;
    padding-bottom: 20px;
}
.section-title {
    font-size: 2.6em;
    font-weight: 700;
}

/*--- Widget Title
-----------------------------------------------*/
h5.widget-title {
    letter-spacing: 0;
    font-size: 1.3em;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}
.padding-2xlarge {
  padding-top: 15em;
  padding-bottom: 15em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0;
}
.no-margin {
  margin: 0;
}
.no-margin-bottom {
  margin-bottom: 0 !important;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
}
.margin-large {
  margin-top: 6em;
  margin-bottom: 6em;
}
.margin-xlarge {
  margin-top: 7.5em;
  margin-bottom: 7.5em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large,
  .margin-xlarge {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* - Section Bg Colors
--------------------------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}
.bg-accent {
  background-color: var(--accent-color) !important;
}
.bg-grey {
  background-color: var(--grey-color) !important;
}
.bg-dark-grey {
  background-color: var(--dark-grey-color) !important;
}
.bg-light-grey {
  background-color: var(--light-grey-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-light-primary {
  background-color: var(--light-primary-color) !important;
}



/* - Content Border
--------------------------------------------------------------*/
table.border-bottom tr {
    border-bottom: 1px solid rgba(0,0,0,0.125);
}
.content-light table.border-bottom tr {
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.content-light .border-right {
   border-bottom: 1px solid rgba(255,255,255,0.3);
}
.border-bottom {
   border-bottom: 1px solid rgba(0,0,0,0.125);
}
.content-light .border-bottom {
   border-bottom: 1px solid rgba(255,255,255,0.3);
}
.border-left {
   border-left: 1px solid rgba(0,0,0,0.125);
}
.content-light .border-left {
   border-left: 1px solid rgba(255,255,255,0.3);
}

/* - Content Border None
--------------------------------------------------------------*/
.no-border-top {
   border-top: none !important;
}
.no-border-right {
   border-right: none !important;
}
.no-border-bottom {
   border-bottom: none !important;
}
.no-border-left {
   border-left: none !important;
}

/*----------------------------------------------*/
/* 3.2 Text Highlights */
/*----------------------------------------------*/
.highlight {
  background: var(--primary-color);
  color: var(--light-color);
  padding: 1px 5px;
}

/*--------------------------------------------------------------
/** 4.1 General Tabs
--------------------------------------------------------------*/
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

/* breadcrumbs */
.breadcrumbs span {
  display: inline-block;
}

/* -- Header Top
--------------------------------------------------------------*/
.secondary-nav,
.secondary-nav p {
    line-height: 2.5em;
 }
.secondary-nav li {
    padding-right: 10px;
}
.secondary-nav li:last-child {
    padding-right: 0;
}
.secondary-nav a {
    color: var(--accent-color);
}
.secondary-nav a:hover {
    color: var(--dark-color);
}
.secondary-nav ul,
.secondary-nav li,
.secondary-nav p {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    .header-contact, .shipping-purchase{
      display: none;
    }
}

/* submenu */
.stellarnav ul ul {
  background: var(--dark-color);
}
.stellarnav ul ul a {
  color: var(--light-color);
}
.stellarnav.desktop li.has-sub a{
  padding-right: 30px;
}
.menu-list a.item-anchor{
  text-transform: capitalize;
}
.menu-list a.item-anchor.active{
  color: var(--primary-color);
}
.menu-list a.item-anchor:hover{
  color: var(--primary-color);
}
.menu-item.has-sub .submenu a.item-anchor{
  padding-right: 15px;
}
.menu-list .submenu a.item-anchor:hover{
  color: var(--light-color);
  background-color: #343434;
}
.menu-list .submenu a.item-anchor.active{
  color: var(--light-color);
  background-color: #343434;
}

/* - Main Navigation
------------------------------------------------------------- */
#navbar ul.menu-list a {
    color: var(--dark-color);
    font-weight: 500;
    padding-left: 45px;
}
.main-menu .hamburger {
    display: none;
}
.main-menu.stellarnav>ul>li>a {
    padding: 10px 30px;
    font-weight: 500;
    font-size: 17px;
    color: #191919;
}
.stellarnav li a{  
    color: var(--dark-color);
    font-weight: 500;
}
.stellarnav li.has-sub>a:after {
    content: none;
}
.stellarnav .menu-toggle,
.stellarnav.mobile.right .close-menu{
    font-size: 0;
}
.stellarnav .icon-close {
    width: 30px;
    height: 30px;
}
.stellarnav .menu-toggle span.bars span {
    width: 30px;
    height: 3px;
    background: var(--dark-color);
    margin: 0 0 5px;
    transition: 0.3s ease-in;
}
.stellarnav .menu-toggle:hover span.bars span {
    background: var(--primary-color);
}
.stellarnav.mobile.right>ul {
    z-index: 222;
    background-color: var(--dark-color);
}
.stellarnav.mobile i {
    display: none;
}
.stellarnav.mobile ul{
    color: white;
}
.stellarnav.mobile li a{
    color: var(--light-color);
    border-bottom: 1px solid var(--accent-color);
}
.stellarnav.mobile .submenu li a{
    border-bottom: 1px solid #5e5e5e;
}
.stellarnav.mobile .menu-item.has-sub .submenu{
    background-color: var(--light-color);
}
.stellarnav.mobile .submenu a{
    background-color: #343434;
}
.stellarnav.mobile .submenu a.active{
    color: var(--primary-color);
}
.stellarnav .icon-close:after, .stellarnav .icon-close:before{
    width: 30px;
}
.stellarnav a.dd-toggle .icon-plus:after, .stellarnav a.dd-toggle .icon-plus:before {
    border-bottom: solid 3px var(--light-color);
}

/*----- Billboard
--------------------------------------------------------------*/
#billboard .swiper-slide{
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
}

#billboard .swiper-slide {
  background-repeat: no-repeat;
}
.banner-content{
  width: 100%;
}

.banner-content .container{
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-title{
  font-size: 56px;
  line-height: 1.1;
  color: #ab1234;
  margin-bottom:20px;
	padding-left: 10px;
	padding-right: 10px;
}

@media (max-width:768px){

.banner-title{
  font-size:36px;
}

}

.banner-content p{
  font-size:18px;
  max-width:420px;
  margin-bottom:25px;
  color: white;

}

.btn-wrap{
  margin-top:10px;
}

@media (max-width: 768px) {
  #billboard .swiper-slide {
    min-height: 60vh;
  }
}


#billboard {
    position: relative;
}
#billboard .button-prev,
#billboard .button-next{
    font-size: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 12px;
    height: fit-content;
    z-index: 2;
    margin: auto;
    padding: 10px;
    background: rgba(255,255,255,0.4);
    color: #191919;
}
#billboard .button-prev{
    left: 0;
}
#billboard .button-next{
    right: 0;
}
#billboard .button-prev:hover,
#billboard .button-next:hover {
    color: var(--light-color);
    background-color: var(--primary-color);
}
#billboard .image-holder img.banner-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.main-swiper .banner-content {
    position: absolute;
    z-index: 5;
    width: 100%;
}
.banner-content h2.banner-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1em;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #ab1234;
}
.banner-content p {
    margin: 35px 0 60px;
}
.main-swiper .swiper-slide {
    height: 90vh;
    min-height: 700px;
}
.main-swiper .container {
    max-width: 1400px;
}
@media screen and (max-width: 1400px) {
  .banner-content h2.banner-title {
      font-size: 56px
  }
}
@media screen and (max-width: 1099px) {
  .banner-content h2.banner-title {
      font-size: 56px;
  }
}

@media screen and (max-width: 768px) {
  .banner-content h2.banner-title {
      font-size: 56px;
  }
}

@media screen and (max-width: 600px) {
  .banner-content h2.banner-title {
      font-size: 3.1em;
  }
}

/*----- Featured Products Section
--------------------------------------------------------------*/
.product-store .product-item {
    position: relative;
    margin-bottom: 30px;
}
.product-item img.product-image {
    background: var(--light-color);
    border: 1px solid var(--grey-color);
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
}
.product-item .cart-concern {
    background: var(--light-color);
    width: 80%;
    text-align: center;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 300px;
    z-index: 9;
    transition: 0.5s ease-out;
    padding: 20px 30px;
    opacity: 0;
}
.product-item:hover .cart-concern {
    bottom: 280px;
    opacity: 1;
}
i.icon.icon-arrow-io {
    font-size: 12px;
}
.cart-concern .cart-button button {
    background: none;
    color: var(--dark-color);
    height: auto;
    padding: 0;
    margin: 0;
}
.cart-concern .cart-button button i.icon {
    color: var(--dark-color);
}
.product-item .wishlist-btn i.icon.icon-heart {
    font-size: 20px;
    padding-left: 25px;
}
.product-item h3.product-title {
    font-size: 1.4em;
    margin: 0;
}
.product-item .item-price {
    font-size: 1.8em;
}

/*----- Best selling products -------*/
.tab-content {
    position: relative;
}
[data-tab-content] {
    opacity: 0;
    visibility: hidden;
    display: grid;
    transition: cubic-bezier(0.22, 0.78, 0.71, 1.01);
    transition-duration: 0.8s;
}
.active[data-tab-content] {
    opacity: 1;
    visibility: visible;
    height: auto;
}
.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.tabs .tab {
    font-weight: 500;
    color: var(--dark-grey-color);
    margin-right: 50px;
    cursor: pointer;
    transition: 0.2s all;
}
.tabs .tab.active,
.tabs .tab:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 991px) {
  #selling-products .tabs {
      flex-wrap: unset;
      overflow-x: scroll;
  }
}

/* About Us */
#about-us .about-image{
    border-radius: 8px;
}
#about-us .detail{
    padding: 0 60px;
}
@media screen and (max-width: 992px) {
  #about-us .detail{
      padding: 0;
  }
}

.about-banner{
	background:#EDD4A5; 
	padding:120px 20px;
}

.about-big-text{
	font-size:64px;
	font-weight:800;
	line-height:1.1;
	color:#4B0F1C;
	letter-spacing:1px;
}

.about-box{
	max-width:900px;
	margin:auto;
	padding:60px;
	border:1px solid #e3e3e3;
	background:#fff;
}

.about-box p{
	margin-bottom:20px;
	line-height:1.7;
	color:#555;
}

.about-intro{
	background:#F5EFE8;
}

.learn-box{
	margin-top:30px;
	padding:25px;
	border:1px solid #e5e5e5;
	background:#fff;
}

.learn-box h4{
	color:#4B0F1C;
	margin-bottom:10px;
}

.learn-btn{
	display:inline-block;
	margin-top:10px;
	padding:10px 20px;
	background:#93754A;
	color:white;
	text-decoration:none;
	font-weight:600;
}

/* 7.14 Styles Page --------*/
.jarallax.min-height300 {
    min-height: 300px;
}

/* -------- SHOP BY LENGTH SECTION ----------*/

.length-card img{
	width:100%;
	border-radius:12px;
}

.length-title{
	margin-top:20px;
	font-weight:700;
	letter-spacing:2px;
}

.length-btn{
	display:inline-block;
	margin-top:12px;
	padding:10px 22px;
	background:#4b3a32;
	color:white;
	border-radius:30px;
	text-decoration:none;
	font-size:14px;
}

.length-btn:hover{
	background:#000;
}

/* Bundle Promotion Section */

.bundle-section{
	position:relative;
	background-image:url(../assets/newimagesweb/nail-bundle.webp);
	background-size:cover;
	background-position:center;
	height:520px;
	display:flex;
	align-items:center;
	padding-left:8% ;
	color:white;
	margin-top:80px;
}

.bundle-overlay{
	max-width:500px;
}

.bundle-title{
	font-size:60px;
	font-weight:800;
	letter-spacing:2px;
	margin-bottom:15px;
	text-transform:uppercase;
}

.bundle-text{
	font-size:20px;
	margin-bottom:25px;
	line-height:1.5;
}

.bundle-btn{
	display:inline-block;
	background:#e6dfe8;
	color:#000;
	padding:12px 26px;
	border-radius:30px;
	font-weight:600;
	text-decoration:none;
}

.bundle-btn:hover{
	background:#000;
	color:#fff;
}

/* Custom-set Promotion Section */

#custom-feature .product-image{
	width:100%;
	height:320px;
	object-fit:cover;
	border-radius:10px;
}

#custom-feature .section-header{
	text-align:center;
	margin-bottom:50px;
}

#custom-feature .section-header p{
	max-width:500px;
	margin:auto;
	margin-top:10px;
}

#testimonials{
    background:#F5EFE8;
    padding-top:80px;
    padding-bottom:80px;
}

#testimonials .section-title{
    margin-bottom:60px;
}

/* Testimoninals */

.testimonial-card{
    padding:30px;
}

.stars{
    font-size:18px;
    margin-bottom:15px;
}

.testimonial-text{
    font-size:16px;
    line-height:1.6;
    margin-bottom:20px;
}

.testimonial-author{
    font-weight:600;
    letter-spacing:1px;
}


.social-links ul{
  	gap:15px;
  	margin-top:15px;
}

/* FAQ Section */
.faq-section{
	background:#F5EFE8;
}

.faq-item{
	border:1px solid #d9d3cc;
	margin-bottom:20px;
}

.faq-question{
	width:100%;
	text-align:left;
	padding:18px;
	background:#fff;
	border: thin;
	font-weight:700;
	color:#4B0F1C;
	cursor:pointer;
}

.faq-answer{
	padding:18px;
	background:#fff;
	border-top:1px solid #eee;
}

.application-section {
    text-align: center;
    padding: 60px 20px;
}

.application-title {
    font-size: 3rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Application Section */

.application-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.application-card img {
    width: 100%;
    border-radius: 10px;
}

.application-card h3 {
    margin-top: 18px;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.application-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 8px;
}

@media (max-width: 900px) {

.application-grid {
	grid-template-columns: repeat(2, 1fr);
}

}

@media (max-width: 500px) {

.application-grid {
    grid-template-columns: 1fr;
}

}

/* Bundle banner color */
.bundle-banner{
	background-color: #f5f2f2; 
    padding: 80px 20px;
    text-align: center;
}

.bundle-title{
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.bundle-list{
    list-style-position: inside;
    margin-bottom: 30px;
    line-height: 2;
    font-size: 1.3rem;
}

.bundle-note{
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
}

/* custom-sets section */

.custom-intro{
max-width: 420px;
margin: 15px 0;
}

.custom-option{
margin-top: 25px;
}

.option-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-top:10px;
}

.custom-note{
margin-top:20px;
font-size:0.9rem;
opacity:0.8;
}

.shipping-note{
font-size:0.95rem;
margin-bottom:15px;
gap:10px;
}

.product-breadcrumb{
font-size:0.9rem;
margin-bottom:10px;
}

.shop-header{
	background: #F5EFE8;
	padding-top:10px;
}

.shop-title{
font-size:3rem;
margin-bottom:30px;
}

.shop-controls{
border-top:1px solid #e6dede;
border-bottom:1px solid #e6dede;
padding:15px 0;
margin-bottom:40px;
}

/* Length section */
.product-store{
  padding:80px 0;
}

.length-section{
  margin-bottom:80px;
  width:100%;
}

.length-title{
  font-size:32px;
  margin-bottom:40px;
  color:#5a0d1b;
  font-weight:600;
}

.product-item{
  margin-bottom:40px;
}

.image-holder{
  width:100%;
}

.product-image{
  width:100%;
  height:auto;
  display:block;
}

/*----- Icon Box Section
--------------------------------------------------------------*/
#shipping-information {
    padding-bottom: 100px;
}
#shipping-information .icon-box {
    display: flex;
    align-items: baseline;
    border-right: 1px solid #EAEAEA;
    padding-right: 50px;
    margin-right: 50px;
}
#shipping-information .icon-box:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}
#shipping-information .icon-box i.icon {
    font-size: 1.5em;
    color: var(--primary-color);
    padding-right: 15px;
}
.icon-box h4.block-title {
    line-height: 1.2;
    font-weight: 400;
    margin: 20px 0;
}

/* FOOTER MAIN */
#footer{
background:#F5EFE8;
padding:80px 0 60px;
color:#4B0F1C;
border-top:1px solid #e5e0da;
}

/* footer headings */
#footer .widget-title{
color:#4B0F1C;
font-weight:700;
margin-bottom:20px;
}

/* footer text */
#footer p{
color:#4B0F1C;
font-size:15px;
line-height:1.6;
}

/* footer links */
#footer a{
	color:#93754A;
	text-decoration:none;
}

#footer a:hover{
	color:#4B0F1C;
}

/* menu spacing */
#footer .menu-list li{
	margin-bottom:10px;
}

/* subscribe form */
.subscribe-form input{
	flex:1;
	padding:10px;
	border:1px solid #ddd;
	background:white;
	height: 45px;
}

/* subscribe button */
.btn-subscribe{
	background:#4B0F1C;
	color:white;
	border:none;
	padding:0 20px;
	height: 40px;
	cursor:pointer;
	font-weight:600;
	align-items: center;
}

.btn-subscribe:hover{
	background:#93754A;
}

/* social icons */
.social-links i{
	color:#4B0F1C;
	font-size:18px;
	margin-right:15px;
}

.social-links i:hover{
	color:#93754A;
}

/* bottom bar */
#footer-bottom{
	background:#4B0F1C;
	color:white;
	padding:15px 0;
}

#footer-bottom a{
	color:#93754A;
}

/*----- Footer Bottom Section
--------------------------------------------------------------*/
#footer-bottom{
  margin-bottom: 30px;
}
#footer-bottom p{
    margin-bottom: 0;
}
.payment-method {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
