/* ==========================================================================
   Coloring365 - modern storefront theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --c365-primary: #7c3aed;
  --c365-primary-dark: #6d28d9;
  --c365-primary-light: #8b5cf6;
  --c365-accent: #c4b5fd;
  --c365-surface: #fafaf9;
  --c365-text: #18181b;
  --c365-muted: #71717a;
  --c365-border: #e4e4e7;
  --c365-star: #f59e0b;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--c365-surface);
  color: var(--c365-text);
}

.logo-font {
  font-family: 'Playfair Display', Georgia, serif;
}

.product-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.collection-card {
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: scale(1.03);
}

.hero-bg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.48)),
    url('/images/home-1/slides/1-bg.jpg') center/cover no-repeat;
}

.geo-banner {
  align-items: center;
  background-color: var(--c365-primary-dark);
  color: #fff;
  display: flex;
  font-size: 14px;
  justify-content: center;
  padding: 8px 40px 8px 16px;
  position: relative;
  text-align: center;
}

.geo-banner img {
  height: 14px;
  margin-right: 8px;
  width: 20px;
}

.geo-banner .close-btn {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  right: 12px;
  top: 6px;
}

.nav-search {
  align-items: center;
  flex: 1 1 28rem;
  margin-left: 2rem;
  margin-right: 2rem;
  max-width: 36rem;
}

.nav-search-form {
  display: block;
  position: relative;
  width: 100%;
}

.nav-search-input {
  background: #f4f4f5 !important;
  border: 1px solid #d4d4d8 !important;
  border-radius: 9999px !important;
  box-shadow: none !important;
  color: var(--c365-text);
  display: block;
  font-size: 0.875rem !important;
  height: 44px !important;
  line-height: 44px !important;
  margin: 0 !important;
  padding: 0 1.25rem 0 2.75rem !important;
  text-indent: 0 !important;
  width: 100% !important;
}

.nav-search-input:focus {
  border-color: var(--c365-primary-light) !important;
  outline: none !important;
}

.nav-search-button {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  color: #a1a1aa;
  display: flex;
  height: 44px;
  justify-content: center;
  left: 0.875rem;
  padding: 0 !important;
  position: absolute;
  top: 0;
  width: 1.5rem;
}

.content-wrapper {
  background: #fff;
  border-radius: 1rem;
  line-height: 1.8;
  margin: 2rem auto;
  max-width: 800px;
  padding: 40px;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper p,
.content-wrapper ul,
.content-wrapper table {
  margin-bottom: 20px;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
  font-weight: 700;
}

.content-wrapper ul {
  padding-left: 20px;
}

.content-wrapper table {
  border-collapse: collapse;
  width: 100%;
}

.content-wrapper th,
.content-wrapper td {
  border: 1px solid var(--c365-border);
  padding: 16px;
  text-align: left;
}

.star-rating .fa-star,
.star-rating .fa-star-half-stroke,
.star-rating .fa-star-half-alt {
  color: var(--c365-star);
}

.trust-bar {
  background: #18181b;
  color: #fff;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
