:root {
    --color-primary-black: #111111;
    --color-topbar-black: #0c0c0c;
    --color-journey-bronze: #b89178;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #666666;
    --color-text-light: #888888;
    --color-border-subtle: #eeeeee;
    --color-border-card: #e8e4df;
    --bg-page: #ffffff;
    --bg-tinted-section: #faf6f2;
    --bg-hero: #f4ece5;
    --bg-promo-dark: #221e1a;
    --bg-promo-peach: #edd8cb;
    --bg-promo-sand: #ece4dc;
    --bg-card-neutral: #f6f3ee;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--bg-page);
    font-size: 13px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--color-primary-black);
}

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

.top-bar-container,
.header-container,
.content-container,
.newsletter-container,
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.top-bar {
    background-color: var(--color-topbar-black);
    color: #ffffff;
    padding: 7px 0;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.top-phone {
    font-size: 11px;
}

.top-center-features {
    gap: 12px;
}

.top-feature-item {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.top-feature-item i {
    font-size: 10px;
    opacity: 0.85;
}

.top-divider {
    color: #444444;
    font-size: 10px;
}

.top-right-links {
    gap: 10px;
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    transition: opacity 0.2s;
}

.top-link:hover {
    color: #dddddd;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 1020;
}

.header-main-row {
    padding: 16px 0 12px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    color: var(--color-primary-black);
    position: relative;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #666666;
    margin-top: 3px;
    text-transform: uppercase;
}

.search-form {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    border-radius: 30px;
    border: 1px solid #dddddd;
    padding: 8px 45px 8px 20px;
    font-size: 12.5px;
    background-color: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 40px;
}

.search-input:focus {
    background-color: #ffffff;
    border-color: #111111;
    box-shadow: none;
}

.search-submit-btn {
    position: absolute;
    right: 14px;
    background: transparent;
    border: none;
    color: #444444;
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
}

.search-submit-btn:hover {
    color: #000000;
}

.header-actions {
    gap: 22px;
}

.header-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-primary-black);
    font-size: 11px;
    font-weight: 500;
}

.action-icon-wrap {
    font-size: 19px;
    line-height: 1;
    margin-bottom: 3px;
    color: #111111;
}

.action-label {
    color: #222222;
    font-size: 11px;
    font-weight: 500;
}

.badge-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #000000;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.primary-navbar {
    border-top: 1px solid #f6f6f6;
    background-color: #ffffff;
}

.main-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav-list .nav-link {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #111111 !important;
    padding: 12px 0 !important;
    position: relative;
    text-transform: uppercase;
}

.main-nav-list .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111111;
}

.main-nav-list .dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: 1px;
    font-size: 10px;
}

.has-megamenu {
    position: static;
}

.megamenu-dropdown {
    width: 96%;
    max-width: 1360px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    margin-top: 0;
    top: 100%;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 14px;
}

.megamenu-col {
    border-right: 1px solid #f0f0f0;
    padding-right: 10px;
}

.megamenu-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 8px;
    letter-spacing: 0.4px;
}

.megamenu-title a {
    color: #111111;
}

.megamenu-title a:hover {
    color: var(--color-journey-bronze);
}

.megamenu-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.megamenu-list li {
    margin-bottom: 5px;
}

.megamenu-list a {
    font-size: 11px;
    color: #555555;
    transition: color 0.2s;
}

.megamenu-list a:hover {
    color: #000000;
    text-decoration: underline;
}

.hero-section {
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    padding: 0 20px;
}

.hero-card {
    background: linear-gradient(135deg, #f8f2ec 0%, #f0e6dc 100%);
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.hero-row,
.hero-content-row {
    min-height: 380px;
}

.hero-content-col,
.hero-text-col {
    padding: 40px 30px 40px 60px;
}

.hero-badge-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333333;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.hero-headline,
.hero-main-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.12;
    color: #111111;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.highlight-journey,
.title-journey {
    color: var(--color-journey-bronze);
    font-style: normal;
    font-weight: 700;
}

.hero-subtext,
.hero-description {
    font-size: 15px;
    color: #555555;
    margin-bottom: 24px;
    font-weight: 400;
}

.btn-hero-primary,
.btn-hero-shop {
    background-color: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 11px 28px;
    border-radius: 3px;
    border: 1px solid #111111;
    text-transform: uppercase;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-hero-primary:hover,
.btn-hero-shop:hover {
    background-color: #333333;
    color: #ffffff;
}

.btn-hero-secondary,
.btn-hero-explore {
    background-color: #ffffff;
    color: #111111;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 11px 26px;
    border-radius: 3px;
    border: 1px solid #cccccc;
    text-transform: uppercase;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-hero-secondary:hover,
.btn-hero-explore:hover {
    background-color: #f6f6f6;
    border-color: #111111;
}

.hero-img-wrap {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-img,
.hero-models-img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: top center;
}

.hero-dots-wrap {
    padding: 10px 0 14px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #999999;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-dot.active {
    background-color: #111111;
    border-color: #111111;
}

.hero-features-bar {
    background-color: #ffffff;
    border-top: 1px solid #f0ece7;
    padding: 14px 24px;
}

.hero-feature-item {
    border-right: 1px solid #eeeeee;
    padding: 6px 16px;
}

.feat-icon {
    font-size: 20px;
    color: #111111;
    line-height: 1;
}

.feat-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111111;
    text-transform: uppercase;
}

.feat-desc {
    font-size: 10px;
    color: #777777;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #111111;
    text-transform: uppercase;
}

.view-all-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #111111;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.view-all-link:hover {
    transform: translateX(3px);
}

.categories-slider-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-slider-wrap::-webkit-scrollbar {
    display: none;
}

.categories-grid {
    display: flex;
    gap: 12px;
    padding-bottom: 6px;
}

.category-card {
    flex: 0 0 calc((100% - (13 * 12px)) / 14);
    min-width: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.cat-img-box {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f7f3ee;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .cat-img {
    transform: scale(1.06);
}

.cat-name {
    font-size: 11.5px;
    font-weight: 500;
    color: #222222;
    margin-top: 6px;
    white-space: nowrap;
}

.promo-banner-card {
    border-radius: 8px;
    padding: 22px 20px 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 170px;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.promo-card-dark {
    background: radial-gradient(circle at 70% 50%, #2f2a24 0%, #1f1b17 100%);
    color: #ffffff;
}

.promo-card-peach {
    background-color: #edd8cb;
    color: #111111;
}

.promo-card-sand {
    background-color: #eee6df;
    color: #111111;
}

.promo-card-content {
    flex: 1;
    z-index: 2;
}

.promo-tag-gold {
    color: #cca47e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.promo-tag-dark {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #444444;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.promo-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 14px;
}

.promo-title-discount {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #111111;
    margin-bottom: 4px;
}

.promo-sub-discount {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #444444;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-title-serif {
    font-family: var(--font-serif);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 4px;
}

.promo-sub-text {
    font-size: 11.5px;
    color: #666666;
    margin-bottom: 14px;
}

.btn-promo-white {
    background-color: #ffffff;
    color: #111111;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 7px 18px;
    border-radius: 3px;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.2s;
}

.btn-promo-white:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.btn-promo-black {
    background-color: #111111;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 7px 18px;
    border-radius: 3px;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.2s;
}

.btn-promo-black:hover {
    background-color: #333333;
    color: #ffffff;
}

.promo-card-img-wrap {
    width: 120px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-card-img {
    max-height: 160px;
    object-fit: cover;
    object-position: center;
}

.featured-products-wrapper {
    position: relative;
    padding: 0 4px;
}

.products-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    cursor: pointer;
    z-index: 10;
    font-size: 12px;
    transition: all 0.2s;
}

.products-nav-btn:hover {
    background-color: #111111;
    color: #ffffff;
}

.products-nav-btn.prev-btn {
    left: -16px;
}

.products-nav-btn.next-btn {
    right: -16px;
}

.products-scroll-track {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.product-item-card {
    display: flex;
    flex-direction: column;
}

.product-thumb-box {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f7f3ee;
}

.product-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item-card:hover .product-thumb-img {
    transform: scale(1.04);
}

.product-badge-new {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #111111;
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    z-index: 2;
}

.btn-wishlist-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444444;
    font-size: 12px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.btn-wishlist-toggle:hover,
.btn-wishlist-toggle.active {
    background-color: #ffffff;
    color: #e53935;
}

.btn-wishlist-toggle.active i::before {
    content: "\f004";
    font-weight: 900;
}

.product-name {
    font-size: 11.5px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 2px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 11.5px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0;
}

.btn-view-all-products {
    background-color: #ffffff;
    color: #111111;
    border: 1px solid #111111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 9px 30px;
    border-radius: 2px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.2s;
}

.btn-view-all-products:hover {
    background-color: #111111;
    color: #ffffff;
}

.why-shop-section {
    background-color: var(--bg-tinted-section);
}

.why-shop-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #111111;
    text-transform: uppercase;
}

.why-icon {
    font-size: 24px;
    color: #111111;
    line-height: 1;
}

.why-heading {
    font-size: 12px;
    font-weight: 700;
    color: #111111;
}

.why-sub {
    font-size: 10.5px;
    color: #777777;
}

.lookbook-section {
    background-color: #ffffff;
}

.lookbook-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555555;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.lookbook-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 18px;
}

.btn-lookbook {
    background-color: #111111;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 9px 22px;
    border-radius: 2px;
    border: none;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.btn-lookbook:hover {
    background-color: #333333;
    color: #ffffff;
}

.lookbook-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.lookbook-item {
    aspect-ratio: 4/5;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f7f3ee;
}

.lookbook-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lookbook-item:hover .lookbook-img {
    transform: scale(1.05);
}

.testimonials-section {
    background-color: var(--bg-tinted-section);
}

.testimonials-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #111111;
    text-transform: uppercase;
}

.testimonials-slider-container {
    padding: 0 10px;
}

.testimonials-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 11px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s;
}

.testimonials-nav-btn:hover {
    background-color: #111111;
    color: #ffffff;
}

.testimonials-nav-btn.prev-btn {
    left: -12px;
}

.testimonials-nav-btn.next-btn {
    right: -12px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    border: 1px solid #f2eee9;
    height: 100%;
}

.testimonial-avatar-wrap {
    flex: 0 0 54px;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.rating-stars {
    color: #f5a623;
    font-size: 11px;
}

.quote-mark {
    font-size: 16px;
    color: #888888;
    line-height: 1;
}

.testimonial-comment {
    font-size: 11.5px;
    color: #444444;
    line-height: 1.4;
}

.testimonial-author {
    font-size: 11px;
    font-weight: 700;
    color: #111111;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.test-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #888888;
    cursor: pointer;
    transition: all 0.2s;
}

.test-dot.active {
    background-color: #111111;
    border-color: #111111;
}

.blog-section {
    background-color: #ffffff;
}

.blog-card {
    background-color: #f9f5f1;
    border-radius: 8px;
    padding: 24px 20px 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 170px;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
}

.blog-card-content {
    flex: 1;
    padding-right: 14px;
}

.blog-date {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #888888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 14px;
}

.blog-read-more {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #111111;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.blog-card-img-wrap {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img {
    max-height: 150px;
    object-fit: cover;
}

.instagram-section {
    background-color: var(--bg-tinted-section);
}

.instagram-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #111111;
    text-transform: uppercase;
}

.instagram-handle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #444444;
    text-transform: uppercase;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
}

.instagram-item {
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background-color: #ede7e0;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.instagram-item:hover .insta-img {
    transform: scale(1.08);
}

.instagram-item:hover .insta-overlay {
    opacity: 1;
}

.newsletter-section {
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 22px 0;
}

.newsletter-icon {
    font-size: 32px;
    color: #ffffff;
    line-height: 1;
}

.newsletter-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-transform: uppercase;
}

.newsletter-desc {
    font-size: 11.5px;
    color: #999999;
}

.newsletter-input {
    background-color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 12px;
    padding: 9px 16px;
    color: #111111;
    height: 38px;
}

.newsletter-input:focus {
    box-shadow: none;
}

.btn-subscribe {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #555555;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 9px 24px;
    text-transform: uppercase;
    transition: all 0.2s;
    height: 38px;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.main-footer {
    background-color: #ffffff;
    padding-top: 36px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links-list li {
    margin-bottom: 7px;
}

.footer-links-list a {
    font-size: 11.5px;
    color: #555555;
    transition: color 0.2s;
}

.footer-links-list a:hover {
    color: #000000;
    text-decoration: underline;
}

.footer-contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-contact-list li {
    font-size: 11.5px;
    color: #555555;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
}

.footer-contact-list a {
    color: #555555;
}

.footer-contact-list a:hover {
    color: #000000;
}

.footer-social-links .social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.2s, background-color 0.2s;
}

.footer-social-links .social-icon:hover {
    background-color: var(--color-journey-bronze);
    transform: translateY(-2px);
}

.copyright-text {
    font-size: 11px;
    color: #777777;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: #333333;
}

.pay-visa i { color: #1a1f71; }
.pay-mastercard i { color: #eb001b; }
.pay-amex i { color: #006fcf; }
.pay-koko i { color: #2ecc71; }

@media (max-width: 1200px) {
    .megamenu-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .products-scroll-track {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero-headline,
    .hero-main-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .main-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0;
    }
    .megamenu-dropdown {
        position: static !important;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px 0 !important;
    }
    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .megamenu-col {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .instagram-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .hero-content-col,
    .hero-text-col {
        padding: 30px 20px;
    }
    .hero-headline,
    .hero-main-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        padding: 6px 0;
    }
    .top-center-features {
        font-size: 9.5px;
        gap: 6px;
    }
    .top-divider {
        margin: 0 4px;
    }
    .header-main-row {
        padding: 8px 0;
    }
    .brand-logo .logo-title {
        font-size: 24px;
    }
    .brand-logo .logo-subtitle {
        font-size: 8.5px;
    }
    .header-actions {
        gap: 12px;
    }
    .header-action-item .action-icon-wrap {
        font-size: 17px;
    }
    .header-action-item .action-label {
        display: none;
    }
    .search-input-wrap .search-input {
        font-size: 12px;
        height: 38px;
    }
    .hero-card {
        border-radius: 6px;
    }
    .hero-content-col,
    .hero-text-col {
        padding: 24px 16px 16px;
        text-align: center;
    }
    .hero-badge-tag {
        font-size: 9.5px;
    }
    .hero-headline,
    .hero-main-title {
        font-size: 28px;
        line-height: 1.15;
    }
    .hero-subtext,
    .hero-description {
        font-size: 13px;
        margin-bottom: 18px;
    }
    .hero-actions {
        justify-content: center;
        gap: 10px;
    }
    .hero-actions .btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    .hero-img-col {
        padding: 0 16px 16px;
    }
    .hero-img-wrap {
        justify-content: center;
    }
    .hero-img,
    .hero-models-img {
        max-height: 280px;
        object-fit: contain;
    }
    .hero-features-bar {
        padding: 8px 12px;
    }
    .hero-features-bar .hero-feature-item {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        padding: 8px 4px;
    }
    .feat-icon {
        font-size: 16px;
    }
    .feat-title {
        font-size: 9.5px;
    }
    .feat-desc {
        font-size: 8.5px;
    }
    .categories-slider-wrap {
        -webkit-overflow-scrolling: touch;
    }
    .category-card {
        flex: 0 0 76px;
        min-width: 76px;
    }
    .promo-banner-card {
        height: auto;
        min-height: 140px;
        padding: 16px 18px;
    }
    .promo-title-discount {
        font-size: 28px;
    }
    .promo-card-img {
        max-height: 130px;
    }
    .products-scroll-track {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .products-scroll-track::-webkit-scrollbar {
        display: none;
    }
    .product-item-card {
        flex: 0 0 165px;
        min-width: 165px;
        scroll-snap-align: start;
    }
    .products-nav-btn {
        display: none;
    }
    .lookbook-info-col {
        text-align: center;
    }
    .lookbook-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .lookbook-gallery-grid .lookbook-item:last-child {
        grid-column: span 2;
    }
    .testimonial-card {
        padding: 14px 16px;
    }
    .blog-card {
        height: auto;
        min-height: 140px;
    }
    .blog-card-content {
        padding: 14px;
    }
    .blog-card-title {
        font-size: 13px;
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }
    .newsletter-btn {
        width: 100%;
    }
    .footer-bottom-row {
        text-align: center;
    }
    .payment-methods-strip {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-headline,
    .hero-main-title {
        font-size: 24px;
    }
    .megamenu-grid {
        grid-template-columns: 1fr;
    }
    .promo-banner-card {
        padding: 14px;
    }
    .promo-title {
        font-size: 18px;
    }
    .promo-title-discount {
        font-size: 24px;
    }
    .promo-title-serif {
        font-size: 19px;
    }
    .cart-table thead {
        display: none;
    }
    .cart-table, 
    .cart-table tbody, 
    .cart-table tr, 
    .cart-table td {
        display: block;
        width: 100%;
    }
    .cart-table tr {
        border-bottom: 1px solid #eee;
        padding: 10px 0;
        position: relative;
    }
    .cart-table td {
        padding: 4px 0;
        border: none;
    }
}

/* ==================================================
   INNER PAGES STYLES
   ================================================== */
.inner-page-header {
    background-color: var(--bg-tinted-section);
    border-bottom: 1px solid var(--color-border-subtle);
}

.page-main-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.breadcrumb-item a {
    color: var(--color-text-muted);
    font-size: 12px;
}

.breadcrumb-item.active {
    color: var(--color-text-dark);
    font-size: 12px;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    font-size: 11px;
}

/* Shop Page */
.sidebar-filter-card {
    background: #fff;
    border: 1px solid var(--color-border-card);
    border-radius: 6px;
}

.sidebar-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border-subtle);
    margin-bottom: 12px;
}

.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.sidebar-category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-dark);
    font-size: 13px;
}

.sidebar-category-list li.active a,
.sidebar-category-list li a:hover {
    color: var(--color-journey-bronze);
    font-weight: 600;
}

.sidebar-category-list .badge-num {
    font-size: 11px;
    color: #888;
    background: #f4ece5;
    padding: 2px 7px;
    border-radius: 10px;
}

.size-chip {
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    background: #fff;
}

.size-chip.active {
    background: var(--color-primary-black);
    color: #fff;
    border-color: var(--color-primary-black);
}

.shop-toolbar {
    background: #fff;
    border: 1px solid var(--color-border-card);
    border-radius: 6px;
}

.sort-select {
    min-width: 170px;
    font-size: 12px;
}

/* Single Product Details */
.product-detail-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 8px;
}

.product-detail-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary-black);
}

.thumb-box {
    width: 70px;
    height: 85px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.thumb-box:hover,
.thumb-box.active {
    border-color: var(--color-journey-bronze);
    opacity: 1;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-chip-radio input,
.size-chip-radio input {
    display: none;
}

.color-chip-btn,
.size-chip-btn {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.color-chip-radio input:checked + .color-chip-btn,
.size-chip-radio input:checked + .size-chip-btn {
    background: var(--color-primary-black);
    color: #fff;
    border-color: var(--color-primary-black);
    font-weight: 600;
}

.quantity-picker {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 120px;
    overflow: hidden;
}

.btn-qty {
    border: none;
    background: #f8f8f8;
    width: 36px;
    height: 36px;
    font-size: 12px;
}

.qty-input {
    border: none;
    width: 48px;
    font-weight: 600;
}

.product-nav-tabs .nav-link {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 13px;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 18px;
}

.product-nav-tabs .nav-link.active {
    color: var(--color-journey-bronze);
    border-bottom-color: var(--color-journey-bronze);
    background: transparent;
}

/* Cart & Checkout */
.cart-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 14px 10px;
}

.payment-card-option {
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.payment-card-option:hover {
    border-color: var(--color-primary-black);
    background-color: #fafafa;
}

/* Tracking Timeline */
.timeline-step {
    position: relative;
    z-index: 1;
}

.timeline-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: -1;
}

.timeline-step:last-child::after {
    display: none;
}

.timeline-step.completed::after {
    background: #198754;
}

.timeline-step.active::after {
    background: #111111;
}

/* FAQ Accordion */
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f4ece5;
    color: var(--color-primary-black);
    box-shadow: none;
}

/* ==========================================================
   OFFICIAL BRAND LOGO STYLING
   ========================================================== */
.brand-logo {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    max-width: 175px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo-img:hover {
    transform: scale(1.03);
}

@media (max-width: 767.98px) {
    .brand-logo-img {
        height: 38px;
        max-width: 135px;
    }
}

/* ==========================================================
   PREMIUM SITE PRELOADER
   ========================================================== */
.shils-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.shils-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    max-width: 320px;
    padding: 20px;
}

.preloader-logo-wrap {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    animation: preloaderPulse 1.8s ease-in-out infinite alternate;
}

.preloader-spinner-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid transparent;
    border-top-color: var(--color-journey-bronze);
    border-right-color: rgba(184, 145, 120, 0.2);
    border-radius: 50%;
    animation: preloaderSpin 1.2s linear infinite;
}

.preloader-progress-bar {
    width: 140px;
    height: 3px;
    background-color: #f1ede8;
    border-radius: 10px;
    overflow: hidden;
}

.preloader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #b89178 0%, #111111 100%);
    border-radius: 10px;
    animation: preloaderFill 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-text {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8c827a;
    display: block;
    margin-top: 6px;
    text-transform: uppercase;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0% { transform: scale(0.96); opacity: 0.85; }
    100% { transform: scale(1.04); opacity: 1; }
}

@keyframes preloaderFill {
    0% { width: 0%; }
    40% { width: 65%; }
    100% { width: 100%; }
}

/* ==========================================================
   SMOOTH SCROLLING ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================== */
html {
    scroll-behavior: smooth;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-35px);
}
.reveal-left.is-revealed {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(35px);
}
.reveal-right.is-revealed {
    transform: translateX(0);
}

.reveal-zoom {
    transform: scale(0.92);
}
.reveal-zoom.is-revealed {
    transform: scale(1);
}

/* Stagger Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Micro Interaction Effects */
.card-hover-lift {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08) !important;
}

/* ==========================================================
   HAPPY CLIENTS & REVIEWS SECTION
   ========================================================== */
.happy-clients-section {
    background-color: #faf7f3;
    border-top: 1px solid #f0eae1;
    border-bottom: 1px solid #f0eae1;
}

.happy-clients-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-primary-black);
}

.happy-stat-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-color: #eee4da !important;
}

.happy-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(184, 145, 120, 0.12) !important;
}

.happy-stat-card h3 {
    color: #b89178;
    font-family: var(--font-serif);
    font-size: 24px;
}

.happy-card {
    border-color: #ebdcd0 !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.happy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(184, 145, 120, 0.14) !important;
    border-color: #b89178 !important;
}

.happy-quote {
    font-size: 13.5px;
    line-height: 1.65;
}

.happy-item-tag {
    font-size: 11px;
    background-color: #f7f2ec !important;
    color: #6e6157;
    border: 1px solid #ebdcd0;
}

.happy-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e0d5cb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #111111;
}

.happy-nav-btn:hover {
    background-color: var(--color-journey-bronze);
    color: #ffffff;
    border-color: var(--color-journey-bronze);
}

.happy-nav-btn.prev-btn { left: -16px; }
.happy-nav-btn.next-btn { right: -16px; }

@media (max-width: 991.98px) {
    .happy-nav-btn { display: none; }
}

/* ==========================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.05);
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 6px;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #71717a;
    font-size: 9.5px;
    font-weight: 500;
    padding: 6px 2px;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.mobile-nav-item i {
    font-size: 17px;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #111111;
    font-weight: 700;
}

.mobile-nav-item.active i {
    color: var(--color-journey-bronze);
    transform: scale(1.15);
}

.mobile-nav-icon-wrap {
    display: inline-block;
    line-height: 1;
}

.mobile-nav-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: var(--color-primary-black);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* Mobile Offcanvas Categories Drawer */
.mobile-cats-offcanvas {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.mobile-cat-pill {
    transition: all 0.2s ease;
}

.mobile-cat-pill:hover {
    background-color: #f4ece5 !important;
    border-color: #b89178 !important;
}

/* Back to Top Floating Button */
.back-to-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background-color: #111111;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1030;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    background-color: var(--color-journey-bronze);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 64px !important;
    }
    .back-to-top-btn {
        bottom: 74px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}


