@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #9A7E48 !important;
    --black: #000;
    --white: #fff;
    --white-color: #fff;
    --black-color: #000;
    --primary-hover: #7D6538;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: #f5f2ed;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'nexa light';
    src: url('../fonts/nexa-light/NexaLight.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'authentic';
    src: url('../fonts/authentic/AuthenticSignature.otf') format('opentype');
}

@font-face {
    font-family: 'nexa bold';
    src: url('../fonts/nexa-light/NexaBold.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'nexa bold';
    src: url('../fonts/authentic/AuthenticSignature.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'butler';
    src: url('../fonts/butler/Butler-Free-Lgt-St.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'butler';
    src: url('../fonts/butler/Butler-Free-Med-St.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'butler';
    src: url('../fonts/butler/Butler-Free-Rmn-St.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'butler';
    src: url('../fonts/butler/Butler-Free-Bd-St.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'butler';
    src: url('../fonts/butler/Butler-Free-XBd-St.ttf') format('truetype');
    font-weight: 800;
}


h1,
h2,
h3,
h4,
h5 {
    font-family: "butler";
}

h6 {
    font-family: 'nexa light';
}

p,
a,
button {
    font-family: "Poppins", sans-serif;
}

.top-bar {
    padding: 10px 5px;
    background: var(--primary-color);
    text-align: center;
}

.top-bar p {
    color: var(--white);
    font-size: 18px;
    margin: 0;
}

/* =============================================
   Header
   ============================================= */

.header {
    background: var(--white);
}

.header-content-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 16px 0;
}

/* --- Logo --- */
.header-logo {
    display: flex;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo a img {
    height: 50px;
    width: auto;
}

/* --- Navigation --- */
.navlinks-wrapper {
    justify-self: center;
}

.navlinks-wrapper ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navlinks-wrapper ul li a {
    font-family: "butler", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s ease;
}

.navlinks-wrapper ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.navlinks-wrapper ul li a:hover {
    color: var(--primary-color);
}

.navlinks-wrapper ul li a:hover::after {
    width: 100%;
    left: 0;
}

/* --- Action Icons --- */
.header-action-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-action-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--black-color);
    transition: color 0.3s ease;
}

.header-action-icons a:hover {
    color: var(--primary-color);
}

.search-icon a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 15px;
}

.search-icon a:hover {
    background: #886c3d;
    color: var(--white-color);
}

.cart-icon {
    position: relative;
}

.cart-icon a {
    font-size: 19px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* =============================================
   Categories Dropdown
   ============================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-caret {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-dropdown.is-open > a .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 210px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    display: block;
}

/* Hover bridge: invisible area connecting menu item to dropdown */
.nav-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 24px;
    background: transparent;
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    font-family: "butler", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.nav-dropdown .dropdown-menu li a::after {
    display: none;
}

.nav-dropdown .dropdown-menu li a:hover {
    color: var(--primary-color);
    background: rgba(154, 126, 72, 0.06);
    padding-left: 28px;
}

/* =============================================
   Cart Off-Canvas
   ============================================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white-color);
    z-index: 1099;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-offcanvas.active {
    transform: translateX(0);
}

.cart-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.cart-offcanvas-header h3 {
    font-family: "butler";
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.cart-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    color: var(--black-color);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.cart-close-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.cart-offcanvas-body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px 24px;
}

/* --- Empty Cart --- */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 60px;
    color: rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
}

.cart-empty p {
    font-family: "butler";
    font-size: 22px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 8px;
}

.cart-empty span {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
}

/* --- Cart Items --- */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 1;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F2E5D7;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.cart-item-title {
    font-family: "butler";
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    margin: 0;
    line-height: 1.3;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.35);
    font-size: 14px;
    cursor: pointer;
    padding: 2px;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 4px 0 0;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.cart-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(0, 0, 0, 0.03);
    color: var(--black-color);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cart-qty-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.cart-qty-value {
    width: 34px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    padding: 4px 0;
}

.cart-item-total {
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
}

/* --- Cart Footer --- */
.cart-offcanvas-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 24px;
    flex-shrink: 0;
    background: #FAFAFA;
}

.cart-summary {
    margin-bottom: 18px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
}

.cart-total-row {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 10px;
    margin-top: 4px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

.cart-total-row span:last-child {
    color: var(--primary-color);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    text-align: center;
    text-decoration: none !important;
}

.checkout-btn {
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
}

.checkout-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 126, 72, 0.35);
}

.continue-btn {
    background: transparent;
    color: var(--black-color);
    border: 2px solid rgba(0, 0, 0, 0.12);
}

.continue-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* --- Body scroll lock --- */
body.cart-open {
    overflow: hidden;
}

body.search-open {
    overflow: hidden;
}

/* =============================================
   Search Overlay
   ============================================= */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.search-overlay-panel {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: var(--white-color);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-30px);
    will-change: transform, opacity;
}

.search-overlay-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #F5F1ED;
    border-radius: 14px;
    padding: 14px 20px;
}

.search-input-icon {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--black-color);
    outline: none;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.search-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    color: var(--black-color);
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.search-close-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.search-overlay-body {
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* --- Default State --- */
.search-default-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.search-default-state i {
    font-size: 36px;
    color: rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.search-default-state p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.35);
    margin: 0;
}

/* --- Results --- */
.search-results {
    display: none;
    padding: 8px 0;
}

.search-results.active {
    display: block;
}

.search-suggestion {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
}

.search-suggestion:hover {
    background: rgba(154, 126, 72, 0.06);
}

.search-suggestion-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F2E5D7;
}

.search-suggestion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-name {
    font-family: "butler";
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2px 0 0;
}

.search-suggestion-arrow {
    color: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.search-suggestion:hover .search-suggestion-arrow {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* --- No Results --- */
.search-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.search-no-results.active {
    display: flex;
}

.search-no-results i {
    font-size: 40px;
    color: rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.search-no-results p {
    font-family: "butler";
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 6px;
}

.search-no-results span {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.35);
}

.mobile-menu,
.mobile-overlay {
    display: none;
}

.banner-sec {
    padding: 70px 0 70px;
    background: url(../images/banner-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 663px;
    display: flex;
    align-items: center;
}

.banner-content-wrapper {
    max-width: 40%;
}

section.banner-sec h6 {
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.banner-content-wrapper h1 {
    font-size: 65px;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 16px;
}

.banner-content-wrapper p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
}


.banner-content-wrapper a i {
    margin-left: 10px;
}

.signature {
    position: absolute;
    bottom: 20%;
    right: 5%;
}

.signature h5 {
    font-size: 85px;
    color: #fff;
    font-family: 'authentic';
}

.primary-btn a {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    margin-top: 15px;
    z-index: 1;
    transition: color 0.3s ease;
}

.primary-btn a i {
    margin-left: 6px;
}

.primary-btn a::before,
.primary-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-hover);
    /* Hover fill color */
    z-index: -1;
}

.primary-btn a::before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.primary-btn a::after {
    right: -20px;
    transform: translate(50%, -50%);
}

.primary-btn a:hover {
    color: #fff;
}

.primary-btn a:hover::before {
    animation: criss-cross-left 0.8s forwards;
}

.primary-btn a:hover::after {
    animation: criss-cross-right 0.8s forwards;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
        width: 20px;
        height: 20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
        transform: translate(-50%, -50%);
    }

    100% {
        left: 50%;
        width: 320px;
        height: 320px;
        transform: translate(-50%, -50%);
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
        width: 20px;
        height: 20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
        transform: translate(50%, -50%);
    }

    100% {
        right: 50%;
        width: 320px;
        height: 320px;
        transform: translate(50%, -50%);
    }
}

.types-sec {
    padding: 24px 0 24px;
    border-bottom: 1px solid #00000033;
}

.types-content-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    column-gap: 40px;
}

.types-boxes {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.types-boxes-content h4 {
    margin: 0;
    font-size: 25px;
}

.types-boxes:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: #00000033;
}

section.our-story {
    padding: 70px 0 70px;
}

.story-boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px;
    align-items: center;
}

.story-content-wrapper h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.story-content-wrapper h2 {
    font-size: 60px;
    margin-bottom: 15px;
    color: #222;
}

.story-content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 17px;
}

section.collections-sec {
    padding: 70px 0 70px;
}

.collections-heading-wrapper {
    text-align: center;
    padding-bottom: 30px;
}

.collections-heading-wrapper h6 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.collections-heading-wrapper h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

.collections-heading-wrapper p {
    font-size: 16px;
    width: 40%;
    margin: 0 auto;
}

.collections-boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.collection-box {
    position: relative;
    border-radius: 12px;
}

.collection-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.collection-box-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 45px;
}

.collection-box-content p {
    font-size: 16px;
    width: 60%;
    line-height: 1.6;
}

.collection-box-content h4 {
    font-size: 45px;
    line-height: 1;
    color: #222222;
}

/* =============================================
   Products Section
   ============================================= */

section.products-sec {
    padding: 70px 0;
}

.products-heading-wrapper {
    text-align: center;
    padding-bottom: 30px;
}

.products-heading-wrapper h6 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--primary-color);

}

.products-heading-wrapper h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

.products-heading-wrapper p {
    font-size: 16px;
    width: 40%;
    margin: 0 auto;
}

/* --- Tabs --- */
.products-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.products-tab {
    font-family: "poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 32px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.products-tab:hover {
    background: rgba(154, 126, 72, 0.1);
}

.products-tab.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.products-tab .tab-arrow {
    display: inline-block;
    margin-left: 8px;
    font-size: 13px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.products-tab.active .tab-arrow {
    color: var(--white-color);
}

.products-tab:not(.active):hover .tab-arrow {
    color: var(--primary-color);
}

/* --- Tab Panels --- */
.products-tab-panel {
    display: none;
}

.products-tab-panel.active {
    display: block;
}

/* --- Product Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* --- Product Card --- */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-img-area {
    background: #F0E7D3;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 200px;
}

.product-img-area img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
}

.product-info {
    padding: 28px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.product-info h3 {
    font-size: 25px;
    margin-bottom: 6px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #222222;
}

.product-info .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: 'butler';
}

.product-info .primary-btn {
    margin-top: auto;
    padding-top: 8px;
}

.product-info .primary-btn a {
    padding: 12px 24px;
    font-size: 14px;
}

.community-sec {
    padding: 60px 0 70px;
    background: url(../images/community-sec.webp) no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.community-sec h6 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.community-sec h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

.community-sec p {
    font-size: 16px;
    width: 40%;
}

.testimonials-sec {
    padding: 70px 0 70px;
}

.testimonials-heading-wrapper {
    text-align: center;
    padding-bottom: 20px;
}

.testimonials-heading-wrapper h6 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.testimonials-heading-wrapper h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

.testimonials-heading-wrapper p {
    font-size: 16px;
    width: 40%;
    margin: 0 auto;
}

.testimonials-box {
    padding: 24px !important;
    background: #F9F6F0;
    border-radius: 30px;
    min-height: 320px !important;
}

.ratings i {
    color: #E3B452;
    margin-bottom: 16px;
}

.testimonial-desc p {
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial-user-content h5 {
    font-size: 25px;
    text-transform: capitalize;
}

.testimonial-user-content p {
    font-size: 16px;
    margin: 0;
}

/* ---------------------------------------------
   Testimonials Slider
   --------------------------------------------- */
.testimonials-sec {
    position: relative;
    padding-left: 80px;
    padding-right: 80px;
}

.testimonials-slider {
    padding: 0 20px;
    overflow: hidden;
}

.testimonials-slider .slick-list {
    margin: 0 -10px;
    padding: 10px 0 !important;
}

.testimonials-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonials-slider .slick-slide {
    padding: 0 10px;
    height: auto;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.testimonials-slider .slick-slide.slick-active {
    opacity: 1;
}

.testimonials-slider .testimonials-box {
    height: 100%;
    overflow: hidden;
    transition: .45s ease;
}



.testimonials-slider .testimonials-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: rotate(25deg);
    transition: .7s ease;
}

.testimonials-slider .testimonials-box:hover {
    transform: translateY(-8px);
}

.testimonials-slider .testimonials-box:hover::after {
    left: 160%;
}

.testimonials-arrow {
    position: absolute;
    top: 65%;
    transform: translateY(-65%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.testimonials-prev {
    left: 60px;
}

.testimonials-next {
    right: 60px;
}

.testimonial-avatar {
    width: 85px;
}

.testimonials-arrow:hover {
    background: #b8922d;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(193, 154, 47, 0.35);
}

.testimonials-arrow:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 8px rgba(193, 154, 47, 0.25);
}

section.testimonials-sec .primary-btn a {
    padding: 16px 46px;
}

.slick-slide {
    margin: 0 15px;
}

section.newsletter-sec {
    padding: 30px 0 0px;
}

.newsletter-wrapper {
    padding: 58px 70px 40px;
    background: var(--primary-color);
    border-radius: 40px 40px 0 0;
    display: flex;
    align-items: center;
    gap: 70px;
}

.newsletter-heading h2 {
    font-size: 50px;
    color: #fff;
    line-height: 1;
}

.newsletter-heading p {
    font-size: 15px;
    color: #fff;
}

.newsletter-form-parent {
    position: relative;
}

.newsletter-form-parent input {
    width: 100%;
    padding: 20px 24px;
    border: 0;
    border-radius: 34px;
    font-family: 'butler';
    font-weight: 500;
    color: #000;
}

.newsletter-form {
    width: 50%;
}

.newsletter-heading {
    width: 50%;
}

.newsletter-btn {
    position: absolute;
    top: -1px;
    right: -1px;
}

.newsletter-btn button {
    background: #000;
    color: #fff;
    padding: 21px 70px;
    border-radius: 40px;
    border: 2px solid transparent;
    font-family: 'Poppins';
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.newsletter-btn button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 126, 72, 0.35);
}

.newsletter-btn button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(154, 126, 72, 0.25);
}

.newsletter-btn button:focus-visible {
    outline: none;
    border-color: var(--white-color);
    box-shadow: 0 0 0 3px rgba(154, 126, 72, 0.5);
}

.newsletter-form-parent input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form-parent input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(154, 126, 72, 0.35);
}

.footer-sec {
    background: url(../images/footer-bg.webp) no-repeat right center;
    background-size: cover;
    padding: 80px 0 30px;
}

.footer-rows-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding-bottom: 125px;
}

.footer-logo-wrapper img {
    margin-bottom: 25px;
}

.footer-logo-wrapper p,
.quick-links ul li a,
.other-links ul li a,
.copyright-sec p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white-color);
    margin: 0;
}

.quick-links h3,
.other-links h3,
.social-links h3 {
    font-size: 35px;
    color: var(--white-color);
    margin-bottom: 25px;
}

.quick-links {
    padding-left: 50px;
}

.quick-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 15px;
}

.quick-links ul li:last-child {
    margin-bottom: 0;
}

.quick-links ul li a {
    text-decoration: none;
    transition: 0.3s ease;
}

.quick-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.other-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.other-links ul li {
    margin-bottom: 15px;
}

.other-links ul li:last-child {
    margin-bottom: 0;
}

.other-links ul li a {
    text-decoration: none;
    transition: 0.3s ease;
}

.other-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

.social-box i {
    color: var(--white-color);
    font-size: 20px;
}

.social-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(154, 126, 72, 0.35);
}

.copyright-sec {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 25px;
    text-align: center;
}

.copyright-sec p {
    margin: 0;
}

.copyright-sec p strong {
    font-weight: 700;
    color: var(--white-color);
}

/* About Us */
.inner-banner-sec {
    position: relative;
    padding: 70px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: url(../images/inner-banner-bg.webp) no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
}

.inner-banner-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, .88) 0%,
            rgba(0, 0, 0, .72) 28%,
            rgba(0, 0, 0, .42) 58%,
            rgba(0, 0, 0, .15) 82%,
            transparent 100%);
    z-index: 1;
}

.inner-banner-wrapper {
    position: relative;
    z-index: 2;
}

.inner-banner-wrapper h2 {
    color: var(--white-color);
    margin-bottom: 18px;
    font-size: 70px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.breadcrumb-list li a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Poppins';
    font-size: 18px;
}

.breadcrumb-list li a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li i {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list .active {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    font-family: 'Poppins';
}

/* =============================================
   About Page Ã¢â‚¬â€œ Section Heading (shared)
   ============================================= */

.about-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.about-section-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.about-section-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

/* =============================================
   About Story
   ============================================= */

.about-story-sec {
    padding: 80px 0;
}

.about-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-img {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.about-story-img img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.about-story-decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    opacity: 0.25;
    z-index: 0;
}

.about-story-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.about-story-content h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
    margin-bottom: 20px;
}

.about-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-story-content p:last-of-type {
    margin-bottom: 0;
}

/* =============================================
   Mission & Vision
   ============================================= */

.about-mission-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-mission-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-mission-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #c9a84c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.about-mission-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.about-mission-card h3 {
    font-size: 34px;
    color: #222;
    margin-bottom: 16px;
}

.about-mission-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.about-mission-line {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 28px;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.about-mission-card:hover .about-mission-line {
    width: 80px;
}

/* =============================================
   Why Choose Us Ã¢â‚¬â€œ Features Grid
   ============================================= */

.about-features-sec {
    padding: 80px 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
    background: var(--primary-color);
    transform: scale(1.08);
}

.about-feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.about-feature-card:hover .about-feature-icon i {
    color: var(--white-color);
}

.about-feature-card h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.about-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* =============================================
   Our Process Ã¢â‚¬â€œ Timeline
   ============================================= */

.about-process-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.about-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
}

.about-process-line {
    position: absolute;
    top: 76px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    opacity: 0.35;
    z-index: 0;
}

.about-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-process-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-process-step:hover .about-process-step-icon {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(154, 126, 72, 0.3);
}

.about-process-step-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.about-process-step:hover .about-process-step-icon i {
    color: var(--white-color);
}

.about-process-step-content h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.about-process-step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    max-width: 240px;
    margin: 0 auto;
}

/* =============================================
   Counters
   ============================================= */

.about-counters-sec {
    padding: 80px 0;
    background: url(../images/about-us-timeline.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

.about-counters-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.about-counters-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.about-counter-item {
    padding: 20px;
}

.about-counter-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(154, 126, 72, 0.2);
    border: 2px solid rgba(154, 126, 72, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-counter-icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.about-counter-number {
    font-family: "butler";
    font-size: 56px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 8px;
}

.about-counter-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   Community Page â€“ Section Heading (shared)
   ============================================= */

.community-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.community-section-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.community-section-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

/* =============================================
   Community Introduction
   ============================================= */

.community-intro-sec {
    padding: 80px 0;
}

.community-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-intro-img {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.community-intro-img img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.community-intro-decor {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 160px;
    height: 160px;
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    opacity: 0.25;
    z-index: 0;
}

.community-intro-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.community-intro-content h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
    margin-bottom: 20px;
}

.community-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.community-intro-content p:last-of-type {
    margin-bottom: 0;
}

.community-intro-content .primary-btn {
    margin-top: 28px;
}

/* =============================================
   Why Join Our Community â€“ Features Grid
   ============================================= */

.community-features-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.community-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.community-feature-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.community-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.community-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.community-feature-card:hover::before {
    transform: scaleX(1);
}

.community-feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.community-feature-card:hover .community-feature-icon {
    background: var(--primary-color);
    transform: scale(1.08);
}

.community-feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.community-feature-card:hover .community-feature-icon i {
    color: var(--white-color);
}

.community-feature-card h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.community-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* =============================================
   Community Benefits
   ============================================= */

.community-benefits-sec {
    padding: 80px 0;
}

.community-benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-benefits-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.community-benefits-img img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
}

.community-benefits-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.community-benefits-content h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
    margin-bottom: 20px;
}

.community-benefits-content>p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
}

.community-benefits-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.community-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.community-benefits-list li:last-child {
    margin-bottom: 0;
}

.community-benefit-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #c9a84c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.community-benefit-check i {
    font-size: 14px;
    color: var(--white-color);
}

.community-benefits-list li span {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* =============================================
   Upcoming Events
   ============================================= */

.community-events-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.community-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.community-event-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.community-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.community-event-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.community-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.community-event-card:hover .community-event-img img {
    transform: scale(1.06);
}

.community-event-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    line-height: 1;
    z-index: 1;
}

.community-event-day {
    display: block;
    font-family: "butler";
    font-size: 28px;
    font-weight: 700;
    color: var(--white-color);
}

.community-event-month {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-top: 2px;
}

.community-event-content {
    padding: 28px 28px 32px;
}

.community-event-content h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.community-event-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.community-event-content .primary-btn a {
    padding: 12px 24px;
    font-size: 14px;
}

/* =============================================
   Community Gallery
   ============================================= */

.community-gallery-sec {
    padding: 80px 0;
}

.community-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.community-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 280px;
}

.community-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.community-gallery-item:hover img {
    transform: scale(1.06);
}

.community-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(154, 126, 72, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.community-gallery-item:hover .community-gallery-overlay {
    background: rgba(154, 126, 72, 0.45);
}

.community-gallery-overlay i {
    font-size: 28px;
    color: var(--white-color);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.community-gallery-item:hover .community-gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* =============================================
   FAQ
   ============================================= */

.community-faq-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.community-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.community-faq-item {
    background: var(--white-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.community-faq-item:last-child {
    margin-bottom: 0;
}

.community-faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.community-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
}

.community-faq-header h4 {
    font-size: 20px;
    color: #222;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 16px;
}

.community-faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.community-faq-icon i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.community-faq-item.active .community-faq-icon {
    background: var(--primary-color);
}

.community-faq-item.active .community-faq-icon i {
    color: var(--white-color);
    transform: rotate(45deg);
}

.community-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.community-faq-body p {
    padding: 0 28px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.community-faq-item.active .community-faq-body {
    max-height: 300px;
}

/* =============================================
   Join Community CTA
   ============================================= */

.community-cta-sec {
    padding: 100px 0;
    background: url(../images/community-6.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

.community-cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.community-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.community-cta-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.community-cta-content h2 {
    font-size: 60px;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: 20px;
}

.community-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.community-cta-content .primary-btn {
    display: inline-flex;
}

/* =============================================
   Shop Page â€“ Homepage-Matched Redesign
   ============================================= */

/* --- Layout --- */
.sp {
    padding: 60px 0 90px;
}

.sp-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* --- Sidebar --- */
.sp-sidebar {
    width: 280px;
    min-width: 280px;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(154, 126, 72, 0.2) transparent;
}

.sp-sidebar::-webkit-scrollbar { width: 4px; }
.sp-sidebar::-webkit-scrollbar-thumb {
    background: rgba(154, 126, 72, 0.2);
    border-radius: 10px;
}

.sp-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid #E8E3DA;
    margin-bottom: 20px;
}

.sp-sidebar-label {
    font-family: "butler";
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.sp-sidebar-close {
    display: none;
}

/* --- Filter Block (always expanded) --- */
.sp-filter-block {
    padding: 18px 0;
    border-bottom: 1px solid #E8E3DA;
}

.sp-filter-block:last-of-type {
    border-bottom: none;
}

.sp-block-title {
    font-family: "butler";
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 14px;
    line-height: 1;
}

/* --- Search --- */
.sp-search-wrap {
    position: relative;
}

.sp-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #aaa;
    transition: color 0.3s ease;
}

.sp-search-input {
    width: 100%;
    border: 1.5px solid #E8E3DA;
    border-radius: 50px;
    padding: 12px 18px 12px 42px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #333;
    background: #FAFAF5;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sp-search-input::placeholder { color: #B0A89C; }

.sp-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(154, 126, 72, 0.08);
}

.sp-search-wrap:focus-within .sp-search-icon {
    color: var(--primary-color);
}

/* --- Checkbox List --- */
.sp-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sp-check-list li {
    margin-bottom: 6px;
}

.sp-check-list li:last-child {
    margin-bottom: 0;
}

.sp-check-list li label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #666;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.sp-check-list li label:hover {
    background: #F9F6F0;
    color: #222;
}

.sp-check-list li label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
}

.sp-check-list li label span {
    flex: 1;
}

.sp-check-list li label em {
    font-style: normal;
    font-size: 11px;
    color: #B0A89C;
    font-family: "Poppins", sans-serif;
}

/* --- Price Range --- */
.sp-range-wrap {
    padding: 6px 0 2px;
}

.sp-range-track {
    width: 100%;
    height: 4px;
    background: #E8E3DA;
    border-radius: 10px;
    position: relative;
    margin-bottom: 14px;
}

.sp-range-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, var(--primary-color), #C9A84C);
    border-radius: 10px;
}

.sp-range-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: transparent;
    outline: none;
    position: relative;
    z-index: 1;
    margin-top: -20px;
    cursor: pointer;
}

.sp-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sp-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(154, 126, 72, 0.3);
}

.sp-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.sp-range-labels {
    display: flex;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* --- Tags --- */
.sp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sp-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #E0DBD3;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sp-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-1px);
}

/* --- Clear Button --- */
.sp-clear-btn {
    width: 100%;
    padding: 13px 20px;
    border: 1.5px solid #D6CEBD;
    border-radius: 50px;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.sp-clear-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* --- Overlay (mobile) --- */
.sp-overlay {
    display: none;
}

/* --- Main Content --- */
.sp-main {
    flex: 1;
    min-width: 0;
}

/* --- Toolbar --- */
.sp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8E3DA;
}

.sp-toolbar-left {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.sp-mobile-filter-btn {
    display: none;
}

.sp-title {
    font-family: "butler";
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1;
}

.sp-count {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #B0A89C;
}

.sp-toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* --- Sort --- */
.sp-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-sort-label {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

.sp-sort-select {
    position: relative;
}

.sp-sort-select select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #E0DBD3;
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #555;
    background: transparent;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.sp-sort-select select:focus {
    border-color: var(--primary-color);
}

.sp-sort-select > i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    color: var(--primary-color);
    pointer-events: none;
}

/* --- View Toggle --- */
.sp-view-toggle {
    display: flex;
    border: 1px solid #E0DBD3;
    border-radius: 8px;
    overflow: hidden;
}

.sp-view-btn {
    width: 36px;
    height: 34px;
    border: none;
    background: transparent;
    color: #BBB;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.sp-view-btn + .sp-view-btn {
    border-left: 1px solid #E0DBD3;
}

.sp-view-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.sp-view-btn:hover:not(.active) {
    background: #F9F6F0;
    color: var(--primary-color);
}

/* --- Product Grid (4 columns) --- */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- Product Card (Homepage-matched base) --- */
.sp-card {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

/* --- Card Image (Homepage-matched: beige bg, padded, centered) --- */
.sp-card-img {
    position: relative;
    background: #F0E7D3;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 200px;
    height: 200px;
}

.sp-card-img img {
    /* max-height: 200px; */
    width: auto;
    max-width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* height: 100%; */
}

/* --- Badge --- */
.sp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.sp-badge-new {
    background: #2D6A4F;
    color: #fff;
}

.sp-badge-sale {
    background: #C0392B;
    color: #fff;
}

.sp-badge-organic {
    background: var(--primary-color);
    color: #fff;
}

/* --- Wishlist --- */
.sp-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #999;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(4px);
}

.sp-card:hover .sp-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.sp-wishlist:hover {
    color: #E74C3C;
    background: #fff;
}

/* --- Card Info (Homepage-matched: centered, same typography) --- */
.sp-card-info {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.sp-card-cat {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    margin-bottom: 6px;
}

.sp-card-title {
    font-family: "butler";
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.2;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

/* --- Rating --- */
.sp-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.sp-card-rating i {
    font-size: 11px;
    color: #F0B429;
}

.sp-card-rating span {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    color: #B0A89C;
    margin-left: 6px;
}

/* --- Price (Homepage-matched: butler, gold) --- */
.sp-price {
    font-family: "butler";
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.sp-price-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.sp-price-old {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #C5C0B8;
    text-decoration: line-through;
}

.sp-price-group .sp-price {
    margin-bottom: 0;
}

/* --- Card Button (Homepage-matched: pill CTA with criss-cross) --- */
.sp-card-btn {
    margin-top: auto;
    padding-top: 8px;
}

.sp-card-btn a {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    z-index: 1;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sp-card-btn a i {
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.sp-card-btn a::before,
.sp-card-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-hover);
    z-index: -1;
}

.sp-card-btn a::before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.sp-card-btn a::after {
    right: -20px;
    transform: translate(50%, -50%);
}

.sp-card-btn a:hover {
    color: #fff;
}

.sp-card-btn a:hover::before {
    animation: criss-cross-left 0.8s forwards;
}

.sp-card-btn a:hover::after {
    animation: criss-cross-right 0.8s forwards;
}

.sp-card-btn a:hover i {
    transform: translateX(4px);
}

/* --- Pagination --- */
.sp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #E8E3DA;
}

.sp-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #E0DBD3;
    border-radius: 10px;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-page:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sp-page.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 14px rgba(154, 126, 72, 0.25);
}

.sp-page-prev,
.sp-page-next {
    font-size: 12px;
}

/* =============================================
   Contact Page
   ============================================= */

/* --- Contact Introduction --- */
.ct-intro-sec {
    padding: 80px 0;
}

.ct-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ct-intro-img {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.ct-intro-img img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.ct-intro-decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    opacity: 0.25;
    z-index: 0;
}

.ct-intro-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.ct-intro-content h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
    margin-bottom: 20px;
}

.ct-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.ct-intro-content p:last-of-type {
    margin-bottom: 0;
}

.ct-intro-content .primary-btn {
    margin-top: 28px;
}

/* --- Contact Information Cards --- */
.ct-info-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ct-info-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ct-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ct-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ct-info-card:hover::before {
    transform: scaleX(1);
}

.ct-info-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ct-info-card:hover .ct-info-icon {
    background: var(--primary-color);
    transform: scale(1.08);
}

.ct-info-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.ct-info-card:hover .ct-info-icon i {
    color: var(--white-color);
}

.ct-info-card h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.ct-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* --- Contact Form --- */
.ct-form-sec {
    padding: 80px 0;
}

.ct-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.ct-form-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ct-form-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.ct-form-heading h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
}

.ct-form-sec .ct-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-form-sec .ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ct-form-sec .ct-form-group {
    position: relative;
}

.ct-form-sec .ct-form-group.ct-form-full {
    width: 100%;
}

.ct-form-sec .ct-form-group input,
.ct-form-sec .ct-form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1.5px solid #E0DBD3;
    border-radius: 12px;
    background: #FAFAF5;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ct-form-sec .ct-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.ct-form-sec .ct-form-group input:focus,
.ct-form-sec .ct-form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(154, 126, 72, 0.1);
    background: var(--white-color);
}

.ct-form-sec .ct-form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.ct-form-sec .ct-form-group input:focus ~ label,
.ct-form-sec .ct-form-group input:not(:placeholder-shown) ~ label,
.ct-form-sec .ct-form-group textarea:focus ~ label,
.ct-form-sec .ct-form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 4px;
}

.ct-form-sec .ct-form-submit {
    text-align: center;
    margin-top: 8px;
}

.ct-form-sec .ct-form-submit .primary-btn a {
    padding: 16px 46px;
}

/* --- Why Contact Us --- */
.ct-why-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.ct-why-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ct-why-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.ct-why-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

.ct-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ct-why-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ct-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ct-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ct-why-card:hover::before {
    transform: scaleX(1);
}

.ct-why-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ct-why-card:hover .ct-why-icon {
    background: var(--primary-color);
    transform: scale(1.08);
}

.ct-why-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.ct-why-card:hover .ct-why-icon i {
    color: var(--white-color);
}

.ct-why-card h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.ct-why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* --- Map Section --- */
.ct-map-sec {
    padding: 80px 0;
}

.ct-map-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ct-map-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.ct-map-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

.ct-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.ct-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* --- FAQ --- */
.ct-faq-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.ct-faq-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ct-faq-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.ct-faq-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

.ct-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.ct-faq-item {
    background: var(--white-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.ct-faq-item:last-child {
    margin-bottom: 0;
}

.ct-faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.ct-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
}

.ct-faq-header h4 {
    font-size: 20px;
    color: #222;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 16px;
}

.ct-faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ct-faq-icon i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.ct-faq-item.active .ct-faq-icon {
    background: var(--primary-color);
}

.ct-faq-item.active .ct-faq-icon i {
    color: var(--white-color);
    transform: rotate(45deg);
}

.ct-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ct-faq-body p {
    padding: 0 28px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.ct-faq-item.active .ct-faq-body {
    max-height: 300px;
}

/* --- Final CTA --- */
.ct-cta-sec {
    padding: 100px 0;
    background: url(../images/community-6.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

.ct-cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.ct-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ct-cta-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.ct-cta-content h2 {
    font-size: 60px;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: 20px;
}

.ct-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.ct-cta-content .primary-btn {
    display: inline-flex;
}
.ct-form-sec .ct-form-submit button.primary-btn{
    border: 0;
}

/* ============================================================
   Categories Page â€“ Desktop Styles
   ============================================================ */

/* --- Categories Introduction --- */
.cg-intro-sec {
    padding: 80px 0;
}

.cg-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cg-intro-img {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.cg-intro-img img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.cg-intro-decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    opacity: 0.25;
    z-index: 0;
}

.cg-intro-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cg-intro-content h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
    margin-bottom: 20px;
}

.cg-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.cg-intro-content .primary-btn {
    margin-top: 28px;
}

/* --- Featured Categories --- */
.cg-featured-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.cg-featured-heading {
    text-align: center;
    margin-bottom: 50px;
}

.cg-featured-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cg-featured-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
    margin-bottom: 16px;
}

.cg-featured-heading p {
    font-size: 16px;
    color: #666;
    width: 45%;
    margin: 0 auto;
}

.cg-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cg-category-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.cg-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.cg-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cg-category-card:hover::before {
    transform: scaleX(1);
}

.cg-category-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.cg-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cg-category-card:hover .cg-category-img img {
    transform: scale(1.06);
}

.cg-category-count {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 1;
}

.cg-category-info {
    padding: 24px 24px 28px;
}

.cg-category-info h4 {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

.cg-category-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 16px;
}

.cg-category-info .primary-btn a {
    padding: 12px 24px;
    font-size: 14px;
}

/* --- Popular Collections --- */
.cg-collections-sec {
    padding: 80px 0;
}

.cg-collections-heading {
    text-align: center;
    margin-bottom: 50px;
}

.cg-collections-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cg-collections-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
    margin-bottom: 16px;
}

.cg-collections-heading p {
    font-size: 16px;
    color: #666;
    width: 45%;
    margin: 0 auto;
}

.cg-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cg-collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.cg-collection-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.cg-collection-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cg-collection-card:hover .cg-collection-img img {
    transform: scale(1.06);
}

.cg-collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 32px;
    border-radius: 16px;
}

.cg-collection-overlay h4 {
    font-size: 32px;
    color: var(--white-color);
    margin-bottom: 10px;
    line-height: 1.1;
}

.cg-collection-overlay p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.cg-collection-overlay .primary-btn a {
    padding: 12px 26px;
    font-size: 14px;
}

/* --- Why Shop By Category --- */
.cg-why-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.cg-why-heading {
    text-align: center;
    margin-bottom: 50px;
}

.cg-why-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cg-why-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
}

.cg-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cg-why-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cg-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cg-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cg-why-card:hover::before {
    transform: scaleX(1);
}

.cg-why-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cg-why-card:hover .cg-why-icon {
    background: var(--primary-color);
    transform: scale(1.08);
}

.cg-why-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.cg-why-card:hover .cg-why-icon i {
    color: var(--white-color);
}

.cg-why-card h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.cg-why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* --- Shop By Lifestyle --- */
.cg-lifestyle-sec {
    padding: 80px 0;
}

.cg-lifestyle-heading {
    text-align: center;
    margin-bottom: 50px;
}

.cg-lifestyle-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cg-lifestyle-heading h2 {
    font-size: 60px;
    line-height: 1;
    color: #222;
    margin-bottom: 16px;
}

.cg-lifestyle-heading p {
    font-size: 16px;
    color: #666;
    width: 45%;
    margin: 0 auto;
}

.cg-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cg-lifestyle-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cg-lifestyle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cg-lifestyle-img {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.cg-lifestyle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cg-lifestyle-card:hover .cg-lifestyle-img img {
    transform: scale(1.06);
}

.cg-lifestyle-info {
    padding: 28px 28px 32px;
}

.cg-lifestyle-info h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.cg-lifestyle-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 18px;
}

.cg-lifestyle-info .primary-btn a {
    padding: 12px 24px;
    font-size: 14px;
}

/* --- Featured CTA --- */
.cg-cta-sec {
    padding: 100px 0;
    background: url(../images/about-us-timeline.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

.cg-cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.cg-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cg-cta-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cg-cta-content h2 {
    font-size: 60px;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: 20px;
}

.cg-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cg-cta-content .primary-btn {
    display: inline-flex;
}


/* =============================================
   Coming Soon Page Styles
   ============================================= */

/* ---------------------------------------------
   Coming Soon Hero
   --------------------------------------------- */
.cs-hero-sec {
    padding: 80px 0;
}

.cs-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cs-hero-content h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cs-hero-content h2 {
    font-family: "butler";
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
    margin-bottom: 20px;
}

.cs-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
    max-width: 520px;
}

.cs-hero-content .primary-btn {
    display: inline-flex;
}

.cs-hero-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.cs-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* ---------------------------------------------
   Upcoming Collections
   --------------------------------------------- */
.cs-collections-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.cs-collections-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cs-collections-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cs-collections-heading h2 {
    font-family: "butler";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
    margin-bottom: 16px;
}

.cs-collections-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.cs-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cs-collection-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.cs-collection-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.cs-collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cs-collection-card:hover::before {
    transform: scaleX(1);
}

.cs-collection-img {
    position: relative;
    overflow: hidden;
}

.cs-collection-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cs-collection-card:hover .cs-collection-img img {
    transform: scale(1.06);
}

.cs-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.cs-collection-info {
    padding: 24px;
}

.cs-collection-info h4 {
    font-family: "butler";
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.cs-collection-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

.cs-collection-info .primary-btn {
    display: inline-flex;
}

.cs-collection-info .primary-btn a {
    padding: 10px 22px;
    font-size: 13px;
}

/* ---------------------------------------------
   Countdown Section
   --------------------------------------------- */
.cs-countdown-sec {
    padding: 100px 0;
    background: url(../images/about-us-timeline.webp) center/cover no-repeat;
    position: relative;
}

.cs-countdown-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 0;
}

.cs-countdown-sec .container {
    position: relative;
    z-index: 1;
}

.cs-countdown-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cs-countdown-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cs-countdown-heading h2 {
    font-family: "butler";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    color: var(--white-color);
    margin-bottom: 16px;
}

.cs-countdown-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.cs-countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.cs-countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cs-countdown-num {
    font-family: "butler";
    font-size: 52px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
}

.cs-countdown-label {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.cs-countdown-separator {
    font-family: "butler";
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-top: -30px;
}

.cs-countdown-message {
    text-align: center;
    margin-top: 40px;
}

.cs-countdown-message h3 {
    font-family: "butler";
    font-size: 42px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 12px;
}

.cs-countdown-message p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.cs-countdown-message .primary-btn {
    display: inline-flex;
}

/* ---------------------------------------------
   Why You'll Love What's Coming
   --------------------------------------------- */
.cs-why-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.cs-why-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.cs-why-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cs-why-heading h2 {
    font-family: "butler";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
    margin-bottom: 16px;
}

.cs-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cs-why-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cs-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cs-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cs-why-card:hover::before {
    transform: scaleX(1);
}

.cs-why-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: background 0.4s ease;
}

.cs-why-icon i {
    font-size: 26px;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.cs-why-card:hover .cs-why-icon {
    background: var(--primary-color);
}

.cs-why-card:hover .cs-why-icon i {
    color: var(--white-color);
}

.cs-why-card h4 {
    font-family: "butler";
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.cs-why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* ---------------------------------------------
   Sneak Peek Gallery
   --------------------------------------------- */
.cs-gallery-sec {
    padding: 80px 0;
}

.cs-gallery-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cs-gallery-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cs-gallery-heading h2 {
    font-family: "butler";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
    margin-bottom: 16px;
}

.cs-gallery-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.cs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cs-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.cs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cs-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(154, 126, 72, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cs-gallery-overlay i {
    font-size: 28px;
    color: var(--white-color);
    transform: scale(0.6);
    transition: transform 0.4s ease;
}

.cs-gallery-item:hover img {
    transform: scale(1.08);
}

.cs-gallery-item:hover .cs-gallery-overlay {
    opacity: 1;
}

.cs-gallery-item:hover .cs-gallery-overlay i {
    transform: scale(1);
}

/* ---------------------------------------------
   Newsletter Section
   --------------------------------------------- */
.cs-newsletter-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.cs-newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cs-newsletter-content {
    text-align: center;
}

.cs-newsletter-content h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cs-newsletter-content h2 {
    font-family: "butler";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
    margin-bottom: 16px;
}

.cs-newsletter-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.cs-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
}

.cs-newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #333;
    background: var(--white-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.cs-newsletter-input::placeholder {
    color: #999;
}

.cs-newsletter-input:focus {
    border-color: var(--primary-color);
}

.cs-newsletter-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.cs-newsletter-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.cs-newsletter-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.cs-newsletter-btn:hover i {
    transform: translateX(3px);
}

/* ---------------------------------------------
   FAQ Section
   --------------------------------------------- */
.cs-faq-sec {
    padding: 80px 0;
}

.cs-faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.cs-faq-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cs-faq-heading h2 {
    font-family: "butler";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
    margin-bottom: 16px;
}

.cs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cs-faq-item {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
}

.cs-faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.cs-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cs-faq-question:hover {
    background: #F9F6F0;
}

.cs-faq-question h4 {
    font-family: "butler";
    font-size: 19px;
    font-weight: 600;
    color: #222;
}

.cs-faq-question i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.cs-faq-item.active .cs-faq-question i {
    transform: rotate(180deg);
}

.cs-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.cs-faq-item.active .cs-faq-answer {
    max-height: 300px;
}

.cs-faq-answer p {
    padding: 0 28px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ---------------------------------------------
   Final CTA
   --------------------------------------------- */
.cs-cta-sec {
    padding: 100px 0;
    background: url(../images/about-us-timeline.webp) center/cover no-repeat;
    position: relative;
}

.cs-cta-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 0;
}

.cs-cta-sec .container {
    position: relative;
    z-index: 1;
}

.cs-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cs-cta-content h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cs-cta-content h2 {
    font-family: "butler";
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: 20px;
}

.cs-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cs-cta-content .primary-btn {
    display: inline-flex;
}


/* =============================================
   Single Product Page Styles
   ============================================= */

/* ---------------------------------------------
   Product Details Section
   --------------------------------------------- */
.pd-details-sec {
    padding: 80px 0;
}

.pd-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* -- Gallery -- */
.pd-gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pd-gallery-main img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    transition: opacity 0.4s ease;
}

.pd-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pd-gallery-thumbs {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.pd-thumb {
    flex: 1;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pd-thumb:hover {
    transform: translateY(-3px);
}

.pd-thumb.active {
    border-color: var(--primary-color);
}

.pd-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* -- Product Info -- */
.pd-info {
    padding-top: 10px;
}

.pd-info-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #c9a84c);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.pd-info-title {
    font-family: "butler";
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #222;
    margin-bottom: 16px;
}

.pd-info-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-stars {
    display: flex;
    gap: 3px;
    color: #f5a623;
    font-size: 15px;
}

.pd-rating-score {
    font-family: "butler";
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.pd-reviews-link {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pd-reviews-link:hover {
    color: var(--primary-color);
}

.pd-info-price {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.pd-price-current {
    font-family: "butler";
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.pd-price-old {
    font-size: 20px;
    color: #aaa;
    text-decoration: line-through;
}

.pd-info-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.pd-info-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pd-info-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.pd-meta-label {
    font-weight: 600;
    color: #333;
}

.pd-in-stock {
    color: #2ecc71;
    font-weight: 600;
}

.pd-info-divider {
    height: 1px;
    background: #eee;
    margin-bottom: 24px;
}

/* -- Quantity Selector -- */
.pd-qty-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.pd-qty-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.pd-qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}

.pd-qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
}

.pd-qty-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.pd-qty-input {
    width: 52px;
    height: 44px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-family: "butler";
    font-size: 18px;
    font-weight: 600;
    color: #222;
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}

.pd-qty-input::-webkit-inner-spin-button,
.pd-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* -- Action Buttons -- */
.pd-info-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pd-btn {
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
}

.pd-btn-cart {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 16px 32px;
    font-size: 15px;
}

.pd-btn-cart:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(154, 126, 72, 0.3);
}

.pd-btn-buy {
    background: #222;
    color: var(--white-color);
    padding: 16px 32px;
    font-size: 15px;
}

.pd-btn-buy:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pd-btn-buy i {
    color: #f5c842;
}

.pd-btn-wishlist {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border: 2px solid #e0e0e0;
    background: var(--white-color);
    color: #999;
    font-size: 18px;
}

.pd-btn-wishlist:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-3px);
}

.pd-btn-wishlist i {
    transition: transform 0.3s ease;
}

.pd-btn-wishlist:hover i {
    transform: scale(1.15);
}

/* ---------------------------------------------
   Product Features
   --------------------------------------------- */
.pd-features-sec {
    padding: 50px 0;
    background: #F9F6F0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pd-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pd-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pd-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.pd-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(154, 126, 72, 0.12), rgba(154, 126, 72, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: var(--primary-color);
    transition: background 0.35s ease, color 0.35s ease;
}

.pd-feature-item:hover .pd-feature-icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.pd-feature-text h4 {
    font-family: "butler";
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.pd-feature-text p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* ---------------------------------------------
   Product Tabs
   --------------------------------------------- */
.pd-tabs-sec {
    padding: 80px 0;
}

.pd-tabs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pd-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 40px;
}

.pd-tab-btn {
    flex: 1;
    padding: 18px 24px;
    border: none;
    background: transparent;
    font-family: "butler";
    font-size: 17px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.pd-tab-btn:hover {
    color: #555;
    background: #F9F6F0;
}

.pd-tab-btn.active {
    color: var(--primary-color);
}

.pd-tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.pd-tab-panel {
    display: none;
}

.pd-tab-panel.active {
    display: block;
}

/* -- Description Tab -- */
.pd-desc-body h3 {
    font-family: "butler";
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.pd-desc-body p {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.pd-desc-body ul {
    margin-top: 16px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-desc-body ul li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.pd-desc-body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 13px;
}

/* -- Info Table -- */
.pd-info-table {
    width: 100%;
    border-collapse: collapse;
}

.pd-info-table tr {
    border-bottom: 1px solid #eee;
}

.pd-info-table tr:last-child {
    border-bottom: none;
}

.pd-info-table th {
    width: 200px;
    padding: 16px 20px 16px 0;
    font-family: "butler";
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-align: left;
    vertical-align: top;
}

.pd-info-table td {
    padding: 16px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    vertical-align: top;
}

/* -- Reviews Tab -- */
.pd-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pd-review-card {
    background: var(--white-color);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.3s ease;
}

.pd-review-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.pd-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pd-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #F9F6F0;
}

.pd-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-review-meta {
    flex: 1;
}

.pd-review-meta h4 {
    font-family: "butler";
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.pd-review-stars {
    display: flex;
    gap: 2px;
    color: #f5a623;
    font-size: 13px;
}

.pd-review-date {
    font-size: 13px;
    color: #aaa;
}

.pd-review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ---------------------------------------------
   Product Highlights
   --------------------------------------------- */
.pd-highlights-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.pd-highlights-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.pd-highlights-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.pd-highlights-heading h2 {
    font-family: "butler";
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
}

.pd-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.pd-highlight-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pd-highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.pd-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pd-highlight-card:hover::before {
    transform: scaleX(1);
}

.pd-highlight-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(154, 126, 72, 0.12), rgba(154, 126, 72, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
    transition: background 0.35s ease, color 0.35s ease;
}

.pd-highlight-card:hover .pd-highlight-icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.pd-highlight-card h4 {
    font-family: "butler";
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.pd-highlight-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #888;
}

/* ---------------------------------------------
   Related Products / Recently Viewed (shared)
   --------------------------------------------- */
.pd-related-sec,
.pd-recently-sec {
    padding: 80px 0;
}

.pd-related-heading,
.pd-recently-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.pd-related-heading h6,
.pd-recently-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.pd-related-heading h2,
.pd-recently-heading h2 {
    font-family: "butler";
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
}

.pd-related-grid,
.pd-recently-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.pd-related-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.pd-related-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.pd-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pd-related-card:hover::before {
    transform: scaleX(1);
}

.pd-related-img {
    position: relative;
    overflow: hidden;
}

.pd-related-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pd-related-card:hover .pd-related-img img {
    transform: scale(1.06);
}

.pd-related-info {
    padding: 24px;
}

.pd-related-info h3 {
    font-family: "butler";
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.pd-related-price {
    font-family: "butler";
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.pd-related-price-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.pd-related-price-old {
    font-size: 16px;
    color: #aaa;
    text-decoration: line-through;
}

.pd-related-price-group .pd-related-price {
    margin-bottom: 0;
}

.pd-related-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    padding: 10px 22px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.35s ease;
}

.pd-related-btn a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.pd-related-btn a i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.pd-related-btn a:hover i {
    transform: translateX(4px);
}

/* ---------------------------------------------
   Customer Reviews Summary
   --------------------------------------------- */
.pd-summary-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.pd-summary-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.pd-summary-score {
    text-align: center;
    padding: 40px 30px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pd-summary-num {
    font-family: "butler";
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

.pd-summary-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 12px;
}

.pd-summary-total {
    font-size: 14px;
    color: #888;
}

.pd-summary-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pd-bar-label {
    width: 52px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    flex-shrink: 0;
}

.pd-bar-track {
    flex: 1;
    height: 10px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.pd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    border-radius: 10px;
    transition: width 1s ease;
}

.pd-bar-count {
    width: 30px;
    font-size: 14px;
    color: #888;
    text-align: right;
    flex-shrink: 0;
}

/* ---------------------------------------------
   Leave A Review
   --------------------------------------------- */
.pd-reviewform-sec {
    padding: 80px 0;
}

.pd-reviewform-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.pd-reviewform-heading {
    text-align: center;
    margin-bottom: 40px;
}

.pd-reviewform-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.pd-reviewform-heading h2 {
    font-family: "butler";
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
}

.pd-reviewform {
    background: var(--white-color);
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pd-reviewform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pd-reviewform-field {
    margin-bottom: 22px;
}

.pd-reviewform-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.pd-reviewform-field input,
.pd-reviewform-field textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.pd-reviewform-field input:focus,
.pd-reviewform-field textarea:focus {
    border-color: var(--primary-color);
    background: var(--white-color);
}

.pd-reviewform-field textarea {
    resize: vertical;
    min-height: 120px;
}

.pd-rating-input {
    display: flex;
    gap: 6px;
    font-size: 22px;
    color: #ddd;
    cursor: pointer;
}

.pd-rating-input i.active {
    color: #f5a623;
}

.pd-btn-submit {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 16px 36px;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
}

.pd-btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(154, 126, 72, 0.3);
}

.pd-btn-submit i {
    transition: transform 0.3s ease;
}

.pd-btn-submit:hover i {
    transform: translateX(4px);
}

/* ---------------------------------------------
   FAQ Section
   --------------------------------------------- */
.pd-faq-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.pd-faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.pd-faq-heading h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.pd-faq-heading h2 {
    font-family: "butler";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    color: #222;
    margin-bottom: 16px;
}

.pd-faq-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.pd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-faq-item {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
}

.pd-faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.pd-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pd-faq-question:hover {
    background: #F5F0E8;
}

.pd-faq-question h4 {
    font-family: "butler";
    font-size: 19px;
    font-weight: 600;
    color: #222;
}

.pd-faq-question i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.pd-faq-item.active .pd-faq-question i {
    transform: rotate(180deg);
}

.pd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.pd-faq-item.active .pd-faq-answer {
    max-height: 300px;
}

.pd-faq-answer p {
    padding: 0 28px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ---------------------------------------------
   Final CTA
   --------------------------------------------- */
.pd-cta-sec {
    padding: 100px 0;
    background: url(../images/community-sec.webp) center/cover no-repeat;
    position: relative;
}

.pd-cta-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 0;
}

.pd-cta-sec .container {
    position: relative;
    z-index: 1;
}

.pd-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pd-cta-content h6 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.pd-cta-content h2 {
    font-family: "butler";
    font-size: 58px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--white-color);
    margin-bottom: 20px;
}

.pd-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.pd-cta-content .primary-btn {
    display: inline-flex;
}
/* =============================================
   Floating Notification System
   ============================================= */
.ct-notification-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.ct-notification {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 360px;
    max-width: 420px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(154, 126, 72, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(154, 126, 72, 0.08);
    opacity: 0;
    transform: translateX(40px);
}

.ct-notification-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white-color);
}

.ct-notification-icon.ct-icon-cart {
    background: linear-gradient(135deg, #9A7E48, #7D6538);
}

.ct-notification-icon.ct-icon-wishlist {
    background: linear-gradient(135deg, #e74c6f, #c0392b);
}

.ct-notification-body {
    flex: 1;
    min-width: 0;
}

.ct-notification-title {
    font-family: "butler";
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 2px;
    line-height: 1.3;
}

.ct-notification-product {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ct-notification-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    font-size: 12px;
    transition: all 0.2s ease;
}

.ct-notification-close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: var(--black-color);
}

.ct-notification-progress {
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: rgba(154, 126, 72, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.ct-notification-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #9A7E48, #c4a55a);
    border-radius: 3px;
    width: 100%;
    transform-origin: left;
}

.ct-notification-thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-notification-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   Cart Page
   ============================================= */
.ct-cart-sec {
    padding: 80px 0;
}

.ct-cart-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.ct-cart-table-wrap {
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 30px;
}

.ct-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.ct-cart-table thead {
    background: #f9f6f0;
}

.ct-cart-table thead th {
    font-family: "butler";
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-cart-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.ct-cart-table tbody tr:last-child {
    border-bottom: none;
}

.ct-cart-table tbody tr:hover {
    background: #fdfcfa;
}

.ct-cart-product {
    padding: 20px 24px;
}

.ct-cart-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ct-cart-product-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-cart-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ct-cart-product-img:hover img {
    transform: scale(1.08);
}

.ct-cart-product-name {
    font-family: "butler";
    font-size: 17px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.ct-cart-product-name:hover {
    color: var(--primary-color);
}

.ct-cart-product-sku {
    font-size: 13px;
    color: #888;
}

.ct-cart-price,
.ct-cart-total {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}

.ct-cart-qty {
    padding: 20px 24px;
}

.ct-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.ct-qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--black-color);
    font-size: 13px;
    transition: all 0.3s ease;
}

.ct-qty-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.ct-qty-input {
    width: 50px;
    height: 38px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    outline: none;
    -moz-appearance: textfield;
}

.ct-qty-input::-webkit-outer-spin-button,
.ct-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ct-cart-remove {
    padding: 20px 24px;
    text-align: center;
}

.ct-remove-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ct-remove-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: var(--white-color);
}

.ct-cart-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.ct-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white-color);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-continue-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.ct-cart-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ct-coupon-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.ct-coupon-card h3 {
    font-family: "butler";
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 8px;
}

.ct-coupon-card > p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ct-coupon-form {
    display: flex;
    gap: 12px;
}

.ct-coupon-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.ct-coupon-input:focus {
    border-color: var(--primary-color);
}

.ct-coupon-input::placeholder {
    color: #aaa;
}

.ct-coupon-btn {
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ct-coupon-btn:hover {
    background: var(--primary-hover);
}

.ct-summary-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.ct-summary-card h3 {
    font-family: "butler";
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 24px;
}

.ct-summary-rows {
    margin-bottom: 24px;
}

.ct-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    color: #555;
}

.ct-shipping-free {
    color: #27ae60;
    font-weight: 600;
}

.ct-summary-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 8px 0;
}

.ct-summary-total {
    font-family: "butler";
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
}

.ct-summary-total span:last-child {
    color: var(--primary-color);
}

.ct-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #9A7E48, #7D6538);
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(154, 126, 72, 0.3);
}

.ct-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(154, 126, 72, 0.4);
}

.ct-empty-cart {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.ct-empty-cart-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(154, 126, 72, 0.1), rgba(154, 126, 72, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.ct-empty-cart-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.ct-empty-cart h2 {
    font-family: "butler";
    font-size: 34px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 12px;
}

.ct-empty-cart p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* =============================================
   Checkout Page
   ============================================= */
.ct-checkout-sec {
    padding: 80px 0;
}

.ct-checkout-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.ct-billing-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.ct-billing-card h3 {
    font-family: "butler";
    font-size: 26px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 30px;
}

.ct-form-row {
    margin-bottom: 20px;
}

.ct-form-row:last-child {
    margin-bottom: 0;
}

.ct-form-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-form-third {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.ct-form-group {
    min-width: 0;
}

.ct-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 8px;
}

.ct-form-group label span {
    color: #e74c3c;
}

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    background: #fdfcfa;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(154, 126, 72, 0.1);
}

.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder {
    color: #aaa;
}

.ct-form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.ct-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.ct-order-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.ct-order-card h3 {
    font-family: "butler";
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
}

.ct-order-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.ct-order-items {
    padding: 8px 0 16px;
}

.ct-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ct-order-item:last-child {
    border-bottom: none;
}

.ct-order-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}

.ct-order-item-qty {
    font-size: 13px;
    color: #888;
    margin-left: 6px;
}

.ct-order-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
}

.ct-order-totals {
    padding-top: 8px;
}

.ct-order-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #555;
}

.ct-order-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 4px 0;
}

.ct-order-total {
    font-family: "butler";
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    padding-top: 14px;
}

.ct-order-total span:last-child {
    color: var(--primary-color);
}

.ct-payment-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.ct-payment-card h3 {
    font-family: "butler";
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
}

.ct-payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ct-payment-option:hover {
    border-color: rgba(154, 126, 72, 0.3);
}

.ct-payment-option input[type="radio"] {
    display: none;
}

.ct-payment-radio {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.ct-payment-option input[type="radio"]:checked ~ .ct-payment-radio {
    border-color: var(--primary-color);
}

.ct-payment-option input[type="radio"]:checked ~ .ct-payment-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.ct-payment-option input[type="radio"]:checked ~ .ct-payment-label {
    color: var(--primary-color);
    font-weight: 600;
}

.ct-payment-icon {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.ct-payment-label {
    font-size: 15px;
    color: var(--black-color);
    transition: all 0.3s ease;
}

.ct-place-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #9A7E48, #7D6538);
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(154, 126, 72, 0.3);
}

.ct-place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(154, 126, 72, 0.4);
}

.ct-order-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.ct-order-success.active {
    opacity: 1;
    pointer-events: all;
}

.ct-order-success-inner {
    background: var(--white-color);
    border-radius: 24px;
    padding: 50px 60px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.ct-order-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ct-order-success-icon i {
    font-size: 36px;
    color: var(--white-color);
}

.ct-order-success-inner h3 {
    font-family: "butler";
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.ct-order-success-inner p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

/* =============================================
   Wishlist Page
   ============================================= */
.ct-wishlist-sec {
    padding: 80px 0;
}

.ct-wishlist-table-wrap {
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 30px;
}

.ct-wishlist-table {
    width: 100%;
    border-collapse: collapse;
}

.ct-wishlist-table thead {
    background: #f9f6f0;
}

.ct-wishlist-table thead th {
    font-family: "butler";
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-wishlist-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.ct-wishlist-table tbody tr:last-child {
    border-bottom: none;
}

.ct-wishlist-table tbody tr:hover {
    background: #fdfcfa;
}

.ct-wishlist-product {
    padding: 20px 24px;
}

.ct-wishlist-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ct-wishlist-product-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-wishlist-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ct-wishlist-product-img:hover img {
    transform: scale(1.08);
}

.ct-wishlist-product-name {
    font-family: "butler";
    font-size: 17px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.ct-wishlist-product-name:hover {
    color: var(--primary-color);
}

.ct-wishlist-product-sku {
    font-size: 13px;
    color: #888;
}

.ct-wishlist-price {
    padding: 20px 24px;
}

.ct-price-current {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}

.ct-price-old {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 8px;
}

.ct-wishlist-stock {
    padding: 20px 24px;
}

.ct-stock-in {
    font-size: 14px;
    font-weight: 500;
    color: #27ae60;
}

.ct-stock-low {
    font-size: 14px;
    font-weight: 500;
    color: #e67e22;
}

.ct-wishlist-cart {
    padding: 20px 24px;
}

.ct-wishlist-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #9A7E48, #7D6538);
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(154, 126, 72, 0.25);
}

.ct-wishlist-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 126, 72, 0.35);
}

.ct-wishlist-remove {
    padding: 20px 24px;
    text-align: center;
}

.ct-wishlist-actions {
    display: flex;
    justify-content: flex-start;
}

/* =============================================
   Legal Pages (Terms & Conditions / Privacy Policy)
   ============================================= */

.lg-page-sec {
    padding: 80px 0 100px;
}

.lg-page-header {
    text-align: center;
    margin-bottom: 30px;
}

.lg-page-title {
    font-size: 58px;
    line-height: 1.1;
    color: var(--black-color);
    margin-bottom: 12px;
}

.lg-page-date {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #888;
    letter-spacing: 0.5px;
}

.lg-page-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* --- Page Layout (TOC + Content) --- */

.lg-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Sticky Table of Contents --- */

.lg-toc-sidebar {
    position: sticky;
    top: 10px;
}

.lg-toc-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.lg-toc-heading {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(154, 126, 72, 0.15);
}

.lg-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lg-toc-link {
    display: block;
    padding: 10px 14px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.lg-toc-link:hover {
    color: var(--primary-color);
    background: rgba(154, 126, 72, 0.06);
}

.lg-toc-link.active {
    color: var(--primary-color);
    background: rgba(154, 126, 72, 0.1);
    font-weight: 500;
}

.lg-toc-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
}

/* --- Content Main --- */

.lg-content-main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lg-content-section {
    background: var(--white-color);
    border-radius: 16px;
    padding: 40px 44px;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.lg-content-section:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
}

.lg-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lg-section-number {
    font-family: "butler";
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.25;
    line-height: 1;
    min-width: 42px;
}

.lg-section-header h3 {
    font-size: 26px;
    color: var(--black-color);
    line-height: 1.2;
}

.lg-section-body p {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 14px;
}

.lg-section-body p:last-child {
    margin-bottom: 0;
}

/* --- Contact List (used in Contact Information sections) --- */

.lg-contact-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.lg-contact-list li {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.lg-contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.lg-contact-list li strong {
    color: var(--black-color);
    font-weight: 600;
}

/* =============================================
   Testimonials Page â€“ Desktop Styles
   ============================================= */

/* --- Shared Section Heading --- */

.tm-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.tm-section-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.tm-section-heading h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
}

/* --- 1. Introduction --- */

.tm-intro-sec {
    padding: 80px 0;
}

.tm-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tm-intro-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.tm-intro-content h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
    margin-bottom: 20px;
}

.tm-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.tm-intro-content p:last-of-type {
    margin-bottom: 0;
}

.tm-intro-content .primary-btn {
    margin-top: 28px;
}

.tm-intro-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.tm-intro-img img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tm-intro-img:hover img {
    transform: scale(1.03);
}

/* --- 2. Customer Testimonials --- */

.tm-testimonials-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.tm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tm-testimonial-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tm-testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tm-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.tm-testimonial-card:hover::before {
    transform: scaleX(1);
}

.tm-testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.tm-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(154, 126, 72, 0.2);
}

.tm-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tm-testimonial-info h4 {
    font-size: 18px;
    color: var(--black-color);
    line-height: 1.2;
    margin-bottom: 4px;
}

.tm-testimonial-location {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tm-testimonial-location i {
    font-size: 11px;
    color: var(--primary-color);
}

.tm-testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.tm-testimonial-rating i {
    color: #E8A838;
    font-size: 14px;
}

.tm-testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 18px;
    flex-grow: 1;
}

.tm-testimonial-badge {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #2E8B57;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 139, 87, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
}

.tm-testimonial-badge i {
    font-size: 13px;
}

/* --- 3. Customer Success Stories --- */

.tm-stories-sec {
    padding: 80px 0;
}

.tm-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tm-story-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.tm-story-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.tm-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.tm-story-card:hover::before {
    transform: scaleX(1);
}

.tm-story-img {
    overflow: hidden;
}

.tm-story-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tm-story-card:hover .tm-story-img img {
    transform: scale(1.06);
}

.tm-story-content {
    padding: 28px 28px 32px;
}

.tm-story-content h4 {
    font-size: 22px;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 14px;
}

.tm-story-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 20px;
}

.tm-story-content .primary-btn a {
    font-size: 14px;
    padding: 12px 28px;
}

/* --- 4. Review Statistics --- */

.tm-stats-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.tm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tm-stat-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tm-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tm-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.tm-stat-card:hover::before {
    transform: scaleX(1);
}

.tm-stat-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.tm-stat-card:hover .tm-stat-icon {
    background: var(--primary-color);
    transform: scale(1.08);
}

.tm-stat-icon i {
    font-size: 26px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.tm-stat-card:hover .tm-stat-icon i {
    color: var(--white-color);
}

.tm-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1;
    margin-bottom: 8px;
}

.tm-stat-label {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

.tm-stat-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #888;
}

/* --- 5. Why Customers Love Us --- */

.tm-love-sec {
    padding: 80px 0;
}

.tm-love-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tm-love-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tm-love-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tm-love-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.tm-love-card:hover::before {
    transform: scaleX(1);
}

.tm-love-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.tm-love-card:hover .tm-love-icon {
    background: var(--primary-color);
    transform: scale(1.08);
}

.tm-love-icon i {
    font-size: 26px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.tm-love-card:hover .tm-love-icon i {
    color: var(--white-color);
}

.tm-love-card h4 {
    font-size: 22px;
    color: var(--black-color);
    margin-bottom: 14px;
}

.tm-love-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}

/* --- 6. Share Your Experience (Review Form) --- */

.tm-review-sec {
    padding: 80px 0;
    background: #F9F6F0;
}

.tm-review-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.tm-review-heading {
    text-align: center;
    margin-bottom: 50px;
}

.tm-review-heading h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.tm-review-heading h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #222;
}

.tm-review-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tm-review-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tm-review-group {
    position: relative;
}

.tm-review-group.tm-review-full {
    width: 100%;
}

.tm-review-group input,
.tm-review-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1.5px solid #E0DBD3;
    border-radius: 12px;
    background: #FAFAF5;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.tm-review-group textarea {
    resize: vertical;
    min-height: 140px;
}

.tm-review-group input:focus,
.tm-review-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(154, 126, 72, 0.1);
    background: var(--white-color);
}

.tm-review-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.tm-review-group input:focus ~ label,
.tm-review-group input:not(:placeholder-shown) ~ label,
.tm-review-group textarea:focus ~ label,
.tm-review-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 4px;
}

.tm-rating-select {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tm-rating-label {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.tm-rating-stars {
    display: flex;
    gap: 6px;
}

.tm-rating-stars i {
    font-size: 22px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.tm-rating-stars i:hover,
.tm-rating-stars i.active {
    color: #E8A838;
    transform: scale(1.15);
}

.tm-review-submit {
    text-align: center;
    margin-top: 8px;
}

.tm-review-submit .primary-btn a {
    padding: 16px 46px;
}

.tm-review-submit button.primary-btn {
    border: 0;
}

/* --- 7. Final CTA --- */

.tm-cta-sec {
    padding: 100px 0;
    background: url(../images/community-6.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

.tm-cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.tm-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tm-cta-content h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.tm-cta-content h2 {
    font-size: 60px;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: 20px;
}

.tm-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.tm-cta-content .primary-btn {
    display: inline-flex;
}

/* =============================================
   Gallery Lightbox (Community + Coming Soon)
   ============================================= */

.og-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.og-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.og-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.og-lightbox-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
}

.og-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-drag: none;
}

.og-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(4px);
}

.og-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.og-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(4px);
}

.og-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.og-lightbox-prev {
    left: 20px;
}

.og-lightbox-next {
    right: 20px;
}

.og-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 18px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    user-select: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .og-lightbox-content {
        padding: 50px 16px;
    }

    .og-lightbox-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .og-lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .og-lightbox-prev {
        left: 8px;
    }

    .og-lightbox-next {
        right: 8px;
    }

    .og-lightbox-counter {
        bottom: 14px;
        font-size: 12px;
        padding: 5px 14px;
    }
}
