.home-page-gradient {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom, #FE0000 0%, #FF7200 100%) !important;
}

.custom-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

.popular-items-section {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}

.popular-items-button-wrap {
    margin-bottom: 20px;
}

.btn-menu {
  display: inline-block;
  background-color: var(--primary);
  color: var(--martish-dark);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 40px;
  border-radius: 50px;
}

.btn-menu:hover {
    background-color: #f8a51b;
    color: #1c1c1c;
}

.popular-items-title {
    font-weight: 800;
    font-size: 42px;
    margin: 0 0 30px;
}

.popular-banner {
    width: 100%;
    overflow: hidden;
}

.popular-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 767.98px) {
    .popular-items-title {
        font-size: 30px;
    }

    .btn-menu {
        font-size: 14px;
        padding: 12px 32px;
    }
}

.top-martel-section {
    width: 100%;
    padding: 50px 0;
}

.top-martel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.top-martel-title {
    font-weight: 800;
    font-size: 32px;
    margin: 0;
    text-align: left;
}

.see-all-link {
    font-weight: 700;
    font-size: 15px;
    color: #4caf50;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.see-all-link:hover {
    color: #f8a51b;
}

.top-martel-banners {
    margin-top: 100px;
}

.martel-banner {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #f2f2f20d;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.martel-banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .top-martel-banners {
        margin-top: 60px;
    }

    .top-martel-banners .col-12:not(:last-child) .martel-banner {
        display: none;
    }

    .top-martel-title {
        font-size: 26px;
    }
}

/*CLIENT SAYS */

.client-says-section {
    width: 100%;
    padding: 50px 0;
}

.client-says-title {
    font-weight: 800;
    font-size: 38px;
    text-align: center;
    margin: 0 0 40px;
}

.client-videos-row {
    row-gap: 24px;
}

.client-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
}

.client-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767.98px) {
    .client-says-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
}

/*last secton in home */

.promo-banners-section {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0;
    font-size: 0;
}

.promo-banners-row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.promo-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .promo-banner {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

.promo-banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

/*@media (min-width: 768px) {*/
/*    .promo-banner-img {*/
/*        aspect-ratio: 1 / 1;*/
/*    }*/
/*}*/

/*about*/
/* ============================================
   STICKY TOP LOGO BAR
============================================ */
.sticky-logo-bar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 12px 0;
}

.sticky-logo-bar .container {
    max-width: 1320px;
}

.sticky-logo-link {
    display: inline-block;
}

.sticky-logo-img {
    max-height: 60px;
    width: auto;
    display: block;
}


/* ============================================
   ABOUT HERO SECTION - Parallax background
============================================ */
.about-hero-section, .about-second-section, .about-third-section {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* parallax effect */
}

.about-hero-section .container {
    max-width: 1320px;
    position: relative;
    z-index: 2;
}

/* Optional overlay to keep text readable over the parallax bg */
.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}


/* ---------------------------------------------------------
   TEXT CONTENT (left)
--------------------------------------------------------- */
.about-hero-text {
    padding: 20px 30px 20px 0;
}

.about-welcome {
    font-family: 'Brush Script MT', cursive, var(--martish-font, sans-serif);
    font-size: 42px;
    color: var(--martish-orange, #f8a51b);
    margin-bottom: 10px;
}

.about-heading {
    font-weight: 800;
    font-size: 42px;
    line-height: 1.25;
    color: #1c1c1c;
    margin-bottom: 24px;
}

.about-paragraph {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
}


/* ---------------------------------------------------------
   IMAGE (right) with hover-up effect
--------------------------------------------------------- */
.about-hero-image-wrap {
    padding: 20px 0 20px 30px;
}
.about-third-image-wrap {
  padding: 20px 30px 20px 0;
}
.about-hero-image {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.about-hero-image:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.about-hero-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

/*.about-hero-image:hover .about-hero-img {*/
/*    transform: scale(1.03);*/
/*}*/


/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991.98px) {
    .about-hero-section {
        background-attachment: scroll; /* fixed bg can misbehave on mobile */
        padding: 50px 0;
    }

    .about-hero-text {
        padding: 0;
        margin-bottom: 36px;
        text-align: center;
    }

    .about-hero-image-wrap {
        padding: 0;
    }

    .about-heading {
        font-size: 30px;
    }

    .about-welcome {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .sticky-logo-img {
        max-height: 44px;
    }

    .about-heading {
        font-size: 26px;
    }

    .about-paragraph {
        font-size: 14px;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .about-third-text {
      padding: 20px 0 20px 50px;
    }
}
@media (max-width: 991px) {
  .about-hero-section {
    padding: 0px 15px 80px 15px;
  }
}

/*woocommerce*/


/* Layout */
.shop-container {
    display: flex;
    gap: 30px;
}

.shop-sidebar {
    width: 25%;
}

.shop-products {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Product Card Hover */
ul.products li.product {
    background: #fff;
    transition: background-color 0.3s ease;
    padding: 15px;
    border: 1px solid #ddd;
}

ul.products li.product:hover {
    background-color: #ffeb3b; /* Yellow hover */
}

/* Best Deals */
.best-deals .deal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.best-deals .deal-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.best-deals .deal-item h4 {
    margin: 10px 0 5px;
}

/*lately added*/
.popular-items-title, .top-martel-title, .client-says-title {
  color: var(--bs-white);
}
.see-all-link {
  font-weight: 701;
  font-size: 18px;
  color: var(--bs-white);
}
/* =========================================================
   MARTISH THEME - CONTACT PAGE STYLES
   ========================================================= */

.martish-contact-page {
    padding-bottom: 70px;
}


/* ---------------------------------------------------------
   SECTION 1: Contact Info
--------------------------------------------------------- */
.contact-info-section {
    padding: 60px 0 50px;
}

.contact-info-section .container {
    max-width: 1320px;
}

.contact-main-title {
    font-weight: 800;
    font-size: 34px;
    color: #1c1c1c;
    margin: 0 0 50px;
    line-height: 1.25;
}

.contact-info-row {
    row-gap: 36px;
}

.contact-info-col {
    padding-left: 12px;
}

/* Icon circle */
.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid var(--martish-orange, #f8a51b);
    border-radius: 12px;
    color: var(--martish-orange, #f8a51b);
    margin-bottom: 20px;
}

.contact-info-icon svg {
    width: 32px;
    height: 32px;
}

.contact-info-label {
    font-size: 16px;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 10px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    margin-bottom: 6px;
}

.contact-info-list a,
.contact-info-text a {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info-list a:hover,
.contact-info-text a:hover {
    color: var(--martish-orange, #f8a51b);
}

.contact-info-text {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.contact-here-link {
    color: var(--martish-orange, #f8a51b) !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-here-link:hover {
    color: #1c1c1c !important;
}


/* ---------------------------------------------------------
   SECTION 2: Map + Form
--------------------------------------------------------- */
.contact-map-form-section {
    padding: 10px 0 0;
}

.contact-map-form-section .container {
    max-width: 1320px;
}

.contact-map-form-row {
    align-items: stretch;
}

/* Map */
.contact-map-wrap {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #e8e8e8;
}

.contact-map-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form wrapper */
.contact-form-wrap {
    background-color: #ffffff;
    border: 1.5px solid #e8e8e8;
    border-radius: 14px;
    padding: 36px 32px;
    height: 100%;
}

.contact-form-title {
    font-weight: 800;
    font-size: 28px;
    color: #1c1c1c;
    margin: 0 0 28px;
}

/* Form inputs */
.martish-form-control {
    display: block;
    width: 100%;
    border: 1.5px solid #e6e6e6;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 14.5px;
    color: #1c1c1c;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--martish-font, inherit);
    outline: none;
}

.martish-form-control::placeholder {
    color: #b0b0b0;
}

.martish-form-control:focus {
    border-color: var(--martish-orange, #f8a51b);
    box-shadow: 0 0 0 3px rgba(248, 165, 27, 0.12);
}

.martish-form-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit button */
.martish-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--martish-orange, #f8a51b);
    color: #1c1c1c;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 48px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.martish-contact-submit:hover {
    background-color: #e0940e;
    transform: translateY(-2px);
}

/* Notices */
.contact-notice {
    border-radius: 8px;
    padding: 13px 18px;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 22px;
}

.contact-notice-success {
    background-color: #edfbe8;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.contact-notice-error {
    background-color: #fdecea;
    border-left: 4px solid #e53935;
    color: #b71c1c;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 991.98px) {
    .contact-map-wrap {
        height: 340px;
    }

    .contact-form-wrap {
        padding: 28px 22px;
        height: auto;
    }

    .contact-main-title {
        font-size: 26px;
        margin-bottom: 36px;
    }
}

@media (max-width: 767.98px) {
    .contact-info-section {
        padding: 40px 0 30px;
    }

    .contact-info-col {
        padding-left: 12px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 28px;
    }

    .contact-info-col:last-child {
        border-bottom: none;
    }

    .contact-map-wrap {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .contact-main-title {
        font-size: 22px;
    }

    .contact-form-title {
        font-size: 22px;
    }

    .martish-contact-submit {
        width: 100%;
    }

    .contact-form-wrap {
        padding: 22px 16px;
    }
}