@font-face {
    font-family: 'OurInfinityLove';
    src: url('../fonts/OurInfinityLove.woff') format('woff');
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
    font-family: "Times New Roman", Times, serif;
    color: #1c180c;
    background: #fafafa;
}


.header {
  background: linear-gradient(135deg, #0a1f1a 0%, #112d24 100%);
  color: #f1f1f1;
  padding: 16px 0;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #2a5a4a;
}

.header-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid #c9a66b;
}

.logo-text {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #e8d5b8;
}

.nav {
   display: flex;
  gap: 38px;
  position: static;
  margin-left: auto;
  margin-right: auto;
}

.nav a {
  color: #e8d5b8;
  text-decoration: none;
  font-size: 17.5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #c9a66b;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.icon {
  color: #e8d5b8;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.icon:hover {
  color: #c9a66b;
  transform: scale(1.12);
}

.flag {
  width: 34px;
  border-radius: 5px;
  cursor: pointer;
}

.flag:hover {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .nav {
    gap: 20px;
    font-size: 16px;
  }
  
  .header-container {
    padding: 0 20px;
  }
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #e8d5b8;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-lang {
    display: none;
}


main {
    min-height: calc(100vh - 120px);
}

.o-nama {
    background: #ffffff;
    padding: 40px 0 20px 0;
}

.about-block {
    max-width: 1500px;
    margin: 0 auto 70px auto;
    padding: 0 40px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.about-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.about-content h1,
.about-content h2 {
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    line-height: 1.2;
    color: #2b2b2b;
    margin: 0 0 22px 0;
}

.about-content h1 {
    font-size: 2.8rem;
}

.about-content h2 {
    font-size: 2.5rem;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 30px 0;
}

.about-content p b {
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #1a3c34;
    border: 1.5px solid #1a3c34;
    padding: 15px 32px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
    background: #1a3c34;
    color: #fff;
}

@media (max-width: 767px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-container.reverse .about-image {
        order: -1;
    }

    .about-image img {
        height: 320px;
    }

    .about-content h1 {
        font-size: 2.1rem;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }

    .about-block {
        padding: 0 20px;
    }
}


.site-footer{
    background:#0e211e;
    color:#eef3f2;
    padding:50px 20px 0;
    width:100%;
    height:auto;
    position:relative;
    z-index:1000;
}

.footer-inner{
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.3fr 1fr 1.4fr 1.3fr;
    gap:30px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.footer-col h6{
     color:#fff;
    font-weight:700;
    font-size:17px;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:6px;  
}

.footer-about p{
    color:#c9d3d1;
    font-size:14.5px;
    line-height:1.6;
    max-width:280px;
}
.footer-heading-icon{
    font-size:18px;
    color:#26ad65;
}

.footer-links{
    list-style:none;
    margin:0;
    padding:0;
    padding-left:5px; 
}
.dvojka{
    padding-left:24px !important;
}
.trojka{
    padding-left:30px !important;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#eef3f2;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:color .2s;
}

.footer-links a:hover{
    color:#26ad65;
}

.footer-links li.has-caret a::after{
    content:" \25BE";
    font-size:12px;
    color:#c9d3d1;
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:26px;
}

.footer-contact-item i{
    color:#26ad65;
    font-size:22px;
    width:28px;
    text-align:center;
    margin-top:2px;
}

.footer-contact-item p{
    margin:0;
    color:#c9d3d1;
    font-size:14.5px;
}

.footer-bottom{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.footer-bottom .social-media img{
    height:22px;
    margin-right:12px;
    filter:brightness(0) invert(1);
}

.footer-bottom p{
    margin:0;
    color:#c9d3d1;
    font-size:14px;
}

.hero-logo{
    display:block;
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

@media (max-width:992px){
    .footer-inner{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:768px){
    .footer-inner{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }
}
.about-content ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.about-content ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.about-content ul li::before {
    content: "\f06c"; /* fa-leaf */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #c9a66b;
    font-size: 0.95rem;
}

.about-content ul li strong {
    color: #1a3c34;
    font-weight: 700;
}
.shop-wrap{
    max-width:1400px;
    margin:0 auto;
    padding:20px 20px 30px;
}
.shop-breadcrumb{
    color:#999;
    font-size:14px;
    margin-bottom:20px;
}

.shop-breadcrumb a{
    color:#999;
    text-decoration:none;
}
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: #0f2a22;
  color: #e8d5b8;
  border: 2px solid #c9a66b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.back-to-top:hover {
  background: #c9a66b;
  color: #0f2a22;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-btn {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.reveal-btn-visible {
    opacity: 1;
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-item,
    .reveal-btn {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 992px) {
    .header-container {
        position: relative;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-right .flag {
        display: none !important;
    }

    .header-right .icon {
        display: none !important;
    }

    .nav {
        position: fixed;
        top: 85px;
        left: -100%;
        transform: none;
        width: 100%;
        height: calc(100vh - 85px);
        background: #0a1f1a;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 40px;
        gap: 25px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    .nav.active {
        left: 0;
        transform: none;
    }

    .nav a {
        font-size: 22px;
        padding: 10px 0;
    }

    .logo-text {
        font-size: 22px;
    }

    .nav-lang {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }

    .nav-lang .flag {
        width: 34px;
        height: 24px;
        object-fit: cover;
        border-radius: 4px;
        display: block;
    }

    .nav-lang .icon {
        font-size: 26px;
        line-height: 24px;
        display: block;
    }
}
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        align-items: center;
    }

    .footer-about p {
        max-width: 100%;
    }

    .contact-sub {
        margin-left: 0;
        justify-content: center;
    }

    .footer-col h6 {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .footer-inner {
        text-align: center;
    }

    .footer-about {
        align-items: center;
    }

    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-col h6 {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}
