html {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    margin: 0;
    font-family: 'Heebo', sans-serif;
}

.container {
    width: 1440px;
    margin: auto;
    max-width: 90%;
}

/* Header Section */

header {
    height: 70px;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}

header section.logo {
    font-size: 27px;
}

header section.logo span.blue-dot {
    background-color: #CA7364;
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 10px;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin-left: 26px;
}

header nav ul li.menu-icon {
    display: none;
}

header nav ul li:first-of-type {
    margin-left: 0px;
}

header nav ul li a {
    color: #3E3E3E;
    text-decoration: none;
    font-size: 16px;
}

header nav ul li a:hover {
    color: #CA7364;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

header .container .logo img {
    height: 36px;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* Header Section */

/* Mega Menu section */

#myLinks {
    display: none;
}

 /* Navbar container */
.navbar {
  overflow: hidden;
  font-family: 'Heebo', sans-serif;
  font-weight: bold;
}

/* Links inside the navbar */
.navbar  a {
  float: left;
  font-size: 16px;
  color: #3E3E3E;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #3E3E3E;
  padding: 14px 16px;
  background-color: inherit;
  font: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
  font-weight: bold;
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
    color: #CA7364;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  padding-left: 10px;
  width: 100%;
  left: 0;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content h3 {
    padding-left: 10px;
    color: #CA7364;
}

.dropdown-content .column a {
    padding-left: 10px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropdown-content a {
  display: block;
  border-radius: 10px;
  width: 75%;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 16.66%;
  background-color: white;
}

/* Style links inside the columns */
.column a {
  float: none;
  color: black;
  padding: 16px 16px 16px 5px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background color on hover */
.column a:hover {
  background-color: #FFEFEF;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  padding: 0 0 10px 0;
} 

/* Mega Menu Section End */

/* Hero Section */

section.hero {
    position: relative;
}

section.hero img {
    width: 100%;
    height: auto;
    max-height: 900px;
}

section.hero .hero-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

section.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

section.hero h1,
section.hero p {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 495px;
}

section.hero h1 {
    font-weight: 400;
    font-size: 50px;
    line-height: 56px;
}

section.hero p {
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
}

section.hero button {
    width: 200px;
    height: 50px;
    background-color: #CA7364;
    border-radius: 25px;
    color: white;
    border: 1px solid #CA7364;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

section.hero button:hover {
    background-color: white;
    border: 1px solid #CA7364;
    cursor: pointer;
    color: #CA7364;
}

/* Hero Section */

/* Best Sellers Section */

section.best-sellers {
    padding-top: 90px;
}

section.best-sellers h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 34px;
    line-height: 42px;
    text-align: center;
    font-weight: 400;
}

section.best-sellers hr {
    margin: auto;
    width: 100px;
    border: none;
    height: 8px;
    background-color: #CA7364;
    margin-bottom: 76px;
    border-radius: 10px 10px 10px 10px;
}

section.best-sellers .product-slider .container {
    display: flex;
    justify-content: space-around;
}

section.best-sellers .product-slider .product {
    border: 0;
    border-radius: 30px;
    text-align: center;
    width: 33%;
    padding: 40px;
    margin: 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

section.best-sellers .product-slider .product:hover {
    cursor: pointer;
}

section.best-sellers .product-slider .product .product-info {
    margin-top: 30px;
}

section.best-sellers .product-slider .product img {
    max-width: 100%;
    border-radius: 30px;
}

section.best-sellers .product-slider .product h5 {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #CA7364;
    margin-top: 0;
    margin-bottom: 10px;
}

section.best-sellers .product-slider .product h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 10px;
}

section.best-sellers .product-slider .product .price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

section.best-sellers .product-slider .product .price h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 0px;
}

section.best-sellers .product-slider .product .price.discount h3 {
    color: #EC1C1C;
}

section.best-sellers .product-slider .product .price span.original-price {
    margin: 0 10px;
    font-size: 16px;
    line-height: 24px;
    color: #9B9B9B;
    text-decoration: line-through;
}

section.best-sellers .product-slider .product button {
    height: 44px;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 25px;
    width: 220px;
    max-width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

section.best-sellers .product-slider .product:hover button {
    border: 1px solid #CA7364;
    background-color: #CA7364;
    color: white;
    cursor: pointer;
}

/* Best Sellers Section */

/* Newsletter Section */

section.newsletter {
    background-color: #FFEFEF;
    width: 100%;
    max-width: 100%;
    margin: 80px auto;
    padding: 250px 0;
    text-align: center;
}

section.newsletter h3 {
    font-weight: 400;
    font-size: 75px;
    line-height: 42px;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 2px;
    padding-bottom: 30px;
}

section.newsletter p {
    font-size: 26px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

section.newsletter input[type="email"] {
    width: 520px;
    height: 60px;
    border-radius: 25px 0 0 25px;
    border-right: none;
    padding: 0;
    padding-left: 24px;
    font-size: 14px;
    line-height: 21px;
    border-width: 1px solid #CA7364;
    box-sizing: border-box;
    vertical-align: middle;
}

section.newsletter input {
    border: 1px solid #CA7364;
    vertical-align: middle;
}

 input[type="email"]:focus {
    border: 2px solid #CA7364;
    outline: none;
}

section.newsletter button[type="submit"] {
    background-color: #CA7364;
    border: 1px solid #CA7364;
    height: 60px;
    border-radius: 0 25px 25px 0;
    padding: 0 36px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
    vertical-align: middle;
}

section.newsletter button[type="submit"]:hover {
    background-color: white;
    border: 1px solid #CA7364;
    color: #CA7364;
    cursor: pointer;
    vertical-align: middle;
}

/* Newsletter Section */

/* Footer Section */

footer {
    background-color: #3E3E3E;
    color: white;
    padding: 60px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    width: 950px;
    max-width: 100%;
    border-bottom: 1px solid rgba(250, 250, 250, 0.3);
    padding-bottom: 50px;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 25%;
}

footer ul li.list-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
}

footer ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    color: #CA7364;
    
}

footer ul li:last-of-type {
    margin-bottom: 0px;
}

/* Footer Section */

/* Copyright Section */

section.copyright {
    text-align: center;
    color: #E0E0E0;
    background-color: #3E3E3E;
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

/* Copyright Section */




/* Mobile phone dropdown */

header nav #myLinks a {
    display: none;
}

nav a.icon {
  display: block;
  right: 0;
  top: 0;
}










/* Mobile phone dropdown */








/* ############################################ */
/* Styles for Smaller Desktop */
/* ############################################ */

@media screen and (max-width: 1440px) {

    .container {
        width: 1180px;
        max-width: 90%;
    }

    section.hero h1,
    section.hero p {
        margin-bottom: 12px;
    }

    section.hero h1 {
        font-size: 44px;
        line-height: 50px;
    }

    section.hero p {
        font-size: 18px;
        line-height: 26px;
    }

    section.hero button {
        font-size: 14px;
    }

    section.best-sellers .product-slider .product h5 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    section.best-sellers .product-slider .product h4 {
        font-size: 16px;
        margin-bottom: 8px; 
    }

    section.best-sellers .product-slider .product .price {
        margin-bottom: 6px;
    }

    section.best-sellers .product-slider .product .price h3 {
        font-size: 24px;
        line-height: 30px;
    }

    section.best-sellers .product-slider .product .price span.original-price {
        font-size: 14px;
        line-height: 21px;
    }

    section.best-sellers .product-slider .product button {
        height: 40px;
        width: 180px;
        font-size: 14px;
        line-height: 21px;
    }

    section.newsletter {
        width: 880px;
        margin: 70px auto;
        padding: 50px 0;
    }

    section.newsletter h3 {
        font-size: 22px;
    }

    section.newsletter p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 15px;
    }

    section.newsletter input[type="email"] {
        font-size: 12px;
        line-height: 18px;
    }

    section.newsletter button[type="submit"] {
        font-size: 12px;
        line-height: 18px;
    }

    footer {
        padding: 50px 0;
    }

    footer .container {
        width: 1180px;
        max-width: 90%;
    }

    footer ul li.list-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    footer ul li {
        font-size: 14px;
        line-height: 21px;
    }

    section.copyright {
        padding: 14px 0;
        font-size: 14px;
    }

}

/* ############################################ */
/* Styles for Tablet */
/* ############################################ */

@media screen and (max-width: 960px) {

    .container {
        width: 92%;
        max-width: 92%;
    }

    header .navbar {
        display: none;
    }

    header nav ul li.menu-icon {
        display: inline-block;
    }

    section.hero h1 {
        font-size: 40px;
        line-height: 46px;
    }

    section.hero p {
        font-size: 16px;
        line-height: 24px;
    }

    section.hero button {
        font-size: 14px;
    }

    section.best-sellers h2 {
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 38px;
    }

    section.best-sellers .product-slider .product h4 {
        font-size: 13px;
        margin-bottom: 6px; 
    }

    section.best-sellers .product-slider .product .price {
        margin-bottom: 6px;
    }

    section.best-sellers .product-slider .product .price h3 {
        font-size: 16px;
    }

    section.best-sellers .product-slider .product .price span.original-price {
        font-size: 9px;
    }

    section.best-sellers .product-slider .product button {
        height: 36px;
        width: 146px;
        font-size: 12px;
        line-height: 18px;
    }

    section.newsletter {
        width: 100%;
        margin: 48px auto;
    }

    footer .container {
        width: 92%;
        max-width: 92%;
    }

    /* menu */

    #myLinks {
        position: fixed;
        overflow: hidden;
        width: 100%;          
        max-width: 100%;
        margin: auto;
        background-color: white;
        height: 350px;
        color: white;
        z-index: 9;
        box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    }

    #myLinks a {
        width: 100%;
        float: left;
        overflow: hidden;
        color: black;
        padding: 20px;
        background-color: white;
        text-decoration: none;
    }

    #myLinks a:hover{
        color: #CA7364;
        float: left;
        padding: 20px;
        background-color: #FCEEEF;
        text-decoration: none;
    }

}

/* ############################################ */
/* Styles for Smaller Tablet */
/* ############################################ */

@media screen and (max-width: 750px) {

    .container {
        width: 92%;
        max-width: 92%;
    }

    section.best-sellers .product-slider .container {
        flex-wrap: wrap;
    }

    section.best-sellers .product-slider .product {
        width: 50%;
        margin-bottom: 24px;
    }

    section.best-sellers .product-slider .product:last-of-type {
        margin-bottom: 0px;
    }

    /* menu */

    #myLinks {
        position: fixed;
        overflow: hidden;
        width: 100%;          
        max-width: 100%;
        margin: auto;
        background-color: white;
        height: 350px;
        color: white;
        z-index: 9;
        box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    }

    #myLinks a {
        width: 100%;
        float: left;
        overflow: hidden;
        color: black;
        padding: 20px;
        background-color: white;
        text-decoration: none;
    }

    #myLinks a:hover{
        color: #CA7364;
        float: left;
        padding: 20px;
        background-color: #FCEEEF;
        text-decoration: none;
    }
    
}

/* ############################################ */
/* Styles for Smaller Mobile */
/* ############################################ */

@media screen and (max-width: 576px) {

    .container {
        width: 92%;
        max-width: 92%;
    }

    header section.logo {
        font-size: 18px;
    }

    header .container .logo img {
    height: 25px;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* menu */

    #myLinks {
        position: fixed;
        overflow: hidden;
        width: 100%;          
        max-width: 100%;
        margin: auto;
        background-color: white;
        height: 330px;
        color: white;
        z-index: 9;
        box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    }

    #myLinks a {
        width: 100%;
        float: left;
        overflow: hidden;
        color: black;
        padding: 20px;
        background-color: white;
        text-decoration: none;
    }

    #myLinks a:hover{
        color: #CA7364;
        float: left;
        padding: 20px;
        background-color: #FCEEEF;
        text-decoration: none;
    }

  


  

  

 

    
















    /* menu */

    section.hero .hero-content {
        position: initial;
        text-align: center;
        margin-top: 26px;
    }

    section.hero .container {
        align-items: center;
    }

    section.hero h1,
    section.hero p {
        margin-bottom: 32px;
    }

    section.hero h1 {
        font-size: 32px;
        line-height: 38px;
        color: black;
    }

    section.hero p {
        display: none;
    }

    section.best-sellers .product-slider .product {
        width: 100%;
        margin-bottom: 24px;
    }

    section.best-sellers .product-slider .product:last-of-type {
        margin-bottom: 0px;
    }

    section.best-sellers .product-slider .container {
        flex-wrap: wrap;
    }

    section.best-sellers .product-slider .product h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    section.best-sellers .product-slider .product .price h3 {
        font-size: 20px;
    }

    section.best-sellers .product-slider .product .price span.original-price {
        font-size: 11px;
    }

    section.best-sellers .product-slider .product button {
        height: 36px;
        width: 190px;
        max-width: 100%;
        font-size: 12px;
        line-height: 18px;
    }

    section.newsletter {
        margin: 64px auto;
        padding: 44px 0;
    }

    section.newsletter input[type="email"] {
        width: 210px;
    }

    section.newsletter button[type="submit"] {
        padding: 0 20px;
    }

    footer {
        padding: 48px 0;
    }

    footer .container {
        flex-wrap: wrap;
        align-items: center;
    }

    footer ul {
        width: 100%;
        margin-bottom: 32px;
        text-align: center;
    }

    footer ul:last-of-type {
        margin-bottom: 0px;
    }































    

}