*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream: #f5f0ea;
    --white: #ffffff;
    --clay: #c87941;
    --clay-light: #d4956a;
    --text-dark: #2a2520;
    --text-mid: #6b5f55;
    --text-light: #a89e94;
    --border: #e8e0d8;
    --bg-soft: #faf7f4;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.6;
}

nav {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.nav-links a.active { border-bottom: 1.5px solid var(--clay); padding-bottom: 2px; }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a { color: var(--text-mid); text-decoration: none; font-size: 18px; transition: color .2s; }
.nav-icons a:hover { color: var(--clay); }
.mobile-menu-toggle { display: none; }

.nav-auth-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--text-mid);
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid var(--border);
    transition: all .2s;
}
.nav-auth-link:hover { border-color: var(--clay); color: var(--clay); }

.hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40,30,20,.45) 0%, transparent 70%);
}

.hero-content {
    position: absolute;
    bottom: 72px;
    left: 80px;
    color: var(--white);
}

.hero-sub {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    opacity: .9;
    margin-bottom: 4px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-text {
    font-size: 13px;
    font-weight: 300;
    opacity: .8;
    max-width: 320px;
    line-height: 1.7;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 16px;
    transition: background .2s;
}
.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.brands {
    background: var(--white);
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 20px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}

.brand-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.brand-name {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.section { padding: 60px 40px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
}

.product-card {
    background: var(--white);
    padding: 36px 28px 24px;
    position: relative;
    cursor: pointer;
    transition: transform .25s;
}

.product-card:hover { transform: translateY(-3px); z-index: 2; box-shadow: 0 12px 32px rgba(0,0,0,.08); }

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    background: var(--clay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.product-name {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.product-category {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 3px;
}

.product-price {
    font-size: 12px;
    color: var(--clay);
    margin-top: 6px;
}

.product-price .old {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 6px;
}

.product-grid-mixed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
}

.promo-card {
    background: var(--bg-soft);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.promo-label {
    font-family: 'Dancing Script', cursive;
    font-size: 16px;
    color: var(--clay);
    margin-bottom: 6px;
}

.promo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
}

.promo-body {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-discover {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 2px;
    width: fit-content;
    transition: color .2s, border-color .2s;
}

.btn-discover:hover { color: var(--clay); border-color: var(--clay); }

.instagram-section {
    background: var(--white);
    padding: 70px 80px;
    text-align: center;
}

.section-label {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--clay);
    margin-bottom: 6px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto 12px;
}

.btn-outline {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 36px;
    border: 1px solid var(--text-dark);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    transition: all .25s;
}

.btn-outline:hover { background: var(--text-dark); color: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item div {
    transition: transform .4s;
    filter: brightness(0.93);
}

.gallery-item:hover div { transform: scale(1.05); filter: brightness(1); }

footer {
    background: var(--white);
    padding: 50px 80px 28px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-col p, .footer-col a {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 2;
    display: block;
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover { color: var(--clay); }

.newsletter-form {
    display: flex;
    margin-top: 12px;
    border-bottom: 1px solid var(--border);
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-mid);
    background: transparent;
    padding: 4px 0;
}

.newsletter-form button {
    background: none;
    border: none;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clay);
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    padding: 4px 0 4px 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--text-light);
}

.social-icons { display: flex; gap: 14px; }
.social-icons a { color: var(--text-light); font-size: 14px; text-decoration: none; transition: color .2s; }
.social-icons a:hover { color: var(--clay); }

.product-shape {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0 auto 20px;
    max-width: 140px;
    display: block;
    box-shadow: 4px 8px 24px rgba(0,0,0,.1);
}

.shape-mug {
    border-radius: 12px 12px 16px 16px;
    max-width: 120px;
}

.shape-bowl {
    border-radius: 50% 50% 40% 40% / 30% 30% 60% 60%;
    max-width: 150px;
}

.shape-cups {
    border-radius: 10px;
    max-width: 130px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream: #f5f0ea;
    --white: #ffffff;
    --clay: #c87941;
    --clay-light: #d4956a;
    --text-dark: #2a2520;
    --text-mid: #6b5f55;
    --text-light: #a89e94;
    --border: #e8e0d8;
    --bg-soft: #faf7f4;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.6;
}

nav {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.nav-links a.active { border-bottom: 1.5px solid var(--clay); padding-bottom: 2px; }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a { color: var(--text-mid); text-decoration: none; font-size: 18px; transition: color .2s; }
.nav-icons a:hover { color: var(--clay); }
.mobile-menu-toggle { display: none; }

.nav-auth-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--text-mid);
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid var(--border);
    transition: all .2s;
}
.nav-auth-link:hover { border-color: var(--clay); color: var(--clay); }

.hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40,30,20,.45) 0%, transparent 70%);
}

.hero-content {
    position: absolute;
    bottom: 72px;
    left: 80px;
    color: var(--white);
}

.hero-sub {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    opacity: .9;
    margin-bottom: 4px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-text {
    font-size: 13px;
    font-weight: 300;
    opacity: .8;
    max-width: 320px;
    line-height: 1.7;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 16px;
    transition: background .2s;
}
.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.brands {
    background: var(--white);
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 20px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}

.brand-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.brand-name {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.section { padding: 60px 40px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
}

.product-card {
    background: var(--white);
    padding: 36px 28px 24px;
    position: relative;
    cursor: pointer;
    transition: transform .25s;
}

.product-card:hover { transform: translateY(-3px); z-index: 2; box-shadow: 0 12px 32px rgba(0,0,0,.08); }

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    background: var(--clay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.product-name {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.product-category {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 3px;
}

.product-price {
    font-size: 12px;
    color: var(--clay);
    margin-top: 6px;
}

.product-price .old {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 6px;
}

.product-grid-mixed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
}

.promo-card {
    background: var(--bg-soft);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.promo-label {
    font-family: 'Dancing Script', cursive;
    font-size: 16px;
    color: var(--clay);
    margin-bottom: 6px;
}

.promo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
}

.promo-body {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-discover {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 2px;
    width: fit-content;
    transition: color .2s, border-color .2s;
}

.btn-discover:hover { color: var(--clay); border-color: var(--clay); }

.instagram-section {
    background: var(--white);
    padding: 70px 80px;
    text-align: center;
}

.section-label {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--clay);
    margin-bottom: 6px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto 12px;
}

.btn-outline {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 36px;
    border: 1px solid var(--text-dark);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    transition: all .25s;
}

.btn-outline:hover { background: var(--text-dark); color: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item div {
    transition: transform .4s;
    filter: brightness(0.93);
}

.gallery-item:hover div { transform: scale(1.05); filter: brightness(1); }

footer {
    background: var(--white);
    padding: 50px 80px 28px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-col p, .footer-col a {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 2;
    display: block;
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover { color: var(--clay); }

.newsletter-form {
    display: flex;
    margin-top: 12px;
    border-bottom: 1px solid var(--border);
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-mid);
    background: transparent;
    padding: 4px 0;
}

.newsletter-form button {
    background: none;
    border: none;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clay);
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    padding: 4px 0 4px 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--text-light);
}

.social-icons { display: flex; gap: 14px; }
.social-icons a { color: var(--text-light); font-size: 14px; text-decoration: none; transition: color .2s; }
.social-icons a:hover { color: var(--clay); }

.product-shape {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0 auto 20px;
    max-width: 140px;
    display: block;
    box-shadow: 4px 8px 24px rgba(0,0,0,.1);
}

.shape-mug {
    border-radius: 12px 12px 16px 16px;
    max-width: 120px;
}

.shape-bowl {
    border-radius: 50% 50% 40% 40% / 30% 30% 60% 60%;
    max-width: 150px;
}

.shape-cups {
    border-radius: 10px;
    max-width: 130px;
}


.page-hero-light {
  background: var(--bg-soft);
  padding: 72px 80px 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero-light .section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  color: var(--clay);
  margin-bottom: 8px;
}
.page-hero-light h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero-light p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

.filter-bar {
  background: var(--white);
  padding: 20px 80px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  align-items: center;
}
.filter-btn {
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
  transition: color .2s;
}
.filter-btn:first-child { padding-left: 0; }
.filter-btn:last-child { border-right: none; }
.filter-btn.active, .filter-btn:hover { color: var(--clay); }

.portfolio-masonry {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.portfolio-item {
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.portfolio-item:nth-child(1) { grid-row: span 2; }
.portfolio-item:nth-child(5) { grid-column: span 2; }

.portfolio-visual {
  width: 100%;
  aspect-ratio: 1;
  transition: transform .4s;
}
.portfolio-item:nth-child(1) .portfolio-visual { aspect-ratio: auto; height: 100%; min-height: 500px; }
.portfolio-item:nth-child(5) .portfolio-visual { aspect-ratio: 2/1; }
.portfolio-item:hover .portfolio-visual { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,37,32,.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background .3s;
}
.portfolio-item:hover .portfolio-overlay { background: rgba(42,37,32,.55); }
.portfolio-meta {
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}
.portfolio-item:hover .portfolio-meta { opacity: 1; transform: translateY(0); }
.portfolio-meta-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.portfolio-meta-cat {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.portfolio-info {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
}
.portfolio-info-name {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.portfolio-info-cat {
  font-size: 11px;
  color: var(--text-light);
}

.portfolio-cta {
  background: var(--bg-soft);
  padding: 72px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.portfolio-cta .section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: var(--clay);
  margin-bottom: 8px;
}
.portfolio-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.portfolio-cta p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 28px;
}

.auth-layout {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--border);
  gap: 0;
}

.auth-visual {
  background: linear-gradient(160deg, #7a5030 0%, #b88060 35%, #d4a880 60%, #c4906a 80%, #8b6040 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 64px;
  min-height: 600px;
}
.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,20,10,.6) 0%, transparent 60%);
}
.auth-visual-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.auth-visual-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  margin-bottom: 12px;
  opacity: .9;
}
.auth-visual-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.auth-visual-sub {
  font-size: 12px;
  opacity: .65;
  line-height: 1.7;
  max-width: 280px;
}

.auth-form-wrap {
  background: var(--white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-form-header {
  margin-bottom: 40px;
}
.auth-form-header .section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: var(--clay);
  margin-bottom: 6px;
}
.auth-form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 8px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--clay); }

.form-forgot {
  display: flex;
  justify-content: flex-end;
  margin-top: -16px;
  margin-bottom: 16px;
}
.form-forgot a {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color .2s;
}
.form-forgot a:hover { color: var(--clay); }

.btn-auth {
  width: 100%;
  padding: 16px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  margin-bottom: 20px;
}
.btn-auth:hover { background: var(--clay); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-divider span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.btn-social {
  width: 100%;
  padding: 13px;
  background: none;
  border: 1px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-social:hover { border-color: var(--clay); color: var(--clay); }

.auth-switch {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text-mid);
}
.auth-switch a {
  color: var(--clay);
  text-decoration: none;
  font-weight: 500;
  transition: opacity .2s;
}
.auth-switch a:hover { opacity: .7; }

.error-msg {
  display: none;
  background: #fef0ee;
  border: 1px solid #f0c0b8;
  color: #c0392b;
  font-size: 11px;
  padding: 10px 14px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.page-hero {
  background: linear-gradient(135deg, #2a2520 0%, #3d3028 40%, #5a4035 70%, #7a5030 100%);
  padding: 80px 80px 72px;
  color: var(--white);
}
.page-hero-sub {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  opacity: .8;
  margin-bottom: 8px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--border);
  gap: 2px;
}
.contacts-info {
  background: var(--white);
  padding: 72px 64px;
}
.contacts-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 36px;
}
.contact-block {
  margin-bottom: 36px;
}
.contact-block-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-block p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
}
.contact-block a {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  display: block;
  line-height: 1.9;
  transition: color .2s;
}
.contact-block a:hover { color: var(--clay); }
.contact-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 400; color: var(--text-dark); }

.contacts-form-wrap {
  background: var(--bg-soft);
  padding: 72px 64px;
}
.contacts-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 8px 0;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--clay); }
.form-textarea {
  resize: none;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.btn-submit {
  margin-top: 12px;
  padding: 14px 40px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
}
.btn-submit:hover { background: var(--clay); }

.map-placeholder {
  height: 320px;
  background: linear-gradient(160deg, #c4b090, #a07840, #7a5030);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  font-style: italic;
}

.cart-page {
  min-height: 70vh;
  background: var(--bg-soft);
}
.cart-header {
  background: var(--white);
  padding: 48px 80px 36px;
  border-bottom: 1px solid var(--border);
}
.cart-header .section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: var(--clay);
  margin-bottom: 6px;
}
.cart-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cart-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2px;
  background: var(--border);
  padding: 0;
}

.cart-items {
  background: var(--white);
  padding: 40px 56px;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-item-name {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cart-item-cat {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.qty-btn:hover { border-color: var(--clay); color: var(--clay); }
.qty-val {
  font-size: 13px;
  font-weight: 400;
  min-width: 20px;
  text-align: center;
}
.cart-item-right {
  text-align: right;
}
.cart-item-price {
  font-size: 14px;
  color: var(--clay);
  font-weight: 400;
  margin-bottom: 10px;
}
.cart-remove {
  background: none;
  border: none;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: color .2s;
  padding: 0;
}
.cart-remove:hover { color: #c0392b; }

.cart-empty-state {
  text-align: center;
  padding: 80px 40px;
  color: var(--text-light);
  display: none;
}
.cart-empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: .4;
}
.cart-empty-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--text-mid);
}
.cart-empty-state p {
  font-size: 12px;
  margin-bottom: 28px;
}

.cart-sidebar {
  background: var(--bg-soft);
  padding: 40px 36px;
}
.cart-sidebar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.summary-total-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.summary-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--clay);
}
.promo-input-wrap {
  margin-bottom: 24px;
}
.promo-input-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block;
}
.promo-input-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.promo-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  padding: 6px 0;
}
.promo-input-row button {
  background: none;
  border: none;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  padding: 6px 0 6px 12px;
}
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  margin-bottom: 12px;
}
.btn-checkout:hover { background: var(--clay); }
.btn-continue {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  padding: 8px;
  transition: color .2s;
}
.btn-continue:hover { color: var(--clay); }
.delivery-note {
  margin-top: 20px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.7;
}
.delivery-note strong { color: var(--text-dark); font-weight: 500; }

.about-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7a5030 0%, #b88060 40%, #d4a880 65%, #c4906a 85%, #8b6040 100%);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,20,10,.5) 0%, transparent 65%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 64px;
  color: #fff;
}
.about-hero-sub {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  opacity: .85;
  margin-bottom: 6px;
}
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
}
.about-intro-text {
  padding: 80px 72px;
  border-right: 1px solid var(--border);
}
.about-intro-text .section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: var(--clay);
  margin-bottom: 10px;
}
.about-intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-intro-text p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-intro-visual {
  background: linear-gradient(160deg, #d4c098, #b89868, #8a5830);
  min-height: 400px;
}

.about-values {
  background: var(--bg-soft);
  padding: 80px 80px;
}
.about-values-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 56px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.value-card {
  background: var(--white);
  padding: 48px 36px;
}
.value-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--clay);
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.value-text {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.85;
}

.about-team {
  padding: 80px;
  background: var(--white);
}
.about-team-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-team-header .section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: var(--clay);
  margin-bottom: 8px;
}
.about-team-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.team-card {
  background: var(--bg-soft);
  padding: 40px 28px 32px;
  text-align: center;
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.team-role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
}

.about-stats {
  background: linear-gradient(135deg, #2a2520, #3d3028);
  padding: 72px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--clay-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.auth-layout {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--border);
  gap: 0;
}

.auth-visual {
  background: linear-gradient(160deg, #2a2520 0%, #3d3028 30%, #6a4830 60%, #9a6840 80%, #c48858 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 64px;
  min-height: 600px;
}
.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,.65) 0%, transparent 55%);
}
.auth-visual-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.auth-visual-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  margin-bottom: 12px;
  opacity: .9;
}
.auth-visual-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.auth-visual-perks {
  list-style: none;
  margin-top: 20px;
}
.auth-visual-perks li {
  font-size: 12px;
  opacity: .7;
  line-height: 2;
  padding-left: 18px;
  position: relative;
}
.auth-visual-perks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--clay-light);
}

.auth-form-wrap {
  background: var(--white);
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-form-header {
  margin-bottom: 36px;
}
.auth-form-header .section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: var(--clay);
  margin-bottom: 6px;
}
.auth-form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.form-group {
  margin-bottom: 22px;
}
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 8px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--clay); }
.form-input.error { border-color: #c0392b; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.password-hint {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.5;
}

.password-strength {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.strength-bar {
  height: 3px;
  flex: 1;
  background: var(--border);
  transition: background .3s;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--clay);
  cursor: pointer;
}
.form-check-label {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.6;
}
.form-check-label a {
  color: var(--clay);
  text-decoration: none;
}

.btn-auth {
  width: 100%;
  padding: 16px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  margin-bottom: 16px;
}
.btn-auth:hover { background: var(--clay); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-divider span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.btn-social {
  width: 100%;
  padding: 13px;
  background: none;
  border: 1px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-social:hover { border-color: var(--clay); color: var(--clay); }

.auth-switch {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text-mid);
}
.auth-switch a {
  color: var(--clay);
  text-decoration: none;
  font-weight: 500;
}

.success-msg {
  display: none;
  background: #f0faf0;
  border: 1px solid #a0d0a0;
  color: #2a7a2a;
  font-size: 11px;
  padding: 12px 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-card {
    background: var(--white);
    padding: 36px 28px 24px;
    position: relative;
    cursor: pointer;
    transition: transform .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card .product-image,
.product-card .product-shape {
    width: 100%;
    max-width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.product-card .shape-mug {
    border-radius: 12px;
    width: 100%;
    max-width: 120px;
    height: 120px;
}


.product-card .shape-bowl {
    border-radius: 50% 50% 40% 40% / 30% 30% 60% 60%;
    width: 100%;
    max-width: 150px;
    height: 110px;
}


.product-card .shape-cups {
    border-radius: 10px;
    width: 100%;
    max-width: 130px;
    height: 120px;
}


@media (max-width: 768px) {
    .product-card .product-image,
    .product-card .product-shape {
        max-width: 100px;
        height: 100px;
    }
    
    .product-card .shape-mug {
        max-width: 85px;
        height: 85px;
    }
    
    .product-card .shape-bowl {
        max-width: 110px;
        height: 80px;
    }
    
    .product-card .shape-cups {
        max-width: 95px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .product-card .product-image,
    .product-card .product-shape {
        max-width: 80px;
        height: 80px;
    }
}

/* Планшеты и маленькие ноутбуки */
@media (max-width: 1024px) {
    .section { padding: 40px 20px; }
    nav { padding: 0 24px; }
    .brands { padding: 20px 24px; }
    .instagram-section { padding: 50px 40px; }
    footer { padding: 40px 40px 24px; }
    .hero-title { font-size: 44px; }
    .hero-content { left: 48px; bottom: 48px; }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    nav {
        padding: 0 16px;
        flex-wrap: wrap;
        height: auto;
        min-height: 60px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
        background: var(--white);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-icons {
        gap: 12px;
    }

    .hero {
        height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 20px;
    }

    .hero-text {
        font-size: 11px;
        max-width: 240px;
    }

    .hero-content {
        left: 20px;
        bottom: 24px;
    }

    .hero-arrow {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .hero-arrow.prev { left: 8px; }
    .hero-arrow.next { right: 8px; }

    .brands {
        padding: 16px;
        gap: 16px;
        justify-content: center;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .brand-name {
        font-size: 9px;
    }

    .product-grid,
    .product-grid-mixed {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .product-card {
        padding: 20px 16px 16px;
    }

    .product-name {
        font-size: 10px;
    }

    .product-category {
        font-size: 9px;
    }

    .product-price {
        font-size: 11px;
    }

    .product-badge {
        width: 24px;
        height: 24px;
        font-size: 7px;
        top: 10px;
        right: 10px;
    }

    .promo-card {
        grid-column: span 2 !important;
        padding: 24px 20px;
    }

    .promo-title {
        font-size: 22px;
    }

    .instagram-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: 0.12em;
    }

    .section-text {
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    footer {
        padding: 30px 20px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .product-shape {
        max-width: 100px;
    }

    .shape-mug {
        max-width: 85px;
    }

    .shape-bowl {
        max-width: 110px;
    }

    .shape-cups {
        max-width: 95px;
    }
}

/* Очень маленькие телефоны (до 480px)*/
@media (max-width: 480px) {
    .product-grid,
    .product-grid-mixed {
        grid-template-columns: 1fr;
    }

    .promo-card {
        grid-column: span 1 !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-text {
        display: none;
    }

    .brands {
        gap: 12px;
    }

    .brand-item {
        min-width: 60px;
    }

    .product-shape {
        max-width: 80px;
    }
}

/* Планшеты и маленькие ноутбуки */
@media (max-width: 1024px) {
    .section { padding: 40px 20px; }
    nav { padding: 0 24px; }
    .brands { padding: 20px 24px; }
    .instagram-section { padding: 50px 40px; }
    footer { padding: 40px 40px 24px; }
    .hero-title { font-size: 44px; }
    .hero-content { left: 48px; bottom: 48px; }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    nav {
        padding: 0 16px;
        flex-wrap: wrap;
        height: auto;
        min-height: 60px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
        background: var(--white);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-icons {
        gap: 12px;
    }

    .hero {
        height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 20px;
    }

    .hero-text {
        font-size: 11px;
        max-width: 240px;
    }

    .hero-content {
        left: 20px;
        bottom: 24px;
    }

    .hero-arrow {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .hero-arrow.prev { left: 8px; }
    .hero-arrow.next { right: 8px; }

    .brands {
        padding: 16px;
        gap: 16px;
        justify-content: center;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .brand-name {
        font-size: 9px;
    }

    .product-grid,
    .product-grid-mixed {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .product-card {
        padding: 20px 16px 16px;
    }

    .product-name {
        font-size: 10px;
    }

    .product-category {
        font-size: 9px;
    }

    .product-price {
        font-size: 11px;
    }

    .product-badge {
        width: 24px;
        height: 24px;
        font-size: 7px;
        top: 10px;
        right: 10px;
    }

    .promo-card {
        grid-column: span 2 !important;
        padding: 24px 20px;
    }

    .promo-title {
        font-size: 22px;
    }

    .instagram-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: 0.12em;
    }

    .section-text {
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    footer {
        padding: 30px 20px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .product-shape {
        max-width: 100px;
    }

    .shape-mug {
        max-width: 85px;
    }

    .shape-bowl {
        max-width: 110px;
    }

    .shape-cups {
        max-width: 95px;
    }
}

/* Очень маленькие телефоны (до 480px)*/
@media (max-width: 480px) {
    .product-grid,
    .product-grid-mixed {
        grid-template-columns: 1fr;
    }

    .promo-card {
        grid-column: span 1 !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-text {
        display: none;
    }

    .brands {
        gap: 12px;
    }

    .brand-item {
        min-width: 60px;
    }

    .product-shape {
        max-width: 80px;
    }
}