@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Nunito+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400..700&display=swap');

/* =========================================
   1. VARIABLES & THEMING
   ========================================= */
:root {
    --primary-color: #885f29;
    --primary-hover: #6a4a20;
    --primary-gold: #d4af37;
    --secondary-color: #fbfaf0;
    --secondary-hover: #f0ede0;

    --border-light: #e2dfd2;
    --border-mid: #e5e5e5;
    --border-dark: #262626;

    --bg-white: #fff;
    --bg-black: #000;

    --text-white: #fff;
    --text-black: #000;
    --text-dark: #111;

    --font-primary: "Cormorant Garamond", Georgia, serif;
    --font-secondary: "Nunito Sans", sans-serif;
    --font-tertiary: "Alkatra", cursive;
    --font-cursive: "Great Vibes", cursive;
}

/* =========================================
   2. BASE & RESET
   ========================================= */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-white);
    color: var(--text-black);
}

a:-webkit-any-link {
    color: inherit;
    text-decoration: none;
}

/* =========================================
   3. UTILITIES
   ========================================= */
.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.font-primary {
    font-family: var(--font-primary);
}

.font-secondary {
    font-family: var(--font-secondary);
}

.font-cursive {
    font-family: var(--font-cursive);
}

.font-italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}

.underline-none {
    text-decoration: none;
}

.material-symbols-rounded {
    font-variation-settings: "opsz" 48;
}

/* Layout Containers */
.layout-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 30px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.space {
    padding: 80px 0;
}

.secondary-bg {
    background: var(--secondary-color);
}

/* Flex Utilities */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

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

/* =========================================
   4. TYPOGRAPHY & HEADINGS
   ========================================= */
.headings {
    margin-bottom: 30px;
}

.flex-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-heading .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-heading .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.subheading {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.headings h3 {
    font-family: var(--font-primary);
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
}

.flex-heading .link {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 14px;
}

/* =========================================
   5. BUTTONS
   ========================================= */
div .btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
}

div .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

div .btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

div .btn-fill {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

div .btn-fill:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

div .btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
}

div .btn-white:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Slider Controls */
.buttons-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.buttons-action button {
    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    font-size: 32px;
}

.arrow-style-primary button {
    opacity: 1;
}

.arrow-style-primary button:disabled {
    opacity: 0.8;
    cursor: default;
}

.buttons-action button svg {
    width: 24px;
    height: 24px;
}

/* =========================================
   6. HEADER & NAVIGATION
   ========================================= */
.top-bar {
    width: 100%;
    background: var(--bg-black);
    border-bottom: 1px solid var(--border-dark);
    padding: 8px 16px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-white);
    z-index: 1;
}

.main-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9;
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo-container {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 220px;
}

.logo-img {
    width: auto;
    height: 25px;
    display: block;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    background-color: var(--secondary-color);
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 60px 24px 24px;
    -webkit-box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    transition: left 0.3s ease;
}

.main-nav.active {
    left: 0;
}

.mobile-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.close-menu-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--text-dark);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.close-menu-btn:hover {
    opacity: 1;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.nav-link {
    opacity: 0.7;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-weight: 600;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link.active-gold {
    color: var(--primary-color);
    opacity: 1;
    font-weight: 800;
}

.header-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.action-btn {
    background: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0.8;
    cursor: pointer;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    outline: none;
    color: inherit;
}

.action-btn:hover {
    opacity: 1;
}

.action-btn.hidden-mobile {
    display: none;
}

.action-btn .material-symbols-rounded {
    font-size: 20px;
}

/* Dropdown */
.dropdown-container {
    position: relative;
    display: inline-block;
    text-align: left;
}

.dropdown-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
}

.dropdown-btn:hover {
    opacity: 1;
}

.dropdown-btn .material-symbols-rounded {
    font-size: 16px;
    line-height: 1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 8px;
    width: 128px;
    background: var(--secondary-color);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    -webkit-box-shadow: 0 10px 15px -3px rgba(136, 95, 41, 0.08);
    box-shadow: 0 10px 15px -3px rgba(136, 95, 41, 0.08);
    z-index: 1;
    overflow: hidden;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.dropdown-menu.active {
    display: block !important;
}

.dropdown-menu-list {
    padding: 4px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.dropdown-item {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 8px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0.7;
    color: inherit;
}

.dropdown-item:hover {
    background: var(--secondary-hover);
    color: var(--primary-color);
    opacity: 1;
}

/* =========================================
   7. HERO SLIDER
   ========================================= */
.hero-slider-main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.hero-slider-main .slider-track {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    height: 100%;
}

.hero-slider-main .slide-item {
    width: 100%;
    height: 100%;
    display: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.hero-slider-main .slide-item.active {
    display: block;
}

.hero-slider-main .slide-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.hero-slider-main .layout-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.slider-arrows {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: auto;
}

.slider-btn {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 40px;
}

.slider-btn:hover {
    color: var(--text-white);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.pagination-dots-container {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.pagination-dot.active {
    background: var(--text-white);
    width: 26px;
    border-radius: 4px;
}

/* =========================================
   8. COMPONENT: LUXURY SLIDER (COLLECTIONS)
   ========================================= */
.luxury-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.luxury-slider .slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.collection-card {
    min-width: calc(25% - 18px);
    background: var(--bg-white);
    padding: 30px;
    -webkit-transition: 0.35s ease;
    -o-transition: 0.35s ease;
    transition: 0.35s ease;
    text-align: center;
    border: 1px solid var(--border-mid);
    overflow: hidden;
}

.collection-card img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 24px;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    display: block;
}

.collection-card:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.collection-card .content h4 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
}

/* =========================================
   9. SECTIONS
   ========================================= */

/* Signature Section */
.signature-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.signature-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}

.signature-item img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 24px;
    display: block;
    aspect-ratio: 1.7;
}

.signature-title {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

/* Crafted Section */
.crafted-section {
    padding-bottom: 0;
}

.crafted-heading {
    margin-bottom: 40px;
}

.crafted-subheading {
    font-size: 5rem;
}

.lg-text {
    font-size: 8rem;
}

.crafted-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.crafted-images img {
    width: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

/* Story Section */
.story-section {
    padding-top: 0;
}

.story-content {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.story-content .layout-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.story-content-body {
    width: 100%;
    max-width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-block: 40px;
}

.story-content h4 {
    font-family: var(--font-primary);
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 24px;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 16px;
    font-family: var(--font-tertiary);
    line-height: 1.7;
}

.story-clone {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: -webkit-fill-available;
    object-fit: cover;
}

.story-mobile-img {
    display: none;
}

.story-text-wrapper {
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease;
    -o-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

/* Trust Section */
.trust-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.trust-image-col {
    -webkit-box-flex: .4;
    -ms-flex: .4;
    flex: .4;
}

.trust-img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.trust-text-col {
    -webkit-box-flex: .6;
    -ms-flex: .6;
    flex: .6;
    padding: 60px;
    -ms-flex-line-pack: center;
    align-content: center;
}

.trust-text-col p {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Bestseller Section */
.bestseller-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.bestseller-item {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 550px;
    text-align: left;
}

.bestseller-item.half {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 10px);
    flex: 1 1 calc(50% - 10px);
}

.bestseller-item.full {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.bestseller-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.bestseller-item:hover .bestseller-bg {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.bestseller-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: -webkit-gradient(linear, left top, right top, from(#0000008c), color-stop(50%, transparent));
    background: -o-linear-gradient(left, #0000008c 0%, transparent 50%);
    background: linear-gradient(90deg, #0000008c 0%, transparent 50%);
}

/* Customize Your Design Section */
.heading-style-two {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--text-white);
    padding: 20px;
    padding-left: 50px;
}

.heading-style-two p {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.customize-section {
    position: relative;
}

.customize-section .layout-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #000000a3;
    padding-block: 35px;
}

.customize-content .bestseller-content {
    padding: 0;
}

.customize-list {
    color: #fff;
    font-size: 22px;
}

.customize-list li {
    padding-block: 6px;
}

.customize-content {
    gap: 4rem;
}

.customize-image {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}

/* ===================================
   SPECIES PROMISE SECTION
=================================== */

.species-promise-section {
    overflow: hidden;
}

.promise-heading {
    margin-bottom: 70px;
}

.promise-title {
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

/* GRID */

.promise-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* ITEM */

.promise-item {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.promise-item.border-none {
    border-right: none;
}

.promise-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 30px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.promise-icon img {
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0.7;
}

.promise-item h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.promise-item p {
    font-size: 16px;
    line-height: 1.4;
    color: #8a8175;
    margin: 0;
}

/* ===================================
   NEWSLETTER SECTION
=================================== */

.newsletter-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-subheading {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.newsletter-desc {
    font-size: 22px;
    color: #3f3f3f;

    margin-bottom: 45px;
}

.newsletter-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 15px;
}

.newsletter-form input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 70px;
    border: 1px solid #d8d8d8;
    background: transparent;
    padding: 0 24px;
    font-size: 18px;
    color: #000;
    outline: none;
}

.newsletter-form input::-webkit-input-placeholder {
    color: #c2c2c2;
}

.newsletter-form input::-moz-placeholder {
    color: #c2c2c2;
}

.newsletter-form input:-ms-input-placeholder {
    color: #c2c2c2;
}

.newsletter-form input::-ms-input-placeholder {
    color: #c2c2c2;
}

.newsletter-form input::placeholder {
    color: #c2c2c2;
}

.site-footer {
    width: 100%;
}

.footer-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Brand area styling (Off-white side) */
.footer-brand-col {
    background-color: var(--secondary-color);
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.footer-logo img {
    width: 100%;
    height: 330px;
}

.footer-socials {
    list-style: none;
    padding: 0;
    gap: 20px;
    position: absolute;
    bottom: 20px;
}

.footer-socials a {
    color: #000;
    font-size: 18px;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.footer-socials a:hover {
    opacity: 0.7;
}

/* Links navigation area styling (Black side) */
.footer-links-wrapper {
    background-color: #0A0A0A;
    /* Dark background */
    padding: 40px 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.footer-col h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 7px;
}

.footer-col ul li a {
    color: #dbdbdb;
    text-decoration: none;
    font-size: 13px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFFFFF;
}

/* Copyright Row */
.footer-bottom {
    background-color: #0A0A0A;
    border-top: 1px solid #323232;
    padding: 14px;
}

.footer-bottom p {
    color: #919191;
    font-size: 14px;
    margin: 0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (min-width: 640px) {
    .action-btn.hidden-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 768px) {
    .header-actions {
        gap: 16px;
    }

    .hero-slider-main:hover .slider-btn {
        opacity: 1;
    }

    .slider-btn svg {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 992px) {
    .story-content.odd {
        background-position: right center;
    }

    .story-content.even {
        background-position: left center;
    }

    .story-content.odd .story-content-body {
        margin-right: auto;
    }

    .story-content.even .story-content-body {
        margin-left: auto;
    }

    .story-content h4 {
        font-size: 32px;
    }

    .story-content p {
        font-size: 20px;
    }

    .read-more-btn {
        display: none;
    }

    .story-text-wrapper {
        display: block !important;
        overflow: visible !important;
    }
}

@media (min-width: 1200px) {
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: transparent;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 24px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .mobile-menu-btn,
    .close-menu-btn,
    .menu-overlay {
        display: none !important;
    }

    .nav-link {
        padding: 0;
        border-bottom: none;
    }
}

@media (min-width: 1500px) {
    .layout-container {
        padding: 0 50px;
    }

    .story-content-body {
        min-height: 600px;
    }
}

@media (max-width: 1500px) {

    .promise-title {
        font-size: 46px;
    }

    .promise-item {
        padding: 0 18px;
    }

    .top-bar {
        font-size: 12px;
    }

    .slider-btn {
        font-size: 30px;
    }

    .pagination-dots-container {
        bottom: 2rem;
    }

    .story-content p {
        font-size: 16px;
    }

    .story-content-body {
        min-height: 450px;
        padding: 30px 0;
    }

    .customize-list {
        font-size: 18px;
    }

    .trust-text-col p {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

@media (max-width: 1200px) {
    .promise-grid {
        -ms-grid-columns: 1fr 0 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 0;
    }

    .promise-item:nth-child(2) {
        border-right: none;
    }

    .promise-item:nth-child(1),
    .promise-item:nth-child(2) {
        padding-bottom: 20px;
    }

    .story-clone {
        display: none;
    }

    .story-content-body {
        max-width: 100%;
        min-height: auto;
    }

    .story-mobile-img {
        display: block;
        width: 100%;
    }

    .customize-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 1rem;
    }

    .customize-list {
        padding-left: 20px;
    }

    .customize-section .layout-container {
        position: initial;
        background: #000;
    }

    .trust-text-col {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .footer-main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-brand-col {
        width: 100%;
    }

    .footer-links-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px 20px;
    }

    .footer-col {
        min-width: 45%;
    }

    .newsletter-desc {
        font-size: 20px;
    }

    .collection-card {
        min-width: calc(50% - 12px);
    }

    .crafted-heading {
        zoom: .6;
    }

    .signature-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }

    .logo-container,
    .header-actions {
        min-width: auto;
    }

    .trust-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .bestseller-item.half {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    /* Story Collapse */
    .story-text-wrapper {
        position: relative;
    }

    .story-text-wrapper.collapsed {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .story-text-wrapper.collapsed::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--bg-white)));
        background: -o-linear-gradient(transparent, var(--bg-white));
        background: linear-gradient(transparent, var(--bg-white));
    }

    .read-more-btn {
        margin-top: 10px;
        background: none;
        border: none;
        color: var(--text-black);
        font-weight: 600;
        cursor: pointer;
        padding: 0;
    }

    .footer-socials {
        position: initial;
        margin-top: -3rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {

    .crafted-images {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .crafted-images img {
        width: 100%;
    }

    .species-promise-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .promise-heading {
        margin-bottom: 45px;
    }

    .promise-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promise-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0 0 35px;
    }

    .promise-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .promise-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 22px;
    }

    .promise-icon img {
        width: 58px;
        height: 58px;
    }

    .promise-item h4 {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    .promise-item p {
        font-size: 15px;
        line-height: 1.7;
    }

    .flex-heading {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 0;
    }

    .flex-heading .right {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .heading-style-two {
        padding-left: 35px;
    }

    .bestseller-item {
        min-height: 400px;
    }

    .space {
        padding: 30px 0;
    }

    .newsletter-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .newsletter-subheading {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .newsletter-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .newsletter-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 14px;
    }

    .newsletter-form button {
        width: 100%;
        height: 56px;

        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .collection-card {
        min-width: 100%;
    }

    .crafted-heading {
        zoom: .4;
    }

    .logo-img {
        height: 18px;
    }

    .layout-container {
        padding-inline: 20px;
    }
}