:root {
    --home-bg: #f5ead8;
    --home-bg-strong: #efe0c7;
    --home-panel: rgba(255, 255, 255, 0.92);
    --home-panel-soft: rgba(255, 255, 255, 0.82);
    --home-text: #151515;
    --home-muted: #6b655c;
    --home-line: rgba(35, 28, 18, 0.1);
    --home-dark: #111111;
    --home-dark-soft: #27211b;
    --home-accent: #c86f2d;
    --home-accent-soft: #f8ebdd;
    --home-success: #2c6b4a;
    --home-radius-sm: 12px;
    --home-radius-md: 18px;
    --home-radius-lg: 30px;
    --home-shadow-sm: 0 10px 24px rgba(19, 16, 11, 0.08);
    --home-shadow-md: 0 18px 42px rgba(19, 16, 11, 0.12);
    --home-shadow-lg: 0 28px 62px rgba(19, 16, 11, 0.18);
}

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

*::before,
*::after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
}

body.home-page {
    font-family: "Inter", sans-serif;
    color: var(--home-text);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.62), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(211, 189, 160, 0.26), transparent 24%),
        linear-gradient(180deg, #faf4ea 0%, var(--home-bg) 100%);
    padding-top: 76px;
}

main#mainContent {
    display: grid;
    gap: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
}

img {
    width: 100%;
}

.hidden {
    display: none !important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1400;
    width: 100%;
    height: 76px;
    padding: 0 clamp(14px, 3vw, 32px);
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 251, 246, 0.84);
    border-bottom: 1px solid rgba(31, 24, 18, 0.08);
    backdrop-filter: blur(16px);
    transition: transform 0.32s ease;
}

.navbar.hide {
    transform: translateY(-100%);
}

.hamburger {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 12px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hamburger:hover {
    transform: translateY(-1px);
    border-color: rgba(17, 17, 17, 0.28);
}

.hamburger span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #111;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-search {
    position: relative;
    flex: 1 1 360px;
    max-width: 420px;
}

.home-search input {
    width: 100%;
    min-height: 44px;
    border-radius: 14px;
    border: 1px solid #ddd1bf;
    background: rgba(255, 255, 255, 0.92);
    padding: 0 14px;
    font-size: 13px;
    color: #1a1713;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.home-search input:focus {
    outline: none;
    border-color: var(--home-accent);
    box-shadow: 0 0 0 4px rgba(200, 111, 45, 0.14);
}

.home-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 340px;
    overflow: auto;
    display: none;
    border-radius: 16px;
    border: 1px solid #e4d7c6;
    background: #fff;
    box-shadow: var(--home-shadow-md);
    z-index: 1500;
}

.home-search-results.active {
    display: block;
}

.home-search-hint {
    padding: 14px;
    font-size: 12px;
    color: #7c7468;
}

.home-search-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #f1e8dc;
}

.home-search-item:last-child {
    border-bottom: none;
}

.home-search-item img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
    background: #efe5d5;
}

.home-search-item h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
}

.home-search-item p {
    margin: 4px 0 0;
    font-size: 11px;
    color: #726b60;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.nav-links a {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.9px;
    color: #231d16;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.82);
    color: #111;
    transform: translateY(-1px);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-area {
    display: flex;
    align-items: center;
}

.signin-btn,
.nav-icon,
.profile-circle {
    min-height: 40px;
    border-radius: 12px;
}

.signin-btn {
    padding: 0 16px;
    background: linear-gradient(135deg, #111 0%, #28221b 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.16);
}

.nav-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: #1b1712;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.06);
}

.nav-icon:hover,
.signin-btn:hover,
.profile-circle:hover {
    transform: translateY(-1px);
}

.cart-link-icon {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    border: 1px solid #fff;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-count-badge.hidden {
    display: none;
}

.profile-wrapper {
    display: none;
    position: relative;
    align-items: center;
}

.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111 0%, #2c261f 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid #e2d7c8;
    background: #fff;
    box-shadow: var(--home-shadow-md);
    display: none;
    gap: 4px;
    z-index: 1500;
}

.profile-menu.active {
    display: grid;
}

.profile-menu-head {
    padding: 10px 10px 12px;
    border-bottom: 1px solid #eee5d8;
    margin-bottom: 4px;
}

.profile-menu-head p {
    font-size: 13px;
    font-weight: 800;
}

.profile-menu-head span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #766f63;
    word-break: break-word;
}

.profile-menu button,
.profile-menu a {
    width: 100%;
    min-height: 38px;
    border-radius: 10px;
    padding: 0 11px;
    text-align: left;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #2a241d;
}

.profile-menu button:hover,
.profile-menu a:hover {
    background: #f7f1e8;
}

.profile-menu .danger {
    color: #a73b3b;
}

.profile-menu .danger:hover {
    background: #fff0f0;
}

.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1800;
    width: min(420px, 92vw);
    height: 100vh;
    transform: translateX(-108%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.34s ease, opacity 0.22s ease;
    background: linear-gradient(180deg, #fffdf9 0%, #f7f0e4 100%);
    border-right: 1px solid #e4d6c4;
    box-shadow: var(--home-shadow-lg);
}

.full-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.menu-shell {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #ecdfcd;
    background: rgba(255, 255, 255, 0.9);
}

.close-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #d9ccb9;
    background: #fff;
    color: #1f1a15;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #e6dac8;
    background: rgba(255, 255, 255, 0.92);
}

.tab {
    flex: 1;
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid #e2d5c2;
    background: #faf5ec;
    color: #655d51;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.tab.active {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 10px 18px rgba(17, 17, 17, 0.16);
}

.menu-search {
    padding: 14px;
    border-bottom: 1px solid #e8dcc9;
    background: linear-gradient(180deg, #fffaf2 0%, #faf4ea 100%);
}

.menu-search-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #7c7466;
    text-transform: uppercase;
}

.menu-search-input-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    padding: 4px;
    border-radius: 14px;
    border: 1px solid #deceb8;
    background: #fff;
}

.menu-search-input-wrap input {
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 14px;
    color: #1b1713;
}

.menu-search-input-wrap input:focus {
    outline: none;
}

.menu-search-btn {
    min-width: 78px;
    min-height: 38px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.menu-search-results {
    margin-top: 10px;
    max-height: 220px;
    overflow: auto;
    border-radius: 14px;
    border: 1px solid #e4d8c6;
    background: #fff;
}

.menu-search-hint {
    padding: 12px;
    font-size: 12px;
    color: #7a7266;
}

.menu-search-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f1e9dd;
}

.menu-search-item:last-child {
    border-bottom: none;
}

.menu-search-item img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    background: #eee4d4;
}

.menu-search-item h4 {
    font-size: 12px;
    font-weight: 800;
}

.menu-search-item p {
    margin-top: 3px;
    font-size: 10px;
    color: #776f63;
}

.menu-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    background: linear-gradient(180deg, #faf4ea 0%, #f4ecdf 100%);
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
}

.menu-link-block {
    border-radius: 18px;
    border: 1px solid #e4d7c5;
    background: rgba(255, 255, 255, 0.94);
    padding: 14px;
    display: grid;
    gap: 12px;
    box-shadow: var(--home-shadow-sm);
}

.menu-link-block h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #736a5d;
}

.menu-category-stack {
    display: grid;
    gap: 8px;
}

.menu-link-block a {
    min-height: 42px;
    border-radius: 12px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ebe1d2;
    background: #fcfaf6;
    font-size: 13px;
    font-weight: 700;
    color: #2b2722;
}

.menu-link-block a::after {
    content: "›";
    font-size: 16px;
    color: #a08f78;
}

.menu-link-block .menu-subcategory-link {
    margin-left: 14px;
    background: #f8f1e4;
    border-style: dashed;
    font-size: 12px;
}

.menu-cta-link {
    margin-top: 12px;
    min-height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111 0%, #2d2721 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 14px 24px rgba(17, 17, 17, 0.18);
}

.menu-bottom {
    padding: 12px 14px 16px;
    border-top: 1px solid #e8dccb;
    background: rgba(255, 255, 255, 0.94);
    display: grid;
    gap: 8px;
}

.menu-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.menu-bottom-btn,
.menu-bottom button {
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid #d9cdbb;
    background: #faf4ea;
    color: #221f1a;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 1700;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

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

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.hero {
    padding: 18px clamp(14px, 3vw, 30px) 0;
}

.slider {
    position: relative;
    min-height: clamp(480px, 78vh, 760px);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--home-shadow-lg);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

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

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

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.24) 54%, rgba(10, 10, 10, 0.46) 100%);
}

.slide-content {
    position: absolute;
    left: clamp(18px, 6vw, 86px);
    bottom: clamp(20px, 10vh, 86px);
    z-index: 2;
    max-width: min(620px, 86vw);
    color: #fff;
    display: grid;
    gap: 16px;
}

.hero-kicker,
.section-kicker,
.voices-kicker,
.thoughts-kicker,
.footer-kicker {
    width: fit-content;
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.slide-content h1 {
    font-size: clamp(42px, 7vw, 84px);
    line-height: 0.94;
    letter-spacing: -1.8px;
}

.slide-content p {
    font-size: clamp(15px, 1.65vw, 20px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-buttons a {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    background: #fff;
    color: #171412;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.hero-buttons a:last-child {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.arrow.left {
    left: 18px;
}

.arrow.right {
    right: 18px;
}

.dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.dot.active {
    background: #fff;
}

.trust-bar {
    width: min(1280px, 94vw);
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.trust-item {
    min-height: 108px;
    border-radius: 22px;
    border: 1px solid rgba(32, 24, 18, 0.08);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--home-shadow-sm);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-item .icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    background: #fff;
    color: #1a1713;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.trust-item p {
    font-size: 14px;
    line-height: 1.45;
    color: #3c342d;
}

.collection-banner,
.product-section,
.customer-voices,
.custom-studio-section {
    width: min(1280px, 94vw);
    margin: 22px auto 0;
}

.collection-banner {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 30px;
    border: 1px solid var(--home-line);
    box-shadow: var(--home-shadow-lg);
    background: #111;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.collection-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.collection-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.28) 56%, rgba(10, 10, 10, 0.58) 100%);
}

.collection-content,
.offer-timer {
    position: relative;
    z-index: 1;
}

.collection-content {
    padding: clamp(24px, 5vw, 40px);
    color: #fff;
    max-width: 620px;
    display: grid;
    gap: 14px;
}

.collection-content h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 0.96;
    letter-spacing: -1px;
}

.collection-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.offer-timer {
    margin: 24px;
    min-width: 220px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    padding: 18px;
    color: #fff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.offer-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.timer {
    margin: 12px 0 8px;
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.2px;
}

.offer-timer small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.product-section {
    border-radius: 30px;
    border: 1px solid var(--home-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(252, 248, 240, 0.94) 100%);
    padding: clamp(20px, 4vw, 34px);
    box-shadow: var(--home-shadow-sm);
}

.product-section.alt {
    background: linear-gradient(180deg, rgba(255, 249, 242, 0.92) 0%, rgba(246, 239, 228, 0.96) 100%);
}

.section-header {
    max-width: 780px;
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.section-kicker {
    color: #3d352b;
    border-color: #dfd0bc;
    background: #fbf4e9;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 0.98;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--home-muted);
}

.featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.72fr);
    gap: 16px;
}

.featured-products-stack,
.related-products-stack {
    display: grid;
    gap: 16px;
}

.featured-row,
.product-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-page .product-card {
    border-radius: 22px;
    border: 1px solid rgba(28, 22, 16, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--home-shadow-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: grid;
}

.home-page .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-md);
}

.home-product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #efe4d4 0%, #ebe1d2 100%);
}

.home-product-media img {
    height: 100%;
    object-fit: cover;
}

.home-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.home-product-badge {
    min-height: 24px;
    border-radius: 999px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    background: rgba(17, 17, 17, 0.76);
}

.home-product-badge.new {
    background: linear-gradient(135deg, var(--home-accent) 0%, #ab4e15 100%);
}

.home-product-badge.featured {
    background: linear-gradient(135deg, #214f62 0%, #13252d 100%);
}

.home-product-copy {
    padding: 14px;
    display: grid;
    gap: 8px;
    align-content: start;
}

.home-product-meta {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #7e7568;
}

.home-page .product-card h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.home-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.home-product-footer span {
    font-size: 16px;
    font-weight: 800;
}

.home-add-cart-btn {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #d7cab6;
    background: #fff;
    color: #1d1915;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.home-add-cart-btn:hover {
    background: #f8efe2;
    border-color: #111;
    transform: translateY(-1px);
}

.home-add-cart-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.cta-card {
    border-radius: 26px;
    padding: 24px;
    border: 1px solid rgba(26, 20, 14, 0.08);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(145deg, #17110d 0%, #2a211a 100%);
    color: #fff;
    display: grid;
    align-content: space-between;
    gap: 16px;
    min-height: 100%;
    box-shadow: var(--home-shadow-md);
}

.cta-card h3 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 0.96;
}

.cta-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.cta-card button {
    width: fit-content;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    color: #16120f;
    font-size: 12px;
    font-weight: 800;
}

.section-link {
    margin-top: 18px;
}

.section-link a {
    font-size: 13px;
    font-weight: 800;
    color: #241f18;
}

.customer-voices {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(30, 24, 16, 0.08);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.76), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 236, 226, 0.96) 100%);
    padding: clamp(20px, 4vw, 34px);
    box-shadow: var(--home-shadow-sm);
}

.voices-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 240px;
    height: 240px;
    top: -60px;
    left: -40px;
    background: rgba(255, 255, 255, 0.9);
}

.orb-2 {
    width: 280px;
    height: 280px;
    right: -80px;
    bottom: -90px;
    background: rgba(205, 177, 142, 0.42);
}

.voices-header {
    position: relative;
    z-index: 1;
    max-width: 720px;
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.voices-kicker,
.thoughts-kicker {
    color: #40372d;
    border-color: #dfd2be;
    background: rgba(255, 255, 255, 0.72);
}

.voices-header h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 0.98;
    letter-spacing: -1px;
}

.voices-header p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--home-muted);
}

.voices-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.voices-row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.voice-card,
.thoughts-card {
    border-radius: 22px;
    border: 1px solid rgba(24, 18, 12, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--home-shadow-sm);
    padding: 18px;
}

.voice-card {
    display: grid;
    gap: 14px;
}

.voice-card.featured-card {
    grid-column: span 4;
}

.voice-card.tall-card {
    grid-column: span 3;
}

.voice-card.wide-card {
    grid-column: span 5;
}

.voice-card.compact-card {
    grid-column: span 3;
}

.top-row .voice-card:not(.featured-card):not(.tall-card) {
    grid-column: span 3;
}

.thoughts-card {
    grid-column: span 2;
    display: grid;
    align-content: stretch;
    background: linear-gradient(145deg, #1b1612 0%, #2f251e 100%);
    color: #fff;
}

.thoughts-inner {
    display: grid;
    gap: 12px;
    align-content: center;
    height: 100%;
}

.thoughts-inner h3 {
    font-size: 28px;
    line-height: 1;
}

.thoughts-inner p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.thoughts-btn {
    width: fit-content;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    color: #171311;
    font-size: 12px;
    font-weight: 800;
}

.voice-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.voice-user {
    display: flex;
    gap: 10px;
    align-items: center;
}

.voice-user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.voice-user h4 {
    font-size: 14px;
    font-weight: 800;
}

.voice-user span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: #7b7367;
}

.voice-stars {
    font-size: 12px;
    font-weight: 800;
    color: #d2921f;
    letter-spacing: 0.8px;
}

.voice-text {
    font-size: 14px;
    line-height: 1.75;
    color: #413a32;
}

.voice-tags,
.mini-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.voice-tags span,
.mini-proof span {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #e1d4c1;
    background: #faf4ea;
    color: #5f584d;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}

.section-banner {
    width: min(1280px, 94vw);
    margin: 22px auto 0;
    height: clamp(220px, 38vw, 420px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--home-line);
    box-shadow: var(--home-shadow-sm);
    background: #e9decd;
}

.section-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-studio-section {
    position: relative;
    padding: 0;
    background: transparent;
}

.custom-studio-shell {
    border-radius: 30px;
    border: 1px solid #e4d7c5;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--home-shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.custom-studio-copy {
    padding: clamp(22px, 4vw, 40px);
    display: grid;
    align-content: center;
    gap: 14px;
}

.custom-studio-kicker {
    width: fit-content;
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid #dacdb8;
    background: #f8f2e7;
    color: #645b4f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-studio-copy h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.8px;
}

.custom-studio-copy p {
    font-size: 15px;
    line-height: 1.75;
    color: #5f564a;
}

.custom-studio-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.custom-studio-points span {
    min-height: 36px;
    border-radius: 10px;
    border: 1px solid #e3d7c5;
    background: #fff;
    color: #3f392f;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
}

.custom-studio-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-studio-actions a {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.custom-studio-actions .primary {
    background: linear-gradient(135deg, #111 0%, #2d2a26 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.custom-studio-actions .ghost {
    border: 1px solid #d6c9b6;
    background: #fff;
    color: #23201c;
}

.custom-studio-media {
    position: relative;
    min-height: 440px;
}

.custom-studio-media img {
    height: 100%;
    object-fit: cover;
}

.custom-studio-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.06) 58%, rgba(0, 0, 0, 0.42) 100%);
}

.custom-studio-pill {
    position: absolute;
    z-index: 1;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(0, 0, 0, 0.54);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.custom-studio-pill.pill-a {
    top: 18px;
    right: 18px;
}

.custom-studio-pill.pill-b {
    top: 64px;
    right: 18px;
}

.custom-studio-pill.pill-c {
    bottom: 18px;
    left: 18px;
}

.footer {
    width: min(1280px, 94vw);
    margin: 22px auto 32px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(145deg, #15110d 0%, #272018 100%);
    color: #fff;
    box-shadow: var(--home-shadow-lg);
}

.footer-shell {
    padding: clamp(22px, 4vw, 34px);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer-kicker {
    color: rgba(255, 255, 255, 0.86);
}

.footer-brand-block,
.footer-links-group {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-brand-block h3 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.8px;
}

.footer-brand-block p,
.footer-links-group p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

.footer-links-group h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.footer-links-group a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
    min-height: 60px;
    padding: 0 clamp(22px, 4vw, 34px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.66);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    text-align: center;
}

.auth-overlay {
    position: fixed;
    inset: 0;
    z-index: 1900;
    background: rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

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

.auth-box {
    position: relative;
    width: min(390px, 100%);
    border-radius: 26px;
    border: 1px solid #e4d7c5;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--home-shadow-lg);
    padding: 24px;
    display: grid;
    gap: 12px;
}

.auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #ddd0bd;
    background: #fff;
    color: #1d1814;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-box h2 {
    font-size: 28px;
    line-height: 1;
}

.auth-box h3 {
    font-size: 16px;
    margin-top: 6px;
}

.auth-box p {
    font-size: 13px;
    color: #6f675b;
}

.auth-box input {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid #d8cdbb;
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    color: #1b1814;
}

.auth-box input:focus {
    outline: none;
    border-color: var(--home-accent);
    box-shadow: 0 0 0 4px rgba(200, 111, 45, 0.14);
}

.auth-box button {
    min-height: 44px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, #111 0%, #2a241d 100%);
    color: #fff;
}

.auth-box .google-btn {
    border: 1px solid #d8cbb8;
    background: #fff;
    color: #171311;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1220px) {
    .nav-links {
        display: none;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        min-height: 280px;
    }

    .footer-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    body.home-page {
        padding-top: 70px;
    }

    .navbar {
        height: 70px;
        padding: 0 12px;
    }

    .home-search {
        display: none;
    }

    .slider {
        min-height: clamp(440px, 72vh, 640px);
        border-radius: 24px;
    }

    .collection-banner {
        grid-template-columns: 1fr;
        align-items: end;
    }

    .offer-timer {
        margin-top: 0;
        width: calc(100% - 48px);
    }

    .featured-row,
    .product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .voices-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .voice-card,
    .thoughts-card,
    .voice-card.featured-card,
    .voice-card.tall-card,
    .voice-card.wide-card,
    .voice-card.compact-card,
    .top-row .voice-card:not(.featured-card):not(.tall-card) {
        grid-column: span 1;
    }

    .custom-studio-shell {
        grid-template-columns: 1fr;
    }

    .custom-studio-media {
        min-height: 340px;
    }
}

@media (max-width: 760px) {
    body.home-page {
        padding-top: 64px;
    }

    .navbar {
        height: 64px;
    }

    .hero,
    .trust-bar,
    .collection-banner,
    .product-section,
    .customer-voices,
    .section-banner,
    .custom-studio-section,
    .footer {
        width: 95vw;
    }

    .slider,
    .collection-banner,
    .product-section,
    .customer-voices,
    .section-banner,
    .custom-studio-shell,
    .footer {
        border-radius: 22px;
    }

    .slide-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    .hero-kicker,
    .section-kicker,
    .voices-kicker,
    .thoughts-kicker,
    .footer-kicker {
        min-height: 28px;
        font-size: 10px;
    }

    .slide-content h1 {
        font-size: clamp(32px, 12vw, 52px);
    }

    .slide-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-buttons a {
        min-height: 40px;
        font-size: 12px;
    }

    .arrow {
        display: none;
    }

    .trust-bar {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 94px;
    }

    .offer-timer {
        width: auto;
        margin: 0 18px 18px;
    }

    .featured-row,
    .product-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .home-product-copy {
        padding: 12px;
    }

    .home-page .product-card h4 {
        font-size: 14px;
    }

    .home-product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .home-product-footer span {
        font-size: 14px;
    }

    .home-add-cart-btn {
        width: 100%;
    }

    .menu-bottom-row {
        grid-template-columns: 1fr;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .full-menu {
        width: 100vw;
        max-width: 100vw;
    }

    .nav-icon:first-of-type {
        display: none;
    }

    .featured-row,
    .product-row {
        grid-template-columns: 1fr;
    }

    .custom-studio-points {
        grid-template-columns: 1fr;
    }

    .section-banner {
        height: auto;
        aspect-ratio: 3 / 1;
    }

    .collection-content h2,
    .section-header h2,
    .voices-header h2,
    .custom-studio-copy h2 {
        line-height: 1.02;
    }

    .auth-box {
        padding: 20px;
    }
}

@media (max-width: 420px) {
    .slider,
    .collection-banner,
    .product-section,
    .customer-voices,
    .section-banner,
    .custom-studio-shell,
    .footer,
    .auth-box {
        border-radius: 18px;
    }

    .trust-item {
        padding: 14px;
    }

    .offer-timer {
        margin: 0 14px 14px;
    }

    .section-header,
    .voices-header,
    .collection-content,
    .custom-studio-copy {
        gap: 10px;
    }
}

@media (max-width: 760px) {
    body.home-page {
        padding-top: 64px;
    }

    main#mainContent {
        gap: 0;
    }

    .navbar {
        height: 64px;
        padding: 0 10px;
        gap: 8px;
        overflow: hidden;
    }

    .hamburger {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        border-radius: 12px;
    }

    .logo {
        min-width: 0;
        flex: 0 1 auto;
    }

    .logo .brand-logo {
        height: 22px;
        max-width: 78px;
    }

    .nav-icons {
        margin-left: auto;
        gap: 6px;
        flex: 0 0 auto;
    }

    .nav-icons > button.nav-icon {
        display: none;
    }

    .cart-link-icon {
        display: inline-flex !important;
    }

    .signin-btn {
        min-height: 40px;
        padding: 0 12px;
        border-radius: 12px;
        font-size: 12px;
    }

    .nav-icon,
    .profile-circle {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        border-radius: 12px;
    }

    .hero {
        padding: 10px 12px 0;
    }

    .hero,
    .trust-bar,
    .collection-banner,
    .product-section,
    .customer-voices,
    .section-banner,
    .custom-studio-section,
    .footer {
        width: calc(100vw - 24px);
    }

    .slider {
        min-height: 0;
        aspect-ratio: 16 / 9;
        border-radius: 18px;
    }

    .slide::after {
        background: linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.22) 42%, rgba(8, 8, 8, 0.78) 100%);
    }

    .slide-content {
        left: 16px;
        right: 54px;
        bottom: 14px;
        max-width: none;
        gap: 7px;
    }

    .hero-kicker,
    .section-kicker,
    .voices-kicker,
    .thoughts-kicker,
    .footer-kicker,
    .custom-studio-kicker {
        min-height: 26px;
        padding: 0 10px;
        font-size: 9px;
        letter-spacing: 0.8px;
    }

    .slide-content h1 {
        font-size: clamp(23px, 7vw, 38px);
        line-height: 1;
        letter-spacing: 0;
    }

    .slide-content p {
        max-width: min(430px, 100%);
        font-size: 11px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-buttons {
        gap: 7px;
    }

    .hero-buttons a {
        min-height: 32px;
        padding: 0 12px;
        font-size: 10.5px;
    }

    .arrow {
        display: none;
    }

    .dots {
        right: 14px;
        bottom: 12px;
        left: auto;
        transform: none;
        gap: 6px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    .trust-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 12px;
    }

    .trust-item {
        min-width: 0;
        min-height: 64px;
        padding: 10px 8px;
        border-radius: 14px;
        gap: 7px;
        box-shadow: 0 8px 18px rgba(19, 16, 11, 0.07);
    }

    .trust-item .icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        border-radius: 10px;
        font-size: 15px;
    }

    .trust-item p {
        min-width: 0;
        font-size: 10px;
        line-height: 1.25;
        overflow-wrap: break-word;
    }

    .trust-item strong {
        font-size: 10.5px;
    }

    .collection-banner,
    .product-section,
    .customer-voices,
    .section-banner,
    .custom-studio-shell,
    .footer {
        margin-top: 14px;
        border-radius: 18px;
    }

    .collection-banner {
        min-height: 300px;
    }

    .collection-content {
        padding: 20px 18px 12px;
        gap: 9px;
    }

    .collection-content h2 {
        font-size: 30px;
        line-height: 1;
        letter-spacing: 0;
    }

    .collection-content p {
        font-size: 13px;
        line-height: 1.45;
    }

    .offer-timer {
        width: auto;
        min-width: 0;
        margin: 0 12px 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .timer {
        margin: 8px 0 6px;
        font-size: 28px;
        letter-spacing: 0;
    }

    .product-section,
    .customer-voices {
        padding: 18px 14px;
    }

    .section-header,
    .voices-header {
        gap: 8px;
        margin-bottom: 14px;
    }

    .section-header h2,
    .voices-header h2,
    .custom-studio-copy h2 {
        font-size: 26px;
        line-height: 1.02;
        letter-spacing: 0;
    }

    .section-header p,
    .voices-header p,
    .custom-studio-copy p {
        font-size: 12px;
        line-height: 1.55;
    }

    .featured-row,
    .product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-page .product-card {
        border-radius: 14px;
        min-width: 0;
    }

    .home-product-badges {
        top: 7px;
        left: 7px;
        gap: 4px;
    }

    .home-product-badge {
        min-height: 18px;
        padding: 0 6px;
        font-size: 8px;
    }

    .home-product-copy {
        padding: 9px;
        gap: 5px;
    }

    .home-product-meta {
        font-size: 7.5px;
        letter-spacing: 0.45px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-page .product-card h4 {
        min-height: 30px;
        font-size: 12px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-product-footer {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-top: 2px;
    }

    .home-product-footer span {
        font-size: 12px;
        white-space: nowrap;
    }

    .home-add-cart-btn {
        width: auto;
        min-height: 30px;
        padding: 0 8px;
        font-size: 9px;
        white-space: nowrap;
    }

    .cta-card {
        min-height: 168px;
        border-radius: 16px;
        padding: 18px;
    }

    .cta-card h3 {
        font-size: 24px;
        line-height: 1.02;
    }

    .cta-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .voices-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .voice-card,
    .thoughts-card {
        border-radius: 14px;
        padding: 12px;
        gap: 9px;
    }

    .voice-top {
        display: grid;
        gap: 8px;
    }

    .voice-user {
        gap: 7px;
    }

    .voice-user img {
        width: 34px;
        height: 34px;
    }

    .voice-user h4 {
        font-size: 11px;
    }

    .voice-user span {
        font-size: 9px;
    }

    .voice-stars {
        font-size: 9px;
    }

    .voice-text {
        font-size: 10.5px;
        line-height: 1.55;
    }

    .voice-tags span,
    .mini-proof span {
        min-height: 22px;
        padding: 0 7px;
        font-size: 8.5px;
    }

    .thoughts-inner h3 {
        font-size: 22px;
    }

    .thoughts-inner p {
        font-size: 11px;
        line-height: 1.55;
    }

    .thoughts-btn {
        min-height: 34px;
        font-size: 10px;
    }

    .custom-studio-shell {
        grid-template-columns: 1fr;
    }

    .custom-studio-copy {
        padding: 18px 14px;
    }

    .custom-studio-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .custom-studio-points span {
        min-height: 34px;
        font-size: 10.5px;
    }

    .custom-studio-actions a {
        min-height: 38px;
        padding: 0 14px;
        font-size: 11px;
    }

    .custom-studio-media {
        min-height: 260px;
    }

    .section-banner {
        height: auto;
        aspect-ratio: 3 / 1;
    }

    .section-banner img {
        object-fit: contain;
    }

    .footer-shell {
        padding: 18px 14px;
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .nav-icon:first-of-type {
        display: inline-flex;
    }

    .nav-icons > button.nav-icon {
        display: none;
    }

    .cart-link-icon {
        display: inline-flex !important;
    }

    .featured-row,
    .product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-grid {
        gap: 12px;
    }

    .section-banner {
        height: auto;
        aspect-ratio: 3 / 1;
    }
}

@media (max-width: 420px) {
    .hero,
    .trust-bar,
    .collection-banner,
    .product-section,
    .customer-voices,
    .section-banner,
    .custom-studio-section,
    .footer {
        width: calc(100vw - 20px);
    }

    .slider {
        min-height: 0;
        aspect-ratio: 16 / 9;
        border-radius: 17px;
    }

    .slide-content h1 {
        font-size: clamp(21px, 7.2vw, 30px);
    }

    .featured-row,
    .product-row {
        gap: 8px;
    }

    .home-product-copy {
        padding: 8px;
    }

    .home-add-cart-btn {
        min-height: 28px;
        padding: 0 7px;
        font-size: 8px;
    }
}

@media (max-width: 360px) {
    .signin-btn {
        padding: 0 10px;
        font-size: 11px;
    }

    .logo .brand-logo {
        max-width: 68px;
    }

    .trust-item {
        padding: 8px 6px;
    }

    .trust-item .icon {
        display: none;
    }
}

@media (max-width: 560px) {
    .featured-row,
    .product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-page .product-card {
        border-radius: 15px;
        box-shadow: 0 8px 18px rgba(28, 22, 16, 0.08);
    }

    .home-product-media {
        aspect-ratio: 4 / 5.15;
    }

    .home-product-badges {
        top: 7px;
        left: 7px;
        right: 7px;
        gap: 4px;
    }

    .home-product-badge {
        min-height: 20px;
        padding: 0 7px;
        font-size: 8.5px;
    }

    .home-product-copy {
        padding: 10px;
        gap: 6px;
    }

    .home-page .product-card h4 {
        min-height: 34px;
        font-size: 13.5px;
        line-height: 1.25;
    }

    .home-product-meta {
        min-height: 24px;
        font-size: 9px;
        line-height: 1.3;
        letter-spacing: 0.25px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-product-footer {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 7px;
        margin-top: 0;
    }

    .home-product-footer span {
        font-size: 15px;
        line-height: 1.1;
    }

    .home-add-cart-btn {
        width: 100%;
        min-height: 36px;
        border-radius: 10px;
        padding: 0 8px;
        font-size: 10.5px;
    }
}

@media (min-width: 561px) and (max-width: 760px) {
    .featured-row,
    .product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-product-copy {
        padding: 12px;
        gap: 7px;
    }

    .home-product-footer {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .home-add-cart-btn {
        width: 100%;
    }
}

@media (max-width: 980px) {

    .voices-wrap {
        gap: 16px;
        overflow: hidden;
    }

    .voices-row {
        display: flex;
        gap: 16px;

        overflow: hidden;

        padding-inline: 4vw;
        scroll-behavior: smooth;
    }

    .voice-card,
    .thoughts-card,
    .voice-card.featured-card,
    .voice-card.tall-card,
    .voice-card.wide-card,
    .voice-card.compact-card,
    .top-row .voice-card:not(.featured-card):not(.tall-card) {

        flex: 0 0 88vw;
        min-width: 88vw;
        max-width: 88vw;

        grid-column: unset;
    }

    .thoughts-card {
        min-height: 240px;
    }

}

@media (max-width: 980px) {

    .own-shirt-section,
    .tshirt-section,
    .merch-section {

        padding: 10px 12px !important;
        min-height: unset !important;
    }

    .own-shirt-card,
    .tshirt-card,
    .merch-card {

        display: flex;
        flex-direction: row;
        align-items: center;

        gap: 12px;

        padding: 10px 12px !important;

        border-radius: 20px;

        min-height: 120px !important;
        max-height: 120px !important;

        overflow: hidden;
    }

    .own-shirt-card img,
    .tshirt-card img,
    .merch-card img {

        width: 90px;
        height: 90px;

        min-width: 90px;

        object-fit: cover;

        border-radius: 14px;
    }

    .own-shirt-content,
    .tshirt-content,
    .merch-content {

        flex: 1;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .own-shirt-content h2,
    .tshirt-content h2,
    .merch-content h2 {

        font-size: 0.95rem;
        line-height: 1.15;

        margin-bottom: 4px;
    }

    .own-shirt-content p,
    .tshirt-content p,
    .merch-content p {

        font-size: 0.74rem;
        line-height: 1.35;

        margin-bottom: 6px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .own-shirt-content .btn,
    .tshirt-content .btn,
    .merch-content .btn {

        padding: 7px 12px;
        font-size: 0.72rem;

        border-radius: 999px;

        width: fit-content;
    }

}

@media (max-width: 980px) {

    .custom-studio-section {
        padding: 14px 12px !important;
    }

    .custom-studio-shell {

        display: flex;
        flex-direction: row;

        align-items: center;
        gap: 12px;

        padding: 12px !important;

        min-height: unset !important;

        border-radius: 24px;

        overflow: hidden;
    }

    .custom-studio-copy {
        flex: 1;
    }

    .custom-studio-copy h2 {

        font-size: 1rem !important;
        line-height: 1.1;

        margin-bottom: 4px;
    }

    .custom-studio-copy p {

        font-size: 0.72rem !important;
        line-height: 1.35;

        margin-bottom: 8px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .custom-studio-points {
        display: none;
    }

    .custom-studio-actions {
        margin-top: 0;
    }

    .custom-studio-actions a {

        padding: 7px 12px !important;

        font-size: 0.72rem;

        border-radius: 999px;
    }

    .custom-studio-media {

        width: 92px;
        min-width: 92px;

        height: 92px;

        position: relative;
    }

    .custom-studio-media img {

        width: 100%;
        height: 100%;

        object-fit: cover;

        border-radius: 16px;
    }

    .custom-studio-pill {
        display: none;
    }

}



@media (max-width: 980px) {

    .footer {

        padding: 16px 0 12px;

        overflow: hidden;
    }

    .footer-shell {

        display: flex !important;

        flex-direction: row;

        gap: 14px;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 14px 8px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .footer-shell::-webkit-scrollbar {
        display: none;
    }

    .footer-brand-block,
    .footer-links-group {

        flex: 0 0 89vw;

        min-width:  89vw;
        max-width: 89vw;

        padding: 19px;

        border-radius: 20px;

        background: rgba(255,255,255,0.03);

        backdrop-filter: blur(10px);
    }

    .footer-kicker {

        font-size: 0.58rem;

        letter-spacing: 0.14em;
    }

    .footer-brand-block h3 {

        font-size: 0.82rem;

        line-height: 1.35;

        margin: 6px 0;
    }

    .footer-brand-block p,
    .footer-links-group p,
    .footer-links-group a {

        font-size: 0.66rem;

        line-height: 1.45;

        opacity: 0.72;
    }

    .footer-links-group {

        display: flex;
        flex-direction: column;

        gap: 5px;
    }

    .footer-links-group h4 {

        font-size: 0.68rem;

        margin-bottom: 4px;
    }

    .footer-bottom {

        margin-top: 8px;

        padding: 0 14px;

        border-top: none;

        display: flex;

        justify-content: center;

        text-align: center;
    }

    .footer-bottom p,
    .footer-bottom a {

        font-size: 0.6rem;

        opacity: 0.55;
    }

}
