*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
ul li{
    list-style: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
body{
    font-family: "Roboto", sans-serif;
}
.container{
    max-width: 810px;
    padding: 0px 15px;
    margin: 0 auto;
}
header {
    padding: 20px 0px;
    background-color: #09b3aa;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 40px;
    font-weight: 500;
    color: #fcd917;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.logo img{
    max-width: 130px;
}
main{
    padding: 80px 0px;
}
.sidebar{
    max-width: 380px;
    width: 100%;
}
.gift-categories {
    background-color: #ffe9e9;
    border-radius: 15px;
    padding: 70px 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    
  }
  
  .gift-categories h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .gift-categories ul {
    list-style-type: none;
    padding: 0;
  }
  
  .gift-categories li {
        padding: 10px 0px;
        border-bottom: 1px dashed #fff;
    }
  .gift-categories li:last-child{
    padding-bottom: 0px;
    border-bottom: none;
  }
  .gift-categories a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
  }
  
  .gift-categories a:hover {
    color: #000;
    font-weight: bold;
    cursor: pointer;
  }
  .main-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.content-wrapper{
    flex: 1;
}
.content-wrapper img {
    width: 100%;
}
.gift-categories.sm-padding{
    padding: 30px;
}
footer{
    background-color: #24b7b9;
    padding: 40px 0px;
    color: white;
    font-size: 18px;
    line-height: 1.6;
}
.ftr-nav li a{
    color: #fff;
    text-decoration: none;
}

.gift-guide {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(70px);
}
.bubble {
    background-color: #e4002b;
    border-radius:100px 100px 0px 100px;
    padding: 15px 40px;
    position: relative;
    color: white;
    font-family: 'Arial', sans-serif;
    display: inline-block;
    max-width: 300px;
    text-align: right;
}

.title {
    display: block;
    font-size: 35px;
    font-weight: 500;
}

.subtitle {
    display: block;
    font-size: 35px;
    font-weight: bold;
    margin: 2px 0 0px;
}

.year {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.image-wrapper a {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}
.image-wrapper .ads-image {
    border: 2px solid #d1d2d4;
}

.image-wrapper img{
    width: 100%;
}

.header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gift-categorie-select .select{
    display: none;
}
.gift-categories h3.mobile-cat{
    display: none;
}
@media screen and (max-width: 768px) {
    .logo img {
        max-width: 80px;
    }
    .logo {
        font-size: 30px;
    }
    .title {
        font-size: 20px;
    }
    .subtitle {
        font-size: 20px;
    }
    .gift-guide {
        transform: translateY(0px);
    }
    .bubble {
        padding: 10px 40px;
    }
    .gift-categories {
        padding: 30px;
    }
    .sidebar {
        max-width: 260px;
    }
}

@media screen and (max-width: 640px) {
    .gift-categories {
        padding: 0px;
    }
    .main-wrapper {
        flex-direction: column;
    }
    .sidebar {
        max-width: 100%;
    }
    .sidebar .gift-categories {
        background: transparent;
        box-shadow: none;
    }
    .sidebar .gift-categories h3{
        display: none;
    }
    .gift-categories h3.mobile-cat {
        display: block;
        font-weight: 800;
        font-size: 35px;
        padding-left: 30px;
    }
    .gift-categorie-select .select {
        padding: 15px 30px;
        font-size: 35px;
        font-weight: 800;
        background: #ffe9e9;
        border-radius: 100px;
    }
    .gift-categorie-select {
        position: relative;
    }
    .sidebar .gift-categories ul {
        list-style-type: none;
        padding: 0;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 15px 30px;
        background: #ffe9e9;
        width: 100%;
        border-radius: 15px;
        margin-top: 10px;
        height: 0px;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
    }
    .gift-categorie-select .select {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .gift-categorie-select .select img{
        max-width: 40px;
    }
    .sidebar .gift-categories ul.active {
        height: auto;
        overflow: visible;
        opacity: 1;
        transition: 0.5s;
        transform: translateY(0px);
    }
    .select.rotate img {
        transform: rotateX(180deg);
    }
    .gift-categories a {
        text-decoration: none;
        color: #000;
        font-size: 20px;
    }
    main {
        padding: 70px 0px;
    }
}

@media screen and (max-width: 480px) {
    main {
        padding: 50px 0px;
    }
    .logo img {
        max-width: 50px;
    } 
    .logo {
        font-size: 23px;
    }
    .bubble {
        padding: 10px 30px;
    }
    .title {
        font-size: 16px;
    }
    .subtitle {
        font-size: 16px;
    }
    .gift-categories h3.mobile-cat {
        font-size: 25px;
    }
    .gift-categorie-select .select {
        font-size: 20px;
        padding: 15px 20px;
    }
    
}
@media screen and (max-width: 350px) {
    .logo span {
        display: none;
    }
}