@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html::-webkit-scrollbar {
    width: 8px;
}
html::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
}
html::-webkit-scrollbar-track {
    background-color: var(--neutral-color);
}
::selection {
    background-color: var(--accent-color);
    color: var(--light);
}
button {
    cursor: pointer;
  border: none;      /* Uklanja podrazumijevani okvir dugmeta */
  outline: none;     /* Uklanja plavu/crnu liniju pri kliku (fokus) */
}
/*Trash*/
.hover-var-1 {
    overflow: hidden;
    cursor: pointer;
}
.hover-1-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-30px);
    transition: all 0.3s ease-in-out;
}
.hover-var-1 span {
    white-space: nowrap;
    overflow: hidden;
}
.hover-var-1:hover .hover-1-content {
    transform: translateY(-10px);
}
.line-1 {
    width: 20px;
    height: 1.5px;
    background-color: var(--dark);
    border: none;
    transform: rotate(90deg);
     transition: all 0.3s ease-in-out;
}
.hover-2-content span {
    width: fit-content;
}
.hover-2-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 4px;
    align-items: start;
    transition: all 0.25s ease-in-out;
}
.hover-var-2 {
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}
.line-2 {
    width: 0px;
    height: 2px;
    background-color: var(--dark);
    border: none;
    margin: 0;
    transition: all 0.25s ease-in-out;
}
.hover-var-3 {
    overflow: hidden;
    cursor: pointer;
}
.hover-3-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transform: translateY(0px);
    transition: all 0.3s ease-in-out;
}
.hover-var-3 span {
    white-space: nowrap;
    overflow: hidden;
}
.line-3 {
    width: 0px;
    height: 2px;
    background-color: var(--accent-color);
    border: none;
    margin: 0;
    transition: all 0.3s ease-in-out;
}
.hover-var-3:hover .line-3 {
    width: 90%;
}
.hover-var-3:hover .hover-3-content {
    transform: translateY(-6px);
}
.sp-class2 {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: end;
}
.sp1-text {
    font-size: 32px;
    color: var(--accent-color);
    transform: translateY(2px);
}

/*Body System*/
* {
    box-sizing: border-box;
}
:root {
    --accent-color: #3F5913;
    --acc-hovered-color: #2a3c0b;
    --primary-color: #B6C991;
    --neutral-color: #CDD6BC;
    --tf-color: #e9ded3;
    --dark: #141414;
    --light: #FFF4E9;
    --paragraf: #141414ae;
    --light-p: #f5f5f5be;
    --special: #73854f;
}
* {
    font-family: "Google Sans", sans-serif;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: "Google Sans", sans-serif;
    background-color: var(--light);
}
main {
    width: 100%;
    height: 100%;
    gap: 0px;
}
section:not(.final-cta-section) {
    min-height: 100vh;
    padding: 20px 0px;
}
/**********************************************************************/
/*Components*/
.btn-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.universal-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
.cs-copy {
    padding-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 50%;
}
.main-cta {
    overflow: hidden;
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

    width: 200px;
    height: 50px;
    border-radius: 6px;

    background-color: var(--accent-color);
    color: var(--light);
    text-decoration: none;
    transition: all 0.4s ease;
    transform: translateY(0px);
    cursor: pointer;
}
.main-cta::before {
    position: absolute;
    content: "";
    width: 70%;
    height: 200px;
    background-color: var(--primary-color);
    filter: blur(35px);
    opacity: 0.5;
    border-radius: 100px;
    transform: translateY(110px);
    opacity: 0;
}
.main-cta:hover {
    background-color: var(--acc-hovered-color);
}
.viber-cta {
    overflow: hidden;
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;
    border-radius: 6px;

    background-color: #7360F2;
    color: var(--light);
    text-decoration: none;
    transition: all 0.4s ease;
    transform: translateY(0px);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.viber-cta:hover {
    background-color: var(--acc-hovered-color);
}
.whatsapp-cta {
    overflow: hidden;
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;
    border-radius: 6px;

    background-color: #25D366;
    color: var(--light);
    text-decoration: none;
    transition: all 0.4s ease;
    transform: translateY(0px);
    cursor: pointer;
}
.whatsapp-cta:hover {
    background-color: var(--acc-hovered-color);
}
.viber-cta img, .whatsapp-cta img {
    width: 40px;
    height: 40px;
}
.dm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dms {
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.secondary-cta {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

    width: 200px;
    height: 50px;
    border-radius: 6px;

    color: var(--dark);
    border: 1px solid var(--dark);

    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.product-page-item .secondary-cta{
    width: 100%;
}
.secondary-cta:hover {
    background-color: var(--dark);
    color: var(--light);
}
.buy-product-cta {
    overflow: hidden;
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 50px;
    border-radius: 6px;

    background-color: var(--accent-color);
    color: var(--light);
    text-decoration: none;
    transition: all 0.4s ease;
    transform: translateY(0px);
    cursor: pointer;
}
.buy-action {
    overflow: hidden;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 50px;
    border-radius: 6px;

    background-color: #8d8d8d;
    color: var(--light);

    text-decoration: none;
    transition: all 0.3s ease;

    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.contact-form:has(input[name="privacy"]:checked) .buy-action {
    background-color: var(--accent-color);
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
}
.buy-product:hover {
    transform: translateY(-6px);
}
input[type="checkbox"] {
    accent-color: var(--accent-color);
}
.view-card-cta {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 50px;
    border-radius: 6px;

    color: var(--dark);
    border: 1px solid var(--dark);

    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.view-card:hover {
    transform: translateY(-6px);
}
/**********************************************************************/
/* Text */
h1 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: -1px;
}
h2 {
    font-size: 32px;
    font-weight: 400;
}
h3 {
    font-size: 18px;
}
p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--paragraf);
    font-weight: 400;
}
h1, h2, h3, h4, p {
   margin: 0;
}
h4 {
    font-size: 14px;
    color: var(--paragraf);
    font-weight: 400;
}
.pspan {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--dark);
}
.mini-header {
    z-index: 11;
    position: fixed;
    width: 100%;
    height: fit-content;
    padding: 12px 0px;
    display: flex;
    justify-content: center;
    background-color: var(--accent-color);
    text-align: center;
    overflow: hidden;
}
.mini-header::before {
    position: absolute;
    content: "";
    width: 90%;
    height: 200px;
    background-color: var(--primary-color);
    filter: blur(35px);
    opacity: 0.5;
    border-radius: 100px;
    transform: translateY(-220px);
    opacity: 0;
}   
.mini-header a {
    text-decoration: none;
    color: var(--light);
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
}
.header-normal { 
    transform: translateY(30px);
    position: fixed; 
    z-index: 10; 
    width: 100%; 
    padding: 10px 0px; 
    background-color: var(--light); 
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #00000015;

    box-shadow:
      -1px 8px 12px 1px rgba(0, 0, 0, 0.06), 
      0px 20px 24px rgba(0, 0, 0, 0.05), 
      1px 20px 48px rgba(0, 0, 0, 0.08);
} 
.header-inner { 
    z-index: 11; 
    width: 80%; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}
.header-mobile {
    position: fixed;
    right: -420px;
    top: 0px;
    height: 100vh !important;
    width: fit-content;
    background-color: var(--neutral-color);
    padding: 20px 20px 20px 20px;
    transition: all 0.4s ease;
    z-index: 100;
    display: flex;
    align-items: center;
}
.header-mobile.active {
    right: 0px;
}
.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
    position: relative;
}
.mobile-content nav ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    padding: 0px;
    gap: 34px; 
} 
.mobile-content nav ul li a {
    padding: 16px 80px; 
    background: none; 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 100; 
    transition: all 0.3s ease; 
    border-radius: 8px;
    white-space: nowrap;
} 
.mobile-content nav ul li a:hover { 
    background: #ffffff15; 
}
/*************************************/
.shop-card-div {
    background: none;
    border: none;
    cursor: pointer;
}
.card-panel {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 440px; /* Preporučeno postavljanje fiksne širine za korpu (npr. 380px ili 100% na mobitelima) */
    max-width: 100%;
    background-color: var(--light, #ffffff);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding: 80px 40px;
    box-sizing: border-box;
    transform: translateX(100%); /* Bolje i efikasnije od right: -100vh */
    transition: transform 0.4s ease;
    z-index: 1000;
}
.delete {
    cursor: pointer;
    width: 20px;
    height: auto;
}
.card-panel.active {
    transform: translateX(0);
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    position: relative;
}

/* Dugme za zatvaranje korpe */
.close2 {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}
.close2 img {
    width: 20px;
    height: 20px;
}
.close {
    background: transparent;
    border: none;
    cursor: pointer;
}
.close img {
    width: 20px;
    height: 20px;
}
.top-card-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.top-card-panel-text {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

/* Omogućava skrolovanje proizvoda ako ih ima više od visine ekrana */
.products-lenis {
    /*max-height: calc(100vh - 100%);*/
    overflow-y: auto;
    overflow-x: hidden;
}
.products-lenis::-webkit-scrollbar {
    width: 8px;
}
.products-lenis::-webkit-scrollbar-track {
    background-color: var(--light);
}
.products-lenis::-webkit-scrollbar-thumb {
    background-color: #00000015;
}
.products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-i-content .m-l {
    flex-wrap: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.p-i-content {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-panel-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.za-platiti {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-btn-grp {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/*************************************/
.header-inner nav { 
    display: flex; 
    align-items: center; 
    gap: 32px; 
}
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}
.header-inner nav ul { 
    list-style: none; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 2px; 
}
.badge {
    background-color: var(--primary-color);
    color: var(--dark);
    font-size: 10px;
    padding: 6px 8px;
    border-radius: 4px;
    line-height: 1;
}
.header-inner nav ul li a {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 16px 20px; 
    background: none; 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 100; 
    transition: all 0.3s ease; 
    border-radius: 6px;
    white-space: nowrap;
    transform: translateY(0px);
}
.header-inner nav ul li a:hover {
    color: var(--accent-color);
    outline: none;
    transform: translateY(-2px);
}
.hamburger {
        display: none;
    }
.menu-bar { 
    width: 30px; 
    height: 50px; 
    display: none; 
} 
.menu-bar hr { 
    width: 100%; 
} 
.logo { 
    width: 82px; 
    height: auto; 
} .dropdown { 
    position: absolute; 
    background-color: var(--neutral-color); } .submenu { display: flex; flex-direction: row; } .sub-links { padding: 16px 20px; background: none; text-decoration: none; color: var(--light); font-weight: 100; transition: all 0.3s ease; border-radius: 50px; } .submenu img { width: 75%; }
@media (max-width: 1052px) {
    html::-webkit-scrollbar {display: none;}
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .header-cta { display: none; }
    .header-inner .main-cta { display: none;}
    .header-inner nav { display: none;}
    .hamburger {display: block;}
    .dev-part p {display: none;}
}
nav ul li a.active {
    background-color: #F6310015;
}
.header-normal {padding: 16px;}
.dev-part {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.shop-card-div {
    position: relative;
    width: fit-content;
    height: auto;
}
.shop-card-div img {
    width: 26px;
    height: auto;
}
.wish-div {
    position: relative;
    width: fit-content;
    height: auto;
}
.wish-div img {
    width: 26px;
    height: auto;
}
.card-count, .wish-count {
    width: fit-content;
    height: fit-content;
    padding: 2px 6px;
    border-radius: 20px;
    background-color: red;
    position: absolute;
    top: -10px;
    right: -10px;
    color: white;
}
/**********************************************************************/
.footer1 {
    border-top: 1px solid #00000015;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    min-height: auto;

    background-color: var(--light);

    overflow: hidden;
    padding: 80px 40px 10px;
    gap: 40px;
}
.footer1-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}
.sm-links-1 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: fit-content;
}
.sm-links-1 i {
  font-size: 34px;
  color: var(--dark);
  transition: 0.3s;
}
.sm-links-1 i:hover {
  color: var(--accent-color);
}
.footer1-column1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 30%;
}
.footer1-column1 .logo {
    font-size: 54px;
}
.footer1-column1 p {
    color: var(--paragraf);
    max-width: 400px;
}

.footer1-column2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.column-zv1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 150px;
}
.column-zv1 p {
    color: var(--paragraf);
}
.column-zv1 h3 {
    color: var(--dark);
    width: fit-content;
}
.column-zv1 a {
    width: fit-content;
    color: var(--paragraf);
    text-decoration: none;
    transform: translateX(0px);
    transition: all 0.2s ease-in;
    margin-left: 0px;
}
.column-zv1 a:hover {
    margin-left: 4px;
    transform: translateX(6px);
    color: var(--accent-color);
}
.footer1-column3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}
.footer1-column3 p {
    color: var(--paragraf);
    max-width: 100%;
}
.footer-subcontent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0px;
}
.footer-subcontent hr {
    width: 100%;
    height: 1px;
    border: none;
    outline: none;
    background-color: #00000025;
}
.data-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.data-links p {
    color: var(--paragraf);
}
.data-sublinks {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.data-sublinks a {
    text-decoration: none;
    color: var(--dark);
}
.copyright-1 {
    color: var(--dark);
}
/**********************************************************************/
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    padding: 40px 0px;
    margin-top: 130px;

    background-color: var(--light);

    overflow: hidden;
}
.hero-section-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    padding: 40px 0px;
    margin-top: 130px;

    background: radial-gradient(circle at 50% 20%, #B6C991 0%,  #73854f 70%);

    overflow: hidden;
}
.hero-content {
    margin: 100px 0px;
    width: 90%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    text-align: center;
    padding: 0px 0px;
}
.hero-one {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;

    align-items: center;

    max-width: 700px;
}
.hero-one h1 {
    color: ;
}
.hero-one p {
    text-align: center;
}
.heroimg {
    align-self: center;
    width: 50%;
    height: auto;
}
/****/
.cs-b {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 200px;
}
/**********************************************************************/
.tsp {
    overflow: hidden;
    padding: 60px 0px !important;
    display: flex;
    flex-direction: row;
    height: fit-content;
    justify-content: center;
    gap: 20px;
    align-items: center;
    background-color: #73854f00;
}
.tsp h4 {
    color: var(--dark);
    font-size: 16px;
}
.tsp2 {
    overflow: hidden;
    padding: 60px 0px !important;
    display: flex;
    flex-direction: row;
    height: fit-content;
    justify-content: center;
    gap: 20px;
    align-items: center;
    background-color: #73854f;
}
.tsp2 h4 {
    color: var(--light);
    font-size: 16px;
}
/**********************************************************************/
.benefit-copy hr {
    width: 100%;
    height: 1px;
    background-color: #00000035;
    outline: none;
    border: none;
}
.problem-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    min-height: auto;

    overflow: hidden;
    padding: 160px 0px;
    background-color: var(--light);
}
.problem-content {
    width: 90%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
    gap: 108px;
}
.problem-content-2 {
    width: 80%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
    gap: 20px;
}
.problem-grids {
    display: flex;
    flex-direction: column;
    gap: 100px;

    width: 100%;
    height: 50%;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: center;

    width: 100%;
    height: 50%;
}
.pod-grid-1 {
    gap: 10px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.pod-grid-2 {
    gap: 10px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.problem-item {
    text-decoration: none;
    width: 360px;
    padding: 14px;
    background-color: var(--primary-color);
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.2s ease-in;
    cursor: pointer;
    transform: translateY(0px);
    box-shadow:
      -1px 8px 12px 1px rgba(0, 0, 0, 0.06), 
      0px 20px 24px rgba(0, 0, 0, 0.05), 
      1px 20px 48px rgba(0, 0, 0, 0.08);
}
.problem-item:hover {
    transform: translateY(-3px);
    box-shadow:
      -1px 8px 12px 1px rgba(0, 0, 0, 0.06), 
      0px 20px 24px rgba(0, 0, 0, 0.05), 
      1px 20px 48px rgba(0, 0, 0, 0.08);
}
.problem-item p {
    text-align: center;
}
.problem-item-2 {
    text-decoration: none;
    padding: 14px;
    background-color: var(--primary-color);
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.2s ease-in;
    cursor: pointer;
    transform: translateY(0px);
    box-shadow:
      -1px 8px 12px 1px rgba(0, 0, 0, 0.0), 
      0px 20px 24px rgba(0, 0, 0, 0.0), 
      1px 20px 48px rgba(0, 0, 0, 0.0);
}
.problem-item-2:hover {
    transform: translateY(-3px);
    box-shadow:
      -1px 8px 12px 1px rgba(0, 0, 0, 0.06), 
      0px 20px 24px rgba(0, 0, 0, 0.05), 
      1px 20px 48px rgba(0, 0, 0, 0.08);
}
.problem-item-2 p {
    text-align: center;
}
.p-p-p {
    font-size: 20px;
    color: var(--dark);
    line-height: 140%;
}
/**********************************************************************/
.benefit-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: auto;

    background-color: var(--light);

    overflow: hidden;
}
.benefit-content {
    width: 65%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
    gap: 36px;
}
.benefit-group {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    text-align: center;
    gap: 14px;
}
.benefit-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.benefit-item {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 320px;
    height: fit-content;
    background-color: var(--tf-color);
    border-radius: 8px;
    padding: 20px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.special-benefit {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 320px;
    height: fit-content;
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 20px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.benefit-icon {
    width: 40px;
    height: auto;
}
/**********************************************************************/
.philosophy-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    min-height: auto;

    background-color: var(--light);

    overflow: hidden;
}
.philosophy-content {
    width: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
    gap: 40px;
}
.philosophy-content h2 {
    width: 100% !important;
    text-align: left;
}
.wrap-img {
    width: 360px;
    max-width: 40%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    float: right;
    margin: 0 0 20px 30px !important;
    display: block;
}
.philosophy-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    display: block;
}
.product-info-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 80px;

    width: 100%;
    min-height: auto;
    padding-bottom: 120px;

    background-color: var(--light);

    overflow: hidden;
}
.product-info-section-k {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 80px;

    width: 100%;
    min-height: auto;
    padding-bottom: 120px;
    margin-top: 220px;

    background-color: var(--light);

    overflow: hidden;
}
.product-info-content {
    width: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    text-align: center;
    gap: 40px;
}
.product-info-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}
.product-info-copy ul {
    display: flex;
    flex-direction: column;
    gap: 10px;;
}
.product-info-copy ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--paragraf);
    font-weight: 400;
}
.product-info-copy ul li b {
    color: var(--accent-color);
}
.p-subject {
    width: 50%;
    height: 380px;
    padding: 20px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.p2-subject {
    width: 50%;
    height: 380px;
    padding: 20px;
    background-color: var(--hover-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.philosophy-img {
    width: 80%;
    height: auto;
}
/**********************************************************************/
.product-review-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    gap: 20px;

    background-color: var(--light);

    overflow: hidden;
}
.product-review-content {
    width: 65%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    text-align: center;
    gap: 26px;
}
.product-review-content-s {
    width: 65%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    text-align: center;
    gap: 26px;
}
.product-review-content-s-s {
    width: 65%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;

    text-align: center;
    gap: 26px;
}
.s-link {
    color: var(--accent-color);
}
.pr-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}
.pr-img {
    width: 500px;
    height: auto;
}
.pr-img-s {
    width: 300px;
    object-fit: cover;
    height: 300px;
}
.pr-subject-s {
}
/**********************************************************************/
.special-section {
    margin: 0px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    min-height: auto;

    background-color: var(--primary-color);

    overflow: hidden;
    padding: 160px 0px;
}
.special-content {
    width: 65%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 40px;

    text-align: center;
}
.special-copy {
    display: flex;
    flex-direction: column;
    gap: 26px;
    text-align: left;
    width: 100%;
}
.special-subject {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 600px;
    border-radius: 10px;
}
.special-img {
    width: 130%;
    height: auto;
}
/**********************************************************************/
.offer-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    margin-top: 20px;
    height: auto;

    background-color: var(--light);

    overflow: hidden;
}
.universal-copy p {
    text-align: center;
}
.offer-content {
    width: 80%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
    gap: 48px;
}
.offers {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
#offer-box {
    min-width: 300px;
    width: 1fr;
    min-height: 400px;
}
.priority {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border-radius: 10px;
    overflow: hidden !important;
}
.priority::before {
    position: absolute;
    content: "";
    width: 90%;
    height: 300px;
    background-color: var(--primary-color);
    filter: blur(65px);
    opacity: 0.2;
    border-radius: 200px;
    transform: translateY(170px);
}
.priority p {
    color: var(--light);
}
.combo-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.combo-img {
    width: 90%;
    height: auto;
}
.priority-img {
    width: 100%;
    height: auto;
}
.combo-copy {
    text-align: left;
    padding: 20px;
}
.combo-copy p:nth-child(2) {
    font-weight: bold;
}
.oneproduct-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.oneproduct-img {
    width: 85%;
    height: auto;
}
.oneproduct-copy {
    text-align: right;
    padding: 20px;
}
.arrow-btn {
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    transition: all 0.3s ease;
}
.slider-wrapper {
    overflow: hidden;
    width: 300px;
}

.slider-track {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 100%;
    text-decoration: none;
    height: 100%;
}
/**********************************************************************/
.review-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    min-height: auto;

    background-color: var(--light);

    overflow: hidden;
}
.review-content {
    width: 80%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
}
/**********************************************************************/
.reviews-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;

    background-color: var(--light);
}
.reviews-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 65%;
    gap: 40px;
}
.carousel {
    width: 1200px;
    margin: 0;

    display: flex;
    flex-direction: row;
    justify-content: center;

    padding: 30px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        black 50%,
        transparent
    );
}
.reviews-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.ttlogo {
    width: 300px;
}
.reviews-box {
    width: 500px;
    height: fit-content;
    text-align: left;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 40px;

    background-color: var(--tf-color);
    border-radius: 12px;
}
.subtextt {
    display: flex;
    flex-direction: column;
}
.reviews-minibox {
    width: 60px;
    height: 60px;
    background-color: var(--light);

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    overflow: hidden;
}
.reviews-minibox img {
    transform: translateY(10px);
    width: 100%;
    height: auto;
}
.stars {
    font-size: 22px;
    color: var(--accent-color);
}
/**********************************************************************/
.faq-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: auto;
    margin-bottom: 40px;

    background-color: var(--light);

    overflow: hidden;
}
.faq-content {
    width: 80%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
}
/**********************************************************************/
.final-cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    min-height: 0vh;
    height: fit-content !important;
    padding: 0px 0px 80px;

    background-color: var(--light);

    overflow: hidden;
}
.hm-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;f
}
.final-cta-content {
    width: 80%;
    height: 80%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 28px;

    text-align: center;
}
/**********************************************************************/
.faq-section {
    width: 100%;
    padding: 120px 0;
}

.faq-content {
    width: 80%;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
    width: 74%;
}

.faq-item {
    background: var(--tf-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 40px;
    height: 100%;
    cursor: pointer;
}
.faq-question {
    width: 100%;
    border: none;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;

    padding: 0;
}

.faq-icon {
    font-size: 24px;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;

    padding: 0px;
}

.faq-answer p {
    padding-top: 20px;
    line-height: 1.7;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-icon {
    transition: transform .3s ease;
}
/**********************************************************************/
.product-review-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: auto;

    background-color: var(--light);

    overflow: hidden;
}
.product-review-section-s {
    margin-top: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: auto;
    gap: 10px;

    background-color: var(--light);

    overflow: hidden;
}
.products-section-content1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70%;
    gap: 40px;
}
.products-section {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: fit-content;
    margin-top: 180px;

    background-color: var(--light);

    overflow: hidden;
}
.products-section-2 {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: fit-content;

    background-color: var(--light);

    overflow: hidden;
}
.products-section .universal-copy {
    width: 90%;
}
.product-list {
    width: 100%;
    display: grid;
   /* KLJUČNA LINIJA: minimalna širina kartice je 250px, a maksimalna 1fr (širi se po potrebi) */
   grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
   gap: 10px;
}
.product-list a {
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(0px);
}
.product-list a:hover {
    transform: translateY(-6px);
}
.products {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.product-item {
    display: flex;
    gap: 12px;
    height: auto;
    background-color: var(--light);
    border: 1px solid #00000015;
    border-radius: 8px;
    padding: 30px;
    text-align: left;

    width: 100%;
    display: flex;
    gap: 15px;
    flex-direction: row;
    align-items: flex-start;
}
.product-example {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    height: auto;
    background-color: var(--light);
    border: 1px solid #00000015;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    align-items: center;
}
.product-page-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: auto;
    background-color: var(--light);
    border: 1px solid #00000015;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    justify-content: space-evenly;
}
.product-page-item .main-cta {
    width: 100%;
}
.product-image {
    width: 100%;
    height: auto;
}
.product-image-2 {
    align-self: center;
    width: 70%;
    height: auto;
}
.product-title {
    font-size: 20px;
    color: var(--dark);
}
/**********************************************************************/
/**** RESPONSIVE DESIGN SYSTM ********************/
@media (max-width: 900px) {
    .products-section-content1 {
        width: 90%;
    }
    .cs-b {
        gap: 20px;
    }
    .all-in {
        flex-direction: column !important;
        width: 90% !important;
    }
    .tsp {
        padding: 0px 20px 40px!important;
    }
    .main-cta .add-cart {
        width: 100% !important;
    }
    .problem-content {
        gap: 20px;
    }
    .pod-grid-1, .pod-grid-2 {
        justify-content: center;
    }
    .problem-grids {
        gap: 10px;
    }
    .pr-img-s {
        width: 100% !important;
        height: auto !important;
    }
    .pr-subject-s {
        width: 100%;
    }
    .cs-b {
        flex-direction: column;
    }
    .cs-copy {
        width: 100%;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-one {
        align-items: center;
        text-align: center;
    }
    .heroimg {
        width: 110%;
    }
    section {
        padding: 100px 0px;
    }
    .main-cta, .secondary-cta {
        width: 100%;
        height: 54px;
    }
    .problem-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .benefit-content {
        width: 90%;
    }
    .benefit-group {
        flex-direction: column;
        width: 100%;
    }
    .philosophy-content {
        flex-direction: column-reverse;
        width: 90%;
    }
    .philosophy-copy {
        width: 100%;
    }
    .p-subject {
        width: 100%;
        min-height: 50%;
    }
    .p2-subject {
        width: 100%;
        min-height: 50%;
    }
    .philosophy-img {
        width: 100%;
    }
    .product-review-content {
        flex-direction: column;
        width: 90%;
    }
    .product-review-content-s {
        align-items: flex-start;
        flex-direction: column;
        width: 90%;
    }
    .product-review-content-s-s {
        align-items: flex-start;
        flex-direction: column;
        width: 90%;
    }
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    .pr-subject {
        width: 100%;
    }
    .pr-img {
        width: 100%;
        max-width: 400px;
    }
    .special-subject {
        width: 100%;
        height: auto;
    }
    .special-img {
        width: 100%;
    }
    .special-copy {
        width: 100%;
    }
    .footer-content {
        width: 90%;
    }
    .offers {
        flex-direction: column-reverse;
        align-items: center;
    }
    #offer-box {
        width: 90%;
    }
    .footer1-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer1-column1,
    .footer1-column3 {
        max-width: 100%;
        width: 100%;
    }
    .product-item {
        grid-template-columns: 100%;
    }
    .data-links {
        flex-direction: column;
        gap: 20px;
    }

    .faq-list {
        width: 100%;
    }
}
@media (max-width: 1240px) {
    .special-content {
        width: 90%;
        flex-direction: column;
    }
    .product-content {
        flex-direction: column-reverse !important;
        width: 90% !important;
        justify-content: center !important;
    }
    .product-info-section {
        gap: 80px;
    }
    .product-info-section-k {
        gap: 80px;
    }
    .product-info-content {
        width: 90%;
    }
    .part-2-image {
        width: 100%;
        height: auto;
        transform: translateX(0px) !important;
    }      

}
.part-2-image {
    max-width: 600px;
    transform: translateX(120px);
}
/* Footer animation keyframes and reduced-motion support */
@keyframes footerSlideUp {
    from { transform: translateY(24px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes footerLinkIn {
    from { transform: translateY(8px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.column-zv1 a {
    opacity: 0;
    transform: translateY(8px);
    animation: footerLinkIn 520ms cubic-bezier(0.22,1,0.36,1) forwards;
}
.column-zv1 a:nth-child(1) { animation-delay: 380ms; }
.column-zv1 a:nth-child(2) { animation-delay: 460ms; }
.column-zv1 a:nth-child(3) { animation-delay: 540ms; }
.column-zv1 a:nth-child(4) { animation-delay: 620ms; }
.column-zv1 a:nth-child(5) { animation-delay: 700ms; }
.column-zv1 a:nth-child(6) { animation-delay: 760ms; }

@media (prefers-reduced-motion: reduce) {
    .footer1, .column-zv1 a {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
.dev-part {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.shop-card-div {
    position: relative;
    width: fit-content;
    height: auto;
}
.shop-card-div img {
    width: 26px;
    height: auto;
}
.wish-div {
    position: relative;
    width: fit-content;
    height: auto;
}
.wish-div img {
    width: 26px;
    height: auto;
}
.card-count, .wish-count {
    width: fit-content;
    height: fit-content;
    padding: 6px 10px;
    border: 3px solid var(--light);
    border-radius: 20px;
    background-color: var(--accent-color);
    position: absolute;
    top: -16px;
    right: -14px;
    color: white;
}
/*******************************************************/
.price-grp {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.price-grp-pp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
@media (max-width: 900px) {
    .price-grp {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .price-in-grp {
        align-items: left;
    }
}
.price-in-grp {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.price-in-grp p {
    text-decoration: line-through;
    opacity: 0.5;
    text-align: left;
}
ul.pogodnosti {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
}
.pogodnosti li {
    position: relative;
    color: var(--paragraf);
}
.pogodnosti li::marker {
    color: #00bcd4;
    font-size: 1.2em;
}
.pogodnosti li::before {
    content: "✓";
    margin-right: 14px;
    color: var(--accent-color);
    font-weight: bold;
}
/*****************************************************/
.product-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    padding: 40px 0px;
    margin-top: 180px;

    background-color: var(--light);

    overflow: hidden;
}
.product-content {
    width: 80%;
    height: 80%;

    display: flex;
    align-items: center !important;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    
    text-align: center;
    padding: 0;
}
.product-visual img {
    width: 100%;
}
.product-first-part-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
}

.price-in-grp-pp {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
}
.price-in-grp-pp h3, p {
    text-align: left;
}
.price-in-grp-pp p {
    text-decoration: line-through;
}
.product-first-part-3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
}
.product-first-part-3 h2, p {
    text-align: left;
}
.product-first-part-1 h1, .product-first-part-1 h2 {
    text-align: left;
}
.product-copy {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
}
.copy-part-first {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
}
.copy-first {
    text-align: left;
}
.item-img {
    width: 120px;
    height: fit-content;
}
.item-img-card {
    width: 120px;
    height: fit-content;
}
.add-item {
    cursor: pointer;
}
.m-l {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.m-l button {
    background-color: #efe7de;
    border-radius: 4px;
    padding: 4px 10px;
}
.p-i-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.p-i-content p {
    color: var(--dark);
}
.card-btn-grp {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    width: 100%;
    padding: 40px 20px;
    margin-top: 180px;

    background-color: var(--light);

    overflow: hidden;
}
.card-section-content {
    margin-bottom: 100px;
    width: 90%;
    
    display: flex;
    /* align-items: center;  <-- UKLONI ILI ZAMIJENI SA stretch (stretch je default) */
    align-items: flex-start; /* Rasteže svu djecu u redu na istu visinu */
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    
    text-align: center;
    padding: 0px 0px;
}
@media (max-width: 1230px) {
    .card-section-content {
        flex-direction: column;
        align-items: center;
    }
    .card-page-info {
        width: 100% !important;
    }
}
.card-section-content-login {
    width: fit-content;
    
    display: flex;
    /* align-items: center;  <-- UKLONI ILI ZAMIJENI SA stretch (stretch je default) */
    align-items: flex-start; /* Rasteže svu djecu u redu na istu visinu */
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    
    text-align: center;
    padding: 0px 0px;
}
.card-page-products-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #00000015;
    padding: 20px;
}
@media (max-width: 1388px) {
    .product-first-part-1 {
        justify-content: center;
        align-items: center;
    }
    .product-first-part-1 h1, .product-first-part-1 h2 {
    text-align: center;
}
    .copy-part-first {
        justify-content: center;
        align-items: center;
    }
    .price-grp-pp {
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }
    .price-grp-pp-pp {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .price-in-grp-pp p, .price-in-grp-pp h3{
        text-align: center !important;
    }
    .card-section-content-login {
    width: 100% !important;
    }
    .card-page-products-main {
        width: 100% !important;
    }
    .contact-section {
        width: 100% !important;
    }
    .card-page-products {
        width: 100%;
    }
}
.data-sublinks p > a {
    color: var(--accent-color);
    text-decoration: underline;
}
.card-page-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
}
.card-page-products-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
    overflow-y: auto;
    height: 300px;
}
.card-page-products-login::-webkit-scrollbar {
    width: 8px;
}
.card-page-products-login::-webkit-scrollbar-track {
    background-color: var(--light);
}
.card-page-products-login::-webkit-scrollbar-thumb {
    background-color: #00000015;
}
.card-page-products .products .product-item {
    width: 100%;
}

.card-page-products .p-i-content {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.product-example .products .product-item .p-i-content {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.empty {
    width: 142px;
    height: 10px;
    background-color: none;
}
.card-page-products .products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-page-info {
    width: 20%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: left;
    border: 1px solid #00000015;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    gap: 80px;
    
    /* width: fit-content; <-- Može ostaviti ako želiš fiksnu/potrebnu širinu, npr. width: 350px ili flex: 1 */
    /* height: 100%; <-- Više ti i ne treba jer ga flex alignment rasteže */
    
    /* height: fit-content; <-- OVO OBAVEZNO UKLONI! */
}
.card-page-info h2 {
    text-align: left;
    width: 100%;
}
.card-page-info-login {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    gap: 80px;
    
    /* width: fit-content; <-- Može ostaviti ako želiš fiksnu/potrebnu širinu, npr. width: 350px ili flex: 1 */
    /* height: 100%; <-- Više ti i ne treba jer ga flex alignment rasteže */
    
    /* height: fit-content; <-- OVO OBAVEZNO UKLONI! */
}
.card-page-info-login h2 {
    text-align: left;
    width: 100%;
}
.pricing-parts {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.subtotal {
    justify-content: space-between;
    text-align: left;
    display: flex;
    flex-direction: row;
}
.shipping {
    justify-content: space-between;
    text-align: left;
    display: flex;
    flex-direction: row;
}
.total {
    justify-content: space-between;
    text-align: left;
    display: flex;
    flex-direction: row;
}
.first-pricing {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.first-pricing .buy-product-cta {
    width: 100%;
}
.pricing-parts hr {
    background-color: #00000000;
    width: 100%;
    color: red;
}
.subtotal-count {
    font-weight: normal;
}
.total-count {
    font-weight: bold;
    font-size: 20px;
}
.shipping-count {
    font-weight: normal;
}
@media (max-width: 950px) {
    .product-item {
        flex-direction: column;
    }
    .p-i-content {
        flex-direction: column;
        flex-wrap: wrap;
    }
}
.all-in {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    padding: 20px;
    width: 80%;
}
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    
    width: fit-content;
    height: fit-content;

    background-color: var(--light);
}
.contact-section-rl {
    margin-top: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    
    width: 100%;
    height: fit-content;

    background-color: var(--light);
}
.contact-section-rl-content {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.contact-form-upper-1 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.contact-form-body-1 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
}
.contact-form-bottom-1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
    margin-top: 12px;
}
.contact-grp-1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.contact-grp-1 input {
    width: 100%;
}
.upper-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.upper-info hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #d6d6d6;
}
.input-v2-group {
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 6px;
}
.input-v2 {
    width: 100%;
    min-height: 50px;
    padding: 8px 12px;
    font-family: "Google Sans", sans-serif;
    border: 1px #00000065 solid;
    background-color: transparent;
    border-radius: 6px;
}
.input-paragaf {
    width: 100%;
    min-height: 50px;
    padding: 8px 12px;
    font-family: "Google Sans", sans-serif;
    border: 1px #00000065 solid;
    background-color: transparent;
    border-radius: 6px;
    resize: vertical;
}
.submit-btn {
    overflow: hidden;
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 50px;
    border-radius: 6px;

    background-color: var(--accent-color);
    color: var(--light);
    text-decoration: none;
    transition: all 0.4s ease;
    transform: translateY(0px);
    cursor: pointer;
    outline: none;
}
.submit-btn:hover {
    transform: translateY(-6px);
}
.input-v2:focus-visible {
    outline: 1px solid var(--accent-color);
}
.empty-space {
    width: 100%;
    height: 250px;
    background-color: none;
}
.cart-popup{
position:fixed;
right:30px;
bottom:30px;
background:light;
background-color: var(--light);
border: 1px solid #00000015;
padding:15px 25px;
border-radius:12px;
display:flex;
align-items:center;
gap:10px;
opacity:0;
transform:translateY(30px);
transition:.3s;
z-index:999999;
pointer-events:none;
}
.cart-popup.show{
opacity:1;
transform:translateY(0);
}
.empty-cart{
display:flex;
text-align:left;
padding:40px 20px;
}
.empty-cart p {
margin-bottom: 10px;
font-size:20px;
font-weight:600;
}
.empty-cart span{
opacity:.7;
}
.carousel {
    overflow-x: auto;
    display: flex;
    gap: 10px;
}
.carousel::-webkit-scrollbar {
    display: none;
}
@keyframes spin {
    from {translate: 0;}
    to {translate: -100%;}
}
.partner-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
    animation: spin 20s infinite linear;
}
.animacija {
    width: 300px;
    height: 300px;
    position: relative;
    margin-top: 60px;
    margin-bottom: 40px;
    align-self: center;
    transform: translateX(-30px);
}
@keyframes animh-g {
    from {translate: 0px; rotate: 15deg;scale: 0.6;}
    to {translate: 0px; rotate: 0deg; scale: 1.1;}
}
@keyframes animh-1 {
    from {translate: 0px; rotate: 55deg;}
    to {translate: -30px; rotate: -40deg;}
}
@keyframes animh-2 {
    from {translate: -40px; rotate: -45deg;}
    to {translate: 0px; rotate: 20deg;}
}
@keyframes animh-3 {
    from {translate: -40px; rotate: -45deg;}
    to {translate: 0px; rotate: 0deg;}
}
.anim {
    z-index: 2;
    position: absolute;
    top: -50%;
    left: 0%;
    animation: animh-1 2s ease-in-out forwards;
    width: 250px;
}
.anim-g {
    z-index: 4;
    position: absolute;
    top: -10%;
    left: 0%;
    animation: animh-g 2s ease-in-out forwards;
    width: 380px;
}
.anim-3 {
    z-index: 5;
    position: absolute;
    top: 60%;
    left: 0%;
    animation: animh-g 2s ease-in-out forwards;
    width: 200px;
}
.anim-2 {
    z-index: 2;
    position: absolute;
    top: -30%;
    right: -20%;
    animation: animh-2 2s ease-in-out forwards;
    width: 200px;
}
/* =========================
   PRELOADER
========================= */

#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background: var(--light);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    transform: translateY(0);
    transition: transform 0.7s ease-in-out;
}
#preloader .pl {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: fit-content;
    height: 260px;
}
#preloader img {
    width: 180px;
    height: auto;
    animation: loading 2s linear infinite;
}

@keyframes loading {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(300px);
    }
}

/* Kada se učitavanje završi */
#preloader.hide {
    transform: translateY(-100%);
}


/* =========================
   LOADER
========================= */

.loader {
    width: 40px;
    height: 40px;

    border: 4px solid #ddd;
    border-top-color: #000;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;
}


/* =========================
   SPIN ANIMATION
========================= */