/* ODAIO Custom CSS */
/* ══════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
══════════════════════════════════════════════ */
:root {
  --cream:         #F5F0E8;
  --cream-mid:     #EDE5D4;
  --cream-dark:    #E2D8C5;
  --white:         #FDFAF5;
  --warm-brown:    #3D2B1F;
  --mid-brown:     #7A5C46;
  --light-wood:    #C4A882;
  --accent:        #8B4513;
  --accent-hover:  #6D3510;
  --text-main:     #2C1E14;
  --text-muted:    #6B5040;
  --text-light:    #9C7D68;
  --border:        rgba(61,43,31,0.13);
  --border-strong: rgba(61,43,31,0.25);
 
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
 
  --section-v: 96px;
  --container: 1160px;
  --gap:        32px;
 
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
 
  --shadow-sm: 0 2px 8px rgba(61,43,31,0.08);
  --shadow-md: 0 6px 24px rgba(61,43,31,0.12);
  --shadow-lg: 0 16px 48px rgba(61,43,31,0.14);
 
  --ease:   cubic-bezier(0.25,0.46,0.45,0.94);
  --t-fast: 180ms;
  --t-mid:  320ms;
}
 

/* ══════════════════════════════════════════════
   RESET
══════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  background: var(--cream);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
 
/* ══════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════ */

.cart-badge {
    display: none !important;
}

.section:has(.story-grid) {
    padding-top: 0 !important;
}

/* ან თუ კონკრეტული სექციაა მის წინ: */
#products {
    padding-bottom: 80px !important;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
 
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
 
.section { padding: var(--section-v) 0; }
.section--soft { background: var(--cream-mid); }
 
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}
 
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-top: 4px;
}
 
/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: var(--r-md);
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
 
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(139,69,19,0.28);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(139,69,19,0.38);
}
 
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--cream-dark);
  border-color: var(--mid-brown);
}
 
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid rgba(139,69,19,0.3);
  padding-bottom: 2px;
  transition: gap var(--t-fast) var(--ease), border-color var(--t-fast);
}
.link-arrow::after { content: '→'; }
.link-arrow:hover  { gap: 14px; border-color: var(--accent); }
 
/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
 
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
}
 
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
 
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
 
.brand-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.01em;
}
 
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
 
.nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover { color: var(--text-main); background: var(--cream-dark); }
 
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
 
.cart-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.cart-badge:hover { color: var(--text-main); background: var(--cream-dark); }
 
.cart-badge .count {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}
 
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-nav-toggle:hover { color: var(--text-main); background: var(--cream-dark); }
 
/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
შენს კოდში მთავარი პრობლემა ის იყო, რომ .hero-card img სტილები ორჯერ ეწერა და ერთმანეთს ეწინააღმდეგებოდა (ჯერ სიმაღლეს აძლევდი, მერე კი ისევ 100%-ზე აბრუნებდი). ასევე, ჰოვერ ეფექტი (transform) შეიძლება დაიკარგოს, თუ !important-ს არასწორად გამოვიყენებთ.

აი გასწორებული და სუფთა ვერსია, სადაც ყველაფერი მუშაობს: სიმაღლეც, მომრგვალებაც და ჰოვერ ეფექტიც.

CSS
/* ══════════════════════════════════════════════
   HERO SECTION - FIXED
══════════════════════════════════════════════ */
.hero { padding: 80px 0 96px; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ტექსტის სტილები */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-copy {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ვიზუალი და სურათი */
.hero-visual { position: relative; }

.hero-card {
  position: relative;
  aspect-ratio: auto !important; /* ვაუქმებთ კვადრატს */
  overflow: visible !important; 
  background: none !important;
  box-shadow: none !important;
}

.hero-card img {
  width: 100% !important;
  height: 420px !important; /* მობილურის სიმაღლე */
  object-fit: cover !important;
  object-position: center;
  border-radius: 2rem !important; /* მომრგვალება */
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1), 
              0 4px 6px -4px rgba(0, 0, 0, 0.05) !important;
  display: block;
  transition: transform 0.8s var(--ease) !important; /* ანიმაცია */
}

/* დესკტოპის სიმაღლე */
@media (min-width: 768px) {
  .hero-card img {
    height: 600px !important;
  }
}

/* ჰოვერ ეფექტი */
.hero-card:hover img { 
  transform: scale(1.03) !important; 
}

/* დეკორატიული წერტილები (Dot grid) */
.hero-visual::before {
  content: '';
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--light-wood) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
  z-index: -1;
}

 
/* ══════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
 
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
 
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.6;
  fill: none;
}
 
.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}
 
.feature-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
 
/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap);
}
 
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
 
/* ★ portrait ratio — ოდა სიმაღლეში ჩანს */
.product-thumb-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4;
  background: var(--cream-dark);
}
.product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .product-thumb-wrap img { transform: scale(1.06); }
 
.product-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.product-card:hover .product-arrow { opacity: 1; transform: translateY(0); }
 
.product-meta {
  padding: 20px 22px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
 
.product-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 5px;
}
.product-title a:hover { color: var(--accent); transition: color var(--t-fast); }
 
.product-subtitle { font-size: 13px; color: var(--text-light); }
 
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
 
/* ══════════════════════════════════════════════
   STORY
══════════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
 
.story-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}
.story-media:hover img { transform: scale(1.04); }
 
.story-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 24px;
  margin-top: 6px;
}
 
.story-copy {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 480px;
}
 
/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--warm-brown);
  color: var(--cream);
  padding: 72px 0 0;
}
 

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand .brand-mark {
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  font-size: 17px;
  width: 32px;
  height: 32px;
}
.footer-brand > span:last-child {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
}
 
.footer-copy {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  max-width: 300px;
}
 
.footer-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 18px;
}
 
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a,
.footer-list div { font-size: 14px; color: rgba(245,240,232,0.8); transition: color var(--t-fast); }
.footer-list a:hover { color: var(--cream); }
 
.social-row { display: flex; gap: 10px; }
 
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: var(--r-sm);
  color: rgba(245,240,232,0.7);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.social-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,240,232,0.5);
  color: var(--cream);
}
 
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  flex-wrap: wrap;
}
 
.footer-bottom-copy { font-size: 13px; color: rgba(245,240,232,0.4); }
 
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 13px; color: rgba(245,240,232,0.5); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--cream); }
 
.footer-bottom-meta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(245,240,232,0.35);
}
 
/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 900px
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-v: 64px; }
  .container { padding: 0 24px; }
 
  .nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 4px;
    z-index: 99;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; font-size: 17px; padding: 11px 14px; }
 
  .mobile-nav-toggle { display: flex; }
 
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual::before { display: none; }
 
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
 
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
 
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
 
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
 
/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 560px
══════════════════════════════════════════════ */
@media (max-width: 560px) {
  :root { --section-v: 52px; }
  .container { padding: 0 18px; }
 
  .hero { padding: 40px 0 52px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-card  { border-radius: var(--r-lg); }
  .story-media { border-radius: var(--r-lg); aspect-ratio: 3 / 2; }
 
  .product-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .feature-card { padding: 28px 24px; }
  .footer { padding-top: 52px; }
}
 
/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.hero > .container > * { animation: fadeUp 0.7s var(--ease) both; }
.hero > .container > *:nth-child(2) { animation-delay: 0.1s; }
 
.feature-card { animation: fadeUp 0.5s var(--ease) both; }
.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.13s; }
.feature-card:nth-child(3) { animation-delay: 0.21s; }


