/**
Theme Name: North Horizon – Exklusives WordPress-Theme
Theme URI: https://north-horizon.com
Author: HORIZON & BEYOND
Author URI: https://www.horizon-beyond.ch/
Description: Entwickelt von HORIZON & BEYOND für das Schmuckgeschäft Bijou Abgottspon in Saas-Fee, vereint dieses massgeschneiderte Theme zeitloses Design mit moderner Funktionalität. Luxuriöse Farbpaletten, beeindruckende Produktgalerien und ein responsives Layout setzen die exquisite Schmuckkollektion perfekt in Szene. Mit Fokus auf Benutzerfreundlichkeit und SEO-Optimierung bietet das Theme ein erstklassiges digitales Erlebnis, das die Eleganz und Einzigartigkeit der Marke unterstreicht. Ein exklusives, von Hand gefertigtes Webdesign für echte Klassiker – online wie offline.
Version: 1.0
Requires at least: 5.3
Tested up to: 5.7.2
Requires PHP: 5.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: north
Tags: Custom Design, E-Commerce, Responsive Layout, Schmuck, Galerien, Eleganz, Modern, Minimalistisch, Exklusiv, Produktpräsentation, HORIZON & BEYOND
 **/ 

/*** Normal CSS ***/ 
@font-face {
  font-family: 'Clofie';
  src: url('assets/fonts/clofieregular-yy04q.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
body{
	font-size: 15px;
	line-height: 1.3;
	font-family: Clofie, Arial;
	margin: 0px;
	padding: 0px;
}
.flex{
	display: flex;
}
.flex-wrap{
	flex-wrap: wrap;
}
.align-center{
	align-items: center;
}
.justify-end{
	justify-content: flex-end;
}
.justify-between{
	justify-content: space-between;
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
.no_list{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.gap_20{
	gap: 20px;
}
.gap_10{
	gap: 10px;
}
a{
	text-decoration: none;
	color: #000;
}
.container{
	max-width: 1040px;
	padding: 0px 20px;
	margin: auto;
	width: 100%;
}
h1, h2, h3, h4, h5, h6{
	margin: 0px;
	color: #000;
	font-weight: 600;
}
h1{
	color: #fff;
}
h2{
	font-size: 20px;
	line-height: 1;
}
.mb-10{
	margin-bottom: 10px;
}
*{
	box-sizing: border-box;
}
.btn, button{
  background: #D9D9D9;
  border-radius: 5px;
  padding: 10px 20px;
  font-family: Clofie;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-black{
  background-color: #000000;
  color: #fff;
}
.btn-full{
  width: 100%;
  text-align: center;
  display: block;
}

/*** Header ***/ 

.site-header {
  gap: 20px;
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 99;
}
.admin-bar .site-header{
	top: 32px;
}
.site-logo {
  flex: 0 0 200px;
  max-width: 200px;
}
.main-navigation, .header-icons {
  flex: 0 0 calc(50% - 100px - 20px);
  max-width: calc(50% - 100px - 20px);
}
.mobile_toggle{
  display: none;
}
.mobile_menu {
  display: none;
}

.logo-mobile {
  display: none;
}

/*** Hero Section ***/ 

.hero-slider {
  height: 100vh;
  min-height: 400px;
}
.hero-slider .swiper-slide {
  background: ;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.hero-title h1, .hero-title h2{
  font-size: 30px;
  color: #fff;
}
.hero-product {
  position: absolute;
  bottom: 30px;
  right: 30px;
  padding: ;
}
.hero-product a {
  display: flex;
  flex-wrap: wrap;
  background: #EFEFEF80;
  border-radius: 10px;
  padding: 10px;
  gap: 15px;
}

.product-hero-thumb {
  width: 50px;
  height: 60px;
}
.product-hero-thumb img {
  object-fit: contain;
}
.product-hero-info {
  flex: 0 0 calc(100% - 65px);
  max-width: calc(100% - 65px);
}
.product-hero-info h3 {
  font-size: 12px;
}
.product-hero-info span {
  font-size: 12px;
}
.hero-pagination .swiper-pagination-bullet {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: rgba(255,255,255,.5);
  overflow: hidden;
  border-radius: 0px;
}

.hero-pagination .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: none;
  z-index: 2;
  border-radius: 0%;
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  animation: fillBullet 5s linear forwards;
}

@keyframes fillBullet {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.hero-title,
.hero-product {
  opacity: 0;
  transform: translateX(0);
  transition: none;
}

/* Fade in from left */
.hero-slide.swiper-slide-active .hero-title {
  animation: fadeInLeft 1.5s ease forwards;
}

/* Fade in from right */
.hero-slide.swiper-slide-active .hero-product {
  animation: fadeInRight 1.5s ease forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}



/*** Featured Products ***/ 
.products{
  list-style: none;
  margin: 0px;
  padding: 0px;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.products .product {
  background: #EFEFEF;
  flex: 0 0 calc(25% - 7.5px);
  max-width: calc(25% - 7.5px);
  border-radius: 10px;
}
.featured-products {
  padding: 150px 0px;
}

.product-thumb {
  position: relative;
  padding-top: 100%;
  height: 0px;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: contain;
}
.product-info {
  padding: 10px;
}
.woocommerce-loop-product__title {
  font-family: Inter;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}
.price {
  font-family: Inter;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
}


/*** Fill Text SEction ***/ 
.fill_text_wrap{
  margin-bottom: -80px;
}
.fill-text-paragraph {
  display: flex;
  flex-direction: column;
  gap: 0px;
    max-width: 850px;
  margin: auto;
  align-items: center;
}

.fill-text-item {
  position: relative;
  display: block;
}

.fill-text-row {
  position: relative;
  z-index: 1;
}

.fill-text-hover-row {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: width 1s ease;
  z-index: 2;
}

.fill-text-row .fill-text-text-size {
  color: #2A292570; 
}

.fill-text-hover-row .fill-text-text-size {
  color: #2A2925; 
}

.fill-text-text-size {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.fill_text_section {
  padding: 150px 0px 230px 0px;
  background: #EFEFEF;
}
.fill-text-item.fill_mobile {
  display: none;
}

.fill_text_section h2 {
  margin-bottom: 24px;
  text-align: center;
}
.bottom_txt {
  font-weight: 200;
  text-align: center;
    margin-top: 20px;
}
.fill-text-item {
  position: relative;
  display: block;
  min-height: 24px;
}


/*** Category Section ***/ 
.category-item {
  flex: 0 0 calc(33.33% - 6.67px);
  max-width: calc(33.33% - 6.67px);
  padding: 20px;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 435px;
  position: relative;
}
.category-section {
  padding: 150px 0px;
}
.section-header {
  margin-bottom: 10px;
}
.category-item a {
  position: absolute;
  bottom: 20px;
  left: 20px;
}


/*** Testimonial SEction ***/ 
.testimonial-section {
  text-align: center;
  padding: 0px 0px 150px 0px
}

.testimonial-slider {
  margin-top: 40px;
}
.testimonial-slider .swiper-wrapper{
  transition-timing-function: linear;
}
.testimonial-item {
  width: 200px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.swiper-slide-active {
  opacity: 1;
}

.testimonial-item blockquote {
  font-size: 15px;
  width: 100%;
    margin: 0px;
}

.testimonial-name {
  font-weight: 200;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 0px;
}

/*** About Section ***/ 

.about-image {
  flex: 0 0 50%;
  max-width: 50%;
}
.about-content {
  flex: 0 0 50%;
  max-width: 50%;
  background: #EFEFEF;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}
.about-section {
  min-height: 508px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text p {
  margin: 0px;
    text-align: justify;
}
.about-text p:last-child {
  font-weight: 200;
  font-size: 12px;
}


/*** Instagram Section ***/ 
.instagram-section {
  padding: 150px 0;
}

.instagram-header {
  margin-bottom: 30px;
}

.follow-text {
  font-size: 12px;
  margin-bottom: 5px;
  text-align: center;
}

.instagram-handle {
  margin: 0;
  text-align: center;
}

.instagram-feed {
  display: flex;
}
.feed_item{
  flex: 0 0 calc(20% - 8px);
  max-width: calc(20% - 8px);
  border-radius: 20px;
  overflow: hidden;
}
/*** FAQ ***/ 
.faq_section {
  padding-bottom: 150px;
}
.faq_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.faq_right {
  flex: 0 0 66.67%;
  max-width: calc(66.67% - 40px);
  padding-top: 50px;
}
.faq_titles {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}
.faq_titles h2 {
  margin-bottom: 30px;
}
.faq_titles p {
  font-size: 12px;
  margin: 0px 0px 10px 0px;
}
.faq_item h3 {
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
}
.faq_ans {
  display: none;
}
.faq_item {
  border-bottom: 1px solid #B3B3B3;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.faq_item:last-child {
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

/*** Newsletter Section ***/ 

.newsletter_section {
  background: #EFEFEF;
  padding: 150px 0px;
}
.news_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4%;
}
.news_img {
  flex: 0 0 40%;
  max-width: 40%;
}
.news_content {
  flex: 0 0 55.2%;
  max-width: 55.2%;
}
.news_img img {
  max-height: 257px;
}
.news_details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.news_details > * {
  margin: 0px;
  padding: 0px;
}
.news_details ul {
  padding-left: 16px;
}
.news_form {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_form input {
  border-bottom: 1px solid #000000;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  background: transparent;
  flex: 0 0 calc(100% - 200px);
}
.news_form button {
  background: transparent;
  padding: 0px;
  font-size: 15px;
  color: #000;
  font-weight: 400;
  max-width: 180px;
}
.news_form input:focus {
  outline: none;
}


/*** Footer ***/ 

.footer {
  background: #EFEFEF;
  padding: 50px 0px;
}
.footer_bottom {
  margin-top: 40px;
  justify-content: space-between;
}
.footer_widget h3{
  font-size: 15px;
  margin: 0px;
}
.footer_widget p{
  margin: 0px;
}

.footer_copyright p {
  margin: 0px;
  font-size: 10px;
  font-family: Inter;
  text-align: right;
  font-weight: 300;
}
.footer_copyright p a{
  font-weight: 500;
}
.footer_social h3 {
  font-size: 15px;
}
.footer_social ul li a {
  font-size: 15px;
}


/*** Woocommerce Design ***/ 
.archive .content-area {
  padding: 150px 0px;
}

.woocommerce-products-header h1 {
  color: #000;
  font-size: 20px;
}
.woocommerce-products-header {
  margin-bottom: 10px;
}

ul.page-numbers {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.woocommerce-pagination {
  margin-top: 20px;
}
ul.page-numbers .page-numbers {
  font-size: 18px;
}


/*** Mini Cart ***/ 
.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  max-width: 450px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}
.admin-bar .mini-cart-drawer{
  top: 32px;
  height: calc(100vh - 32px);
}

.mini-cart-drawer.open {
  right: 0;
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  display: none;
}

.mini-cart-overlay.show {
  display: block;
}

.mini-cart-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
    border-bottom: 0.5px solid #00000080;
      align-items: center;
      gap: 10px;
}

.mini-cart-item {
    border-bottom: 0.5px solid #00000080;
  padding-bottom: 15px;
  display: flex;
  gap: 15px;
}

.mini-cart-item input.qty {
  width: 50px;
}
.mini-cart-footer {
  padding: 15px;
  border-top: 0.5px solid #00000080;
  background: #fafafa;
  position: sticky;
  bottom: 0;
}

.mini-cart-footer .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 16px;
}

.mini-cart-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}
.mini-cart-img {
  flex: 0 0 80px;
  max-width: 80px;
  height: 80px;
}
.mini-cart-right {
  flex: 0 0 calc(100% - 95px);
  max-width: calc(100% - 95px);
}
.mini-cart-right-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.mini-cart-right-top-left {
  flex: 0 0 calc(100% - 100px);
  max-width: calc(100% - 100px);
    display: flex;
  flex-direction: column;
  gap: 3px;
}
.mini-cart-right-top-right {
  flex: 0 0 90px;
  max-width: 90px;
}
.mini-cart-right-top-right .price {
  font-family: Inter;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
}
.mini-cart-right-top-left h4 {
  font-family: Clofie;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}
.mini-cart-variation p {
  margin: 0px;
  font-family: Inter;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
}
.mini-cart-variation p strong {
  font-weight: 500;
  font-family: Inter;
    text-transform: capitalize;
}
.mini-cart-right-bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.remove-item {
  font-family: Inter;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  cursor: pointer;
}
.mini-cart-item:last-child {
  margin-bottom: ;
  border-bottom: 0px;
}

.mini-cart-footer .subtotal strong, .mini-cart-footer .cart-subtotal {
  font-weight: 400;
  font-size: 20px;
}
.mini-cart-close{
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}


/*** Search Drawer ***/ 
.search-drawer {
  position: fixed;
  right: -100%;
  top: 0;
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.search-drawer.open {
  right: 0;
}

.search-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
}

.search-drawer-overlay.show {
  display: block;
}

.search-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.search-drawer-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  margin: 20px;
  border-radius: 5px;
}

.search-drawer-item {
  display: flex;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.search-drawer-img img {
  width: 60px;
  height: auto;
}

.search-drawer-info h4 {
  margin: 0;
  font-size: 16px;
}

.search-drawer-info .price {
  font-weight: bold;
  color: #333;
}

.search-drawer-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  gap: 10px;
}

.search-drawer-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.search-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  color: #333;
}


/*** Page COntent ***/ 

.page_content_section {
  padding: 150px 0px;
}
.page_featuerd_image {
  position: relative;
  height: 100vh;
  width: 100%;
  min-height: 300px;
    background: #EFEFEF;
}
.page_featuerd_image img {
  position: absolute;
  top: 100%;
  height: 100%;
  top: 0px;
  width: 100%;
  object-fit: cover;
}
.page_featuerd_image h1 {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 1;
  color: #000;
  font-size: 30px;
}

.page_content p {
  margin-bottom: 30px;
}
.page_content p:last-child{
  margin-bottom: 0px;
}

.woocommerce-page .page_featuerd_image {
  display: none;
}


/*** Woocommerce Thank you ***/ 
/* Thank You Page Wrapper */
.woocommerce-order h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Order Details Summary */
.woocommerce-order-overview {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  list-style: none;
}

.woocommerce-order-overview li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.woocommerce-order-overview li strong {
  color: #333;
}

/* Order Details Table */
.woocommerce-order-details {
  margin-top: 30px;
}

.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.woocommerce-table--order-details th {
  background: #f1f1f1;
  color: #333;
}

.woocommerce-table--order-details tfoot td {
  font-weight: bold;
}

/* Payment Section */
.woocommerce-customer-details {
  margin-top: 30px;
}

.woocommerce-customer-details address {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}


/*** Woocommerce Account ***/ 

.acc_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.woocommerce-MyAccount-navigation {
  flex: 0 0 20%;
  max-width: 20%;
}
.woocommerce-MyAccount-content {
  flex: 0 0 calc(80% - 40px);
  max-width: calc(80% - 40px);
}
.woocommerce-MyAccount-navigation ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  list-style: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  font-weight: 600;
}

.woocommerce-account .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-account .woocommerce-orders-table th, .woocommerce-account .woocommerce-orders-table td {
  border-bottom: 0.5px solid #00000080;
  padding: 5px;
  text-align: left;
}
.form-row input {
  width: 100%;
  background: #EFEFEF;
  border: none;
  height: 50px;
  padding: 10px;
}
.form-row input[type="checkbox"], .form-row input[type="radio"]{

    width: auto;
    height: auto;
}
.form-row label {
  width: 100%;
  display: block;
  margin-bottom: 3px;
}
.woocommerce-input-wrapper {
  width: 100%;
  display: block;
}
p.form-row {
  margin-bottom: 15px;
  margin-top: 0px;
}
.select2-container .select2-selection--single {
  height: 50px;
  background: #efefef;
  border: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
}
.woocommerce-account .woocommerce-MyAccount-content h2 {
  margin-bottom: 20px;
}

.woocommerce-Address {
  margin-bottom: 20px;
}
div#customer_login {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

div#customer_login > div {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

div#customer_login h2 {
    margin-bottom: 15px;
}

div#customer_login button {
    margin-top: 10px;
}