:root {
    --primary-color: #1B1B1B;
    --secondary-color: #464646;
    --accent-color: #C0A062;
    --bg-color: #F8F3E9;
    --white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--primary-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Header */
.header {
    padding: 0px 0 0px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-container {
    display: flex;
    gap: 39px;
    align-items: center;
    color: #616161;
    order: 2;
    flex: 1;
    justify-content: end;
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    color: #616161;
    /* Updated Color from Figma */
    font-family: 'Switzer', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.nav-link.active {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    color: #301B0D;;
    /* Updated Color from Figma */
    font-family: 'Switzer', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    top:30px;
    transform: translateX(-50%);
    width: 20px;      /* 🔥 small width */
    height: 2px;      /* thickness */
    background-color: #301B0D;
    border-radius: 2px;
}

.nav-link:hover {
    color: #301b0da8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.signup-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.lang-selector img {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.logo {
    width: auto;
    height: 120px;
    display: block;
    order: 1;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
    order: 3;
    position: absolute;
    right:60px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #301B0D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 1196px) {
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 45;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-container {
        display: none;
        position: fixed;
        top: 0;
        left: auto;
        right: -100%;
        transform: none;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        flex: none;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-container.active {
        display: flex;
        right: 0;
    }
}

@media(max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .header-container {
        padding: 0 20px;
    }
     .header-actions {
        margin-top: 30px;
        flex-direction: column;
        gap: 8px;
    }

}

/* hero section */
.hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.hero-heading-text1 {
    color: #301B0D;
text-align: center;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #301B0D;
font-family: Switzer;
font-size: 79.92px;
font-style: normal;
font-weight: 700;
line-height: 82px; /* 102.603% */
max-width: 1180px;
margin: 0 auto;
white-space: nowrap;
}
.hero-heading-text2 {
    color: transparent;
text-align: center;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #301B0D;
font-family: Switzer;
font-size: 79.92px;
font-style: normal;
font-weight: 700;
line-height: 82px; /* 102.603% */
}
.hero-section span {
    display: block;
    max-width: 1131px;
    margin: 0 auto;
     color: rgba(0, 0, 0, 0.50);
text-align: center;
font-family: Switzer;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 30px; /* 187.5% */
 word-wrap: break-word;
 overflow-wrap: break-word;
}
@media(max-width: 768px) {
     .hero-heading-text1 {
    font-size: 25px;
    font-weight: 600;
    line-height: 50px;
    max-width: 100%;
    
  }
  .hero-heading-text2{
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    max-width: 100%;
  }
  .hero-section span {
    display: block;
    padding: 0px 20px;
    margin: 0 auto;
     color: rgba(0, 0, 0, 0.50);
text-align: center;
font-family: Switzer;
font-size: 13px;
font-style: normal;
font-weight: 300;
line-height: 20px; /* 187.5% */
 word-wrap: break-word;
 overflow-wrap: break-word;
}
}

/* Search Section */
.search-section {
    padding: 40px 0;
}

.search-bar {
    background: white;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    height: 65px;
}

.search-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    position: relative;
}

.search-input select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    padding-right: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.search-input .icon {
    display: flex;
    align-items: center;
}

.custom-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.search-input.fluid {
    flex: 1;
}

.search-input input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: #eee;
}

.search-btn {
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.search-btn.search-btn-inside {
    display: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    padding: 8px;
}

.search-btn.search-btn-inside:hover {
    background: transparent;
}

/* Mobile Responsive for Search Section */
@media (max-width: 768px) {
    .search-section {
        padding: 20px 0;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 0;
        height: auto;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 0 16px 8px;
        box-shadow: none;
    }

    .divider {
        display: none;
    }

    .search-input {
        width: 100%;
        border: none;
        border-radius: 0;
        padding: 0 16px;
        height: 56px;
        box-sizing: border-box;
    }

    .search-bar .search-input:not(.fluid) {
        border-bottom: 1px solid #eee;
    }

    .search-input select {
        height: 56px;
    }

    .search-input.fluid {
        position: relative;
        border-bottom: none;
        padding-bottom: 0;
    }

    .search-input.fluid input {
        height: 56px;
        line-height: 56px;
        padding-right: 48px;
    }

    .search-btn.search-btn-inside {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        padding: 8px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .search-bar > .search-btn {
        display: none;
    }

    .search-input:last-child {
        border-bottom: none;
    }

    /* Show all cards vertically without Swiper on mobile */
    .swiper-container-wrapper {
        position: static !important;
    }

    .swiper-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        transform: none !important;
        transition: none !important;
    }

    .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .swiper {
        overflow: visible !important;
    }

    /* Hide navigation buttons on mobile */
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        display: none !important;
    }
}

/* Carousel section - matching index.html */
.carousel-section {
    padding: 80px 0 20px 0;
}
.carousel-section-1 {
    padding: 20px 0;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #301B0D;
    font-family: Switzer;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.see-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #616161;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.see-all svg {
    transition: transform 0.3s;
}

.see-all:hover svg {
    transform: translate(2px, -2px);
}

.carousel-nav {
    display: flex;
    gap: 8px;
}

/* Swiper container - matching index.html */
.swiper-container-wrapper {
    position: relative;
}

/* .swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev-custom {
    left: -33px;
}

.swiper-button-next-custom {
    right: -33px;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: rgba(255, 255, 255, 1);
} */

/* Card styles - matching index.html */
.card-style-1 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.card-style-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.card-content {
    background-color: #F8F3EB;
    text-align: left;
    padding: 12px 0px;
}

.card-content h3 {
    color: var(--Main-Colors-Gray-9, #020202);
    font-family: Switzer;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

.card-content p {
    color: #737373;
    font-family: Switzer;
    font-size: 14.026px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.card-content a {
    color: var(--White, #FFF);
    font-family: Switzer;
    font-size: 17.532px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 53.474px;
    margin-top: 16px;
    padding: 12px 24px;
    color: white;
    border-radius: 9.254px;
    background: #301B0D;
    font-size: 14px;
    line-height: 1;
    transition: opacity 0.3s;
    text-decoration: none;
}

.card-btn svg {
    flex-shrink: 0;
    display: block;
    transform: translateY(1px);
}

.card-btn:hover {
    opacity: 0.9;
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
}

.partner-banner {
    height: 396px;
    background: #DAC099;
    /* Approximation to the bronze/goldbg */
    border-radius: 7.1px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.partner-content {
    max-width: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-content h2 {
    color: #301B0D;

    font-family: Switzer;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.partner-content p {
    color: rgba(0, 0, 0, 0.50);

    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 187.5% */
}

.partner-btn {
    padding: 18px 32px;
    background: #2D2318;
    color: white;
    width: 270px;
    height: 70px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    color: #FFF;

    font-family: Switzer;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.partner-image img {
    width: 100%;
}
@media (max-width: 768px) {
    
    .partner-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        height: auto;
        min-height: auto;
    }

    .partner-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .partner-content h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .partner-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .partner-btn {
        width: 200px;
        height: 50px;
        font-size: 18px;
        padding: 12px 24px;
        margin: 0 auto;
        display: block;
    }

    .partner-image {
        width: 80%;
        max-width: 200px;
        margin: 0 auto;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* tablet-specific styles */
  .partner-banner {
    flex-direction: row;
    padding: 40px 32px;
    height: auto;
    min-height: 320px;
  }

  .partner-content {
    max-width: 55%;
    margin-bottom: 0;
  }

  .partner-content h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .partner-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .partner-btn {
    width: 220px;
    height: 56px;
    font-size: 20px;
    padding: 14px 28px;
    margin-top: 20px;
  }

  .partner-image {
    width: 40%;
    max-width: 220px;
    margin: 0;
  }
}
/* Footer */
.footer {
    background: #F8F3EB;
    padding: 80px 0 40px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #301B0D;
    font-family: Switzer;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #3F3F3F;
    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 240%;
    /* 38.4px */
}

.footer-col ul li a:hover {
    color: #2D2318;
}

.newsletter-input {
    display: flex;
    margin-top: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    gap: 10px;
    height: 50px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    border: 1px solid #DAC099;
    border-radius: 10.526px;
    background: #F8F3EB;
    padding: 0 16px;
}

.email-icon {
    color: rgba(0, 0, 0, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-right: 8px;
}

.newsletter-input input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    color: rgba(0, 0, 0, 0.50);
    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.newsletter-input input::placeholder {
    color: rgba(0, 0, 0, 0.50);
    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.newsletter-input button {
    background: #2D2318;
    color: white;
    padding: 12px 24px;
    width: 146px;
    
    border-radius: 10.526px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.newsletter-input button:hover {
    background: #3D3328;
}

.footer-divider {
    max-width: 1440px;
    margin: 60px auto 0;
    padding: 0 80px;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 80px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-selectors {
    display: flex;
    gap: 16px;
    border-radius: 6px;

}

.footer-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    border: 1px solid rgba(218, 192, 153, 0.3);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.50);
    cursor: pointer;
    font-family: Switzer;
    border: 1px solid rgba(218, 192, 153, 0.34);

/* Layout/Border Shadow 1 */
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
}

.footer-selector img {
    width: 24px;
    height: 18px;
    object-fit: contain;
}
.footer-selector .country{
    color: var(--Brand-C---Brand-2, #1B1B1B);
font-family: Switzer;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 22px; /* 169.231% */
letter-spacing: 0.25px;
}

.footer-selector strong {
    color: #301B0D;
    font-weight: 600;
}
.footer-selector .language{
   color: rgba(0, 0, 0, 0.50);
font-family: Switzer;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 22px; /* 169.231% */
letter-spacing: 0.25px;
}

.copyright {
    font-family: Switzer;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.50);
}

@media (max-width: 868px) {
     .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-input {
        justify-content: center;
        flex-direction: row;
        align-items: center;
        height: 50px;
    }

    .newsletter-input .input-wrapper {
        flex: 1;
        width: auto;
    }

    .newsletter-input button {
        width: 146px;
    }

    .footer-divider {
        padding: 0 16px;
        margin-top: 40px;
    }

    .footer-bottom {
        padding: 24px 16px 40px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-selectors {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .see-all {
        margin: 0;
    }
}
@media (max-width: 480px) {
    .newsletter-input {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }

    .newsletter-input .input-wrapper {
        width: 100%;
    }

    .newsletter-input button {
        width: 100%;
    }
}