/*
Theme Name: OFF-MODE Platform
Author: Minhyuk
Version: 1.0
*/
/* body {
  font-family: Inter, sans-serif;
  background:#fff;
  color:#111;
}
  .site-header {
    padding:20px 40px;
    border-bottom:1px solid #eee;
  }
  
  .main-nav ul {
    display:flex;
    gap:24px;
  }
  
  .main-nav a {
    text-decoration:none;
    color:#111;
    font-size:14px;
  }
.hero {
  padding:120px 40px;
  text-align:center;
}

.product-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  padding:40px;
}

.product-image {
  position:relative;
}

.product-image img.secondary {
  position:absolute;
  top:0; left:0;
  opacity:0;
  transition:.4s;
}

.product-card:hover img.secondary {
  opacity:1;
}

.product-card:hover img.primary {
  opacity:0;
}

.ritual-step {
  opacity:0;
  transform:translateY(40px);
  transition:.8s;
}

.ritual-step.active {
  opacity:1;
  transform:none;
} */

/*
Theme Name: OFF-MODE Custom Theme
*/

:root {
  --bg-warm-neutral: #F5F5F0;
  --primary-green: #2D4F1E;
  --midnight-navy: #082434;
  --soft-black: #121212;
  --font-serif: 'Caudex', serif;
  --font-sans: 'Inter', sans-serif;
}

/* body {
  background-color: var(--bg-warm-neutral);
  color: var(--soft-black);
  font-family: var(--font-sans);
  overflow-x: hidden;
} */

/* .font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); } */

/* Navigation Scroll Effect */
#main-nav.scrolled {
  background-color: rgba(245, 245, 240, 0.9);
  backdrop-filter: blur(10px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(45, 79, 30, 0.1);
}

/* Swiper Custom Pagination */
.swiper-pagination-custom .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--soft-black);
  opacity: 0.2;
  border-radius: 50%;
  transition: all 0.5s;
}
.swiper-pagination-custom .swiper-pagination-bullet-active {
  background: var(--primary-green);
  transform: scale(1.25);
  opacity: 1;
}

/* 워드프레스 메뉴 스타일 초기화 */
#main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#main-nav ul li a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

#main-nav ul li a:hover {
  opacity: 0.6;
}

/* 모바일 메뉴 열릴 때 배경색 추가 (가독성) */
#mobile-menu {
  background-color: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Brand Swiper Fix
.brandSwiper {
  overflow: hidden;
}

.brandSwiper .swiper-slide {
  width: 100% !important;
} */

.brandSwiper .swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
}

.brandSwiper .swiper-wrapper {
  display: flex;
}

/* 커스텀 스크롤바 */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(45, 79, 30, 0.05);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(45, 79, 30, 0.2);
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(45, 79, 30, 0.3);
}

/* Firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 79, 30, 0.2) rgba(45, 79, 30, 0.05);
}

/* 알림 드롭다운 애니메이션 */
#notif-dropdown {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

#notif-dropdown:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 스크롤바 스타일링 */
#notif-list::-webkit-scrollbar {
  width: 6px;
}

#notif-list::-webkit-scrollbar-track {
  background: #f5f5f0;
}

#notif-list::-webkit-scrollbar-thumb {
  background: #2D4F1E;
  border-radius: 3px;
}

#notif-list::-webkit-scrollbar-thumb:hover {
  background: #082434;
}

/* 텍스트 말줄임 */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* footer css */

.site-footer {
  background: #f9f9f4;
  padding: 40px 20px;
  /* font-size: 13px; */
  color: #666;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-company-info p {
  margin: 6px 0;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-nav a {
  color: #666;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.divider {
  margin: 0 6px;
  opacity: 0.4;
}
