/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-01: #3d3d3d;
    --gray-02: #fafafa;
    --orange: #fe4d00;
    --red: #ff0000;
    --white-coffee: #e8e2da;

    --tag-guide: #ddbfec;
    --tag-reviews: #b4d3ff;
    --tag-best: #b7d4d8;
    --tag-wellness: #e1f5b3;
    --tag-home: #ffc9a0;
    --tag-accessories: #e8e2da;
    --tag-clothing: #bfd2ec;
    --tag-comparison: #f9fd9e;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1360px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* Typography */
.section-title {
    font-family: 'DM Serif Text', serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 68px;
    color: var(--black);
    margin-bottom: 40px;
}

.card-title-large {
    font-family: 'DM Serif Text', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 48px;
    color: var(--black);
}

.card-title {
    font-family: 'DM Serif Text', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--black);
}

.text-body,
.deal-text p,
.deal-card p,
.card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--gray-01);
    margin: 0;
}

.deal-text h3,
.deal-card h3,
.must-have-item h4,
.review-item h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--black);
}

/* Header */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
}

.header .navbar {
    background: var(--white);
    padding: 21.5px 0;
    min-height: 79px;
}

.header .navbar .container {
    position: relative;
    display: flex;
    align-items: center;
}

.header .navbar-nav {
    flex-direction: row;
    gap: 8px;
}

.header .nav-left,
.header .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .nav-item {
    margin: 0;
}

.header .nav-link {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
}

.header .nav-link:hover {
    color: var(--black);
    opacity: 0.7;
}

.header .navbar-brand.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.header .logo {
    height: 47px;
    width: auto;
}

.header .search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .search-btn:hover {
    opacity: 0.7;
}

.header .search-btn img {
    width: 24px;
    height: 24px;
}

.header .navbar-toggler {
    border: none;
    padding: 0;
    background: transparent;
}

.header .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.header .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Offcanvas Menu */
.offcanvas {
    width: 100vw !important;
    background: var(--white);
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.offcanvas-header .search-btn-mobile {
    background: none;
    border: none;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    order: 1;
}

.offcanvas-header .search-btn-mobile img {
    width: 24px;
    height: 24px;
}

.offcanvas-header .offcanvas-title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    order: 2;
}

.offcanvas-header .logo {
    height: 35px;
    width: auto;
}

.offcanvas-header .btn-close {
    font-size: 20px;
    order: 3;
}

.offcanvas-body {
    padding: 0;
}

.navbar-nav.mobile-nav {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-nav .mobile-nav .nav-item {
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
}

.navbar-nav.mobile-nav .nav-link {
    padding: 12px 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.navbar-nav.mobile-nav .nav-link::after {
    content: '›';
    font-size: 24px;
    color: var(--black);
    font-weight: 300;
}

.navbar-nav.mobile-nav .nav-link:hover {
    background-color: #f5f5f5;
    color: var(--black);
}

/* Main Content Spacing */
main {
    padding-top: 30px;
}

main>section {
    margin-bottom: 80px;
}

/* Hero Section */
.hero {
    margin-bottom: 60px;
}

.hero-card-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-image,
.card-image-big,
.card-image-medium,
.card-image-small,
.card-image-tall,
.deal-image,
.card-image-apparel {
    border-radius: 12px;
    overflow: hidden;
}

.card-image {
    height: 400px;
}

.card-image img,
.card-image-big img,
.card-image-medium img,
.card-image-small img,
.card-image-tall img,
.deal-image img,
.card-image-apparel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: var(--gray-01);
}

.tag-guide {
    background: var(--tag-guide);
}

.tag-reviews {
    background: var(--tag-reviews);
}

.tag-best {
    background: var(--tag-best);
}

.tag-wellness {
    background: var(--tag-wellness);
}

.tag-home {
    background: var(--tag-home);
}

.tag-accessories {
    background: var(--tag-accessories);
}

.tag-clothing {
    background: var(--tag-clothing);
}

.tag-comparison {
    background: var(--tag-comparison);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--gray-01);
}

.meta-item .icon {
    width: 16px;
    height: 16px;
}

/* Hero Side Cards */
.hero-cards-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-card-small {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.hero-card-small .card-image-small {
    width: 136px;
    min-width: 136px;
    height: 136px;
    flex-shrink: 0;
}

.hero-card-small .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
}

.hero-card-small .card-title {
    font-size: 24px;
    line-height: 32px;
}

/* Featured Section */
.featured {
    margin-bottom: 60px;
}

.view-more-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.view-more-link:hover {
    color: var(--black);
    text-decoration: underline;
}

.featured-card-big {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.card-image-big {
    height: 400px;
}

.featured-card-medium {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-image-medium {
    height: 277px;
}

.featured-carousel-wrapper {
    position: relative;
}

.featured-carousel-indicators {
    position: absolute !important;
    display: flex !important;
    bottom: 60px !important;
    left: 50% !important;
    margin-left: 40px !important;
    margin-bottom: 0 !important;
    justify-content: flex-start !important;
    gap: 6px !important;
}

.featured-carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 14px !important;
    background-color: var(--white-coffee) !important;
    border: none !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.featured-carousel-indicators button.active {
    background-color: var(--black) !important;
    width: 27px !important;
    height: 10px !important;
    border-radius: 14px !important;
}

.carousel-indicators {
    position: static;
    margin-top: 48px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--black);
    border: none;
    opacity: 1;
    margin: 0 4px;
}

.carousel-indicators button.active {
    background-color: var(--red);
    width: 56px;
    height: 4px;
    border-radius: 2px;
}

/* Ad Banner */
.ad-banner {
    margin-bottom: 60px;
}

.ad-banner-wrapper {
    background: url('img/adbanner.png') center center no-repeat;
    background-size: cover;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 449px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-content {
    position: relative;
    z-index: 1;
    max-width: 538px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.ad-logo {
    width: 144px;
    height: 53px;
    margin-bottom: 0;
}

.ad-title {
    font-family: 'DM Serif Text', serif;
    font-size: 76px;
    font-weight: 400;
    line-height: 80px;
    color: var(--black);
    margin: 0;
}

.ad-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 40px;
    color: var(--black);
    margin: 0;
}

.ad-code-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.ad-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    color: var(--gray-01);
    margin: 0;
}

.promo-code {
    background: var(--white);
    color: var(--orange);
    font-family: 'DM Sans', sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 40px;
    padding: 16px 42px 20px;
    border-radius: 32px;
    display: inline-block;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.view-more {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--black);
    padding: 16px 0;
}

.view-more-mobile {
    display: block;
    width: 146px;
    margin: 40px auto 0;
    padding: 16px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--black);
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--black);
    border-radius: 48px;
    background: transparent;
    transition: all 0.3s ease;
}

.view-more-mobile:hover {
    background: var(--black);
    color: var(--white);
}

/* Trending Deals */
.deals-list .list-group,
.must-have-list.list-group {
    border: none;
    gap: 24px;
}

.deals-list .list-group-item,
.must-have-list .list-group-item {
    border: none;
    background: transparent;
    padding: 0;
}

.deals-list .list-group-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deal-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deals-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.deals-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.deal-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deal-image {
    height: 236px;
}

/* Best by Category */
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    color: var(--black);
}

/* Must Haves */
.must-have-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-image-tall {
    height: 312px;
}

.must-have-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.must-have-list.list-group {
    gap: 40px;
}

.must-have-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Apparel */
.apparel-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-image-apparel {
    height: 280px;
}

/* Top Brands */
.brand-logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Latest Reviews */
.latest-reviews {
    margin-bottom: 60px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item .card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 0;
}

.review-item h3 {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    position: relative;
}

.footer-content {
    padding: 64px 0 64px;
}

.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-subscribe h2 {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    text-align: left;
}

.footer-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--white);
    border-radius: 100px;
    padding: 3px 4px 3px 24px;
    gap: 8px;
}

.footer .subscribe-form input,
.footer .subscribe-form .form-control {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
    padding: 0;
    height: auto;
}

.footer .subscribe-form input::placeholder,
.footer .subscribe-form .form-control::placeholder {
    color: var(--gray-02);
}

.footer .subscribe-form input:focus,
.footer .subscribe-form .form-control:focus {
    box-shadow: none;
    background: transparent;
    color: var(--white);
}

.footer .subscribe-form button,
.footer .subscribe-form .btn {
    background: var(--white);
    border: none;
    border-radius: 100px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 12px;
}

.footer .subscribe-form button:hover,
.footer .subscribe-form .btn:hover {
    background: var(--orange);
}

.footer .subscribe-form button img,
.footer .subscribe-form .btn img {
    width: 24px;
    height: 24px;
}

.footer-disclaimer {
    background: var(--white-coffee);
    padding: 12px 0;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-disclaimer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--gray-01);
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-column ul,
.footer-column .list-unstyled {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 0;
    margin: 0;
}

.footer-column li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: var(--white-coffee);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--white-coffee);
    padding: 12px 0;
    text-align: center;
}

.disclaimer-banner p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black);
    margin: 0;
}

/* Featured Carousel */
.featured-carousel {
    padding: 60px 0;
    background: var(--white);
}

.carousel-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.carousel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.carousel-title {
    font-family: 'DM Serif Text', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 48px;
    color: var(--black);
    margin: 24px 0 16px;
}

.carousel-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--gray-01);
    margin-bottom: 0;
}

.carousel-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--black);
    margin-bottom: 56px;
}

.carousel-pagination {
    display: flex;
    gap: 6px;
}

.carousel-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-02);
    transition: all 0.3s ease;
}

.carousel-pagination .dot.active {
    width: 27px;
    border-radius: 5px;
    background: var(--black);
}

/* Newsletter Banner */
.newsletter-banner {
    background: var(--black);
    padding: 40px 0;
}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-title {
    font-family: 'DM Serif Text', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: var(--white);
    margin: 0;
}

.newsletter-form {
    width: 389px;
}

.newsletter-input-wrapper {
    position: relative;
    width: 100%;
}

.newsletter-form .form-control {
    width: 100%;
    height: 56px;
    padding: 17px 68px 17px 24px;
    border: 1px solid var(--white);
    border-radius: 100px;
    background: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-form .form-control::placeholder {
    color: var(--gray-02);
}

.newsletter-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: none;
    background: var(--black);
    color: var(--white);
}

.newsletter-form .btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: none;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10;
}

.newsletter-form .btn:hover {
    background: var(--orange);
}

.newsletter-form .btn img {
    width: 24px;
    height: 24px;
}

.card {
    border: none;
}

.list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

/* Mobile & Tablet Responsive */
@media (max-width: 991px) {
    .header .navbar {
        padding: 15px 0;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .header .navbar-toggler {
        order: 1;
        flex-shrink: 0;
    }

    .header .logo-container {
        order: 2;
        position: static;
        transform: none;
        flex-grow: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .logo-container .logo {
        height: 30px;
        width: auto;
    }

    .header .search-btn {
        order: 3;
        flex-shrink: 0;
    }

    .header .navbar-brand.logo-container {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .header .navbar-collapse {
        margin-top: 20px;
    }

    .header .nav-left,
    .header .nav-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .ad-banner-wrapper {
        height: 350px;
    }

    .ad-title {
        font-size: 48px;
        line-height: 56px;
    }

    .ad-description {
        font-size: 24px;
        line-height: 32px;
    }

    .ad-label {
        font-size: 18px;
        line-height: 24px;
    }

    .promo-code {
        font-size: 24px;
        line-height: 32px;
        padding: 12px 32px 16px;
    }

    .newsletter-container {
        flex-direction: column;
        gap: 24px;
    }

    .newsletter-title {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 500px;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) {
    main {
        padding-top: 35px;
    }

    main>section {
        margin-bottom: 125px;
    }

    .hero {
        margin-bottom: 125px;
    }

    .featured {
        margin-bottom: 135px;
    }

    .ad-banner {
        margin-bottom: 130px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .latest-reviews {
        margin-bottom: 145px;
    }

    .featured-carousel {
        padding: 0 0 20px 0;
    }

    .carousel-content {
        padding: 40px 0 40px 40px;
    }

    .featured .section-title {
        margin-bottom: 50px !important;
    }

    .featured-card-big {
        margin-bottom: 20px;
    }

    .brands-grid {
        margin-top: 55px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .section-title {
        font-size: 42px;
        line-height: 48px;
    }

    .card-title-large {
        font-size: 32px;
        line-height: 40px;
    }

    .ad-banner-wrapper {
        height: auto;
    }

    .ad-title {
        font-size: 36px;
        line-height: 40px;
    }

    .ad-description {
        font-size: 18px;
        line-height: 24px;
    }

    .ad-logo {
        width: 100px;
        height: auto;
    }

    .footer-content {
        padding: 0px 0 40px;
    }

    .footer-subscribe h2 {
        font-size: 30px;
    }

    .newsletter-banner {
        padding: 32px 0;
    }

    .newsletter-title {
        font-size: 20px;
        line-height: 28px;
    }

    .carousel-title {
        padding: 0 10px;
    }

    .featured-carousel-indicators {
        bottom: 0px !important;
        left: 38% !important;
        margin-left: 0px !important;
        margin-bottom: 0 !important;
    }

    .footer-subscribe {
        gap: 10px;
    }

    .card-image,
    .card-image-big {
        height: 280px;
    }
    
    .ad-banner-wrapper>div {
        display: none !important
    }

    .ad-banner-wrapper {
        background: url(img/adbanner-mob.png) center center no-repeat;
        background-size: contain;
        min-height: 117px;
    }

    .deals-grid {
        flex-direction: column-reverse;
    }

    .category-item h3 {
        font-size: 28px;
        line-height: 36px;
    }

    .card-title, .deal-text h3, .deal-card h3, .must-have-item h4, .review-item h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .offcanvas-header {
        border-bottom: 0;
    }

    #featuredCarousel .card-meta, #featuredCarousel .carousel-description {
        padding: 0 15px;
    }
}