/**
 * KettyShoes Ceramic E-commerce Website Styles
 *
 * @format
 */

:root {
    --topbar-h: 32px;
    --navbar-h: 71px;
    --header-h: 103px;
    --primary-color: #1a1a1a;
    --primary-light: #1c1c1c;
    --secondary-color: #c79545;
    --secondary-light: #d6ae6d;
    --primary-dark: #2c2c2c;
    --accent-color: #f3ece8;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8faf9;
    --border-light: #e2e2e2;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-light: 0 5px 20px rgba(47, 70, 44, 0.1);
    --shadow-medium: 0 10px 30px rgba(47, 70, 44, 0.15);
    --shadow-heavy: 0 20px 40px rgba(47, 70, 44, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --border-radius-large: 20px;
}

/* @font-face {
    font-family: "Arimo";
    src: url("/assets/webfonts/Arimo-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
} */

/* @font-face {
    font-family: "Merriweather";
    src: url("/assets/webfonts/Merriweather-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
} */

/* @font-face {
    font-family: "Merriweather";
    src: url("Merriweather-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Merriweather";
    src: url("Merriweather-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Merriweather";
    src: url("Merriweather-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Merriweather";
    src: url("Merriweather-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arimo", sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.font-serif {
    font-family: "Merriweather", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

/* Custom Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, #cfa25a, #b8892e, #cfa25a);
    background-size: 200% 200%;
    background-position: 0% 50%;
    border: none;
    color: white;
    font-weight: 400;
    padding: 0.8rem 1.5rem;
    border-radius: 48px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    letter-spacing: 0.3px;
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-primary-custom:hover {
    background-position: 100% 50%;
    /* letter-spacing: 1px; */
    color: white;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

/* Nova kolekcija CTA button */
.btn-kolekcija {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
}

.btn-kolekcija svg {
    transition: transform 0.35s ease;
}

.btn-kolekcija:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-outline-custom {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(47, 70, 44, 0.2);
}

.btn-outline-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Navigation Styles */
.navbar {
    background-color: white;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0.5rem 0;
    transition:
        all 0.3s ease,
        transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    /* box-shadow: 4px 4px 18px 0 rgba(0, 0, 0, 0.1); */
    border-bottom: 1px solid #efefef;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-visible {
    transform: translateY(0);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    padding: 1rem 0;
}

/* Non-transparent navbar for pages without data-transparent-navbar */
body:not([data-transparent-navbar]) .navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    padding: 1rem 0;
}

body:not([data-transparent-navbar]) .navbar-brand img {
    filter: none;
}

body:not([data-transparent-navbar]) .navbar-nav .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

body:not([data-transparent-navbar]) .cart-icon {
    color: var(--primary-color);
}

body:not([data-transparent-navbar]) .custom-toggler i {
    color: var(--primary-color);
}

.navbar-brand img {
    height: 55px;
    width: auto;

    &:focus {
        outline: none;
        box-shadow: 0;
    }
}

.navbar-brand img:focus-visible {
    outline: none;
    box-shadow: 0;
}

.navbar.scrolled .navbar-brand img {
    filter: none;
}

.navbar-nav .nav-link {
    color: black;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); */
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.navbar-nav .nav-link:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-2px);
    text-shadow: none;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-2px);
    text-shadow: none;
}

.cart-icon {
    position: relative;
    color: black;
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
/* 
.cart-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgb(243 236 232);
    transition: transform 0.3s ease;
    z-index: -1;
} */

.cart-svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.navbar.scrolled .cart-icon::before {
    background-color: rgba(150, 150, 150, 0.15);
}

.cart-icon:hover::before {
    transform: scale(1.15);
}

.navbar.scrolled .cart-icon:hover {
    color: var(--primary-dark);
}

.cart-badge {
    position: absolute;
    top: 0px;
    right: 1px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Mega Menu Navigation Styles */
.navbar-kategorije-container {
    background-color: #fff;
    position: relative;
    z-index: 999;
}

.navbar-kategorije-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.navbar-kategorije-item {
    position: relative;
    list-style: none;
}

.navbar-kategorije-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.navbar-kategorije-link:hover {
    color: var(--primary-color);
}

.navbar-kategorije-name {
    position: relative;
}

.navbar-kategorije-item.mega-menu-item .navbar-kategorije-name::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-kategorije-item.mega-menu-item:hover .navbar-kategorije-name::before {
    width: 100%;
    right: auto;
    left: 0;
}

.navbar-kategorije-item.mega-menu-item .navbar-kategorije-link::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.navbar-kategorije-item.mega-menu-item:hover .navbar-kategorije-link::after {
    transform: rotate(180deg);
}

/* Mega Menu Dropdown */
.navbar-kategorije-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 600px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 1000;
}

.navbar-kategorije-item.mega-menu-item:hover .navbar-kategorije-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.navbar-kategorije-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.navbar-kategorije-grid-item {
    display: block;
}

.navbar-kategorije-grid-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-kategorije-grid-link:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
}

.navbar-kategorije-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.navbar-kategorije-grid-link:hover .navbar-kategorije-img {
    transform: scale(1.05);
}

.navbar-kategorije-grid-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.navbar-kategorije-grid-link:hover .navbar-kategorije-grid-name {
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 1300px) {
    .navbar-kategorije-dropdown {
        left: 0;
        transform: translateX(0);
        min-width: 500px;
    }
}

@media (max-width: 991px) {
    .navbar-kategorije-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-kategorije-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .navbar-kategorije-dropdown {
        min-width: 90vw;
        max-width: 90vw;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 1rem;
    }

    .navbar-kategorije-img {
        width: 60px;
        height: 60px;
    }
}

/* Categories Section Styles */
.section-kategorije {
    padding: 4rem 0;
}

/* Featured Categories */
.featured-category {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
    max-height: 280px;
    position: relative;
}

.featured-category:hover {
}

.featured-category-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.featured-category-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1e1e1e;
}

.featured-category-title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #1e1e1e;
}

.featured-category-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
    color: #1e1e1e;
}

.featured-category-link {
    display: inline-block;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 4px;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.featured-category-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Kategorije cards */
.section-kategorije {
    background-color: #f8f7f5;
}

.kat-card {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.kat-card-img {
    overflow: hidden;
}

.kat-card-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.kat-card:hover .kat-card-img img {
    transform: scale(1.05);
}

.kat-card-overlay {
    padding: 0.9rem 0;
    text-align: center;
}

.kat-card-name {
    color: var(--primary-color);
    font-size: clamp(0.85rem, 0.78rem + 0.35vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.kat-card:hover .kat-card-name {
    color: var(--secondary-color);
}

.kat-card--sm .kat-card-img {
    border-radius: 8px;
    overflow: hidden;
}

.kat-card--sm .kat-card-img img {
    height: 230px;
}

.kat-card--sm .kat-card-overlay {
    padding: 0.5rem 0;
}

.kat-card--sm .kat-card-name {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .kat-card-img img {
        height: 260px;
    }
    .kat-card--sm .kat-card-img img {
        height: 130px;
    }
}

@media (max-width: 576px) {
    .kat-card-img img {
        height: 200px;
    }
    .kat-card--sm .kat-card-img img {
        height: 300px;
    }
}

/* Ukratko o nama */
.section-about {
    background-color: #fafaf9;
    background-image: radial-gradient(
        circle,
        rgba(207, 162, 90, 0.12) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 1rem;
}

.about-text-col .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.about-logo {
    max-width: 140px;
}

.about-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.about-description {
    font-size: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.about-imgs-wrapper {
    position: relative;
    height: 480px;
}

.about-img {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    width: 55%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-1 {
    top: 0;
    left: 0;
    transform: rotate(-4deg);
    z-index: 1;
}

.about-img-1 img {
    min-height: 300px;
    max-height: 520px;
}

.about-img-2 {
    bottom: 0;
    right: 0;
    transform: rotate(3.5deg);
    z-index: 2;
}

.about-img-2 img {
    min-height: 320px;
}

.about-features {
    margin-top: 3rem;
    padding-top: 2.5rem;
}

.about-feature {
    text-align: center;
    padding: 1rem 0.5rem;
}

.about-feature svg {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-feature-title {
    font-size: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.about-feature-text {
    font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.875rem);
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-text-col {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .about-text-col .section-title {
        text-align: center !important;
    }

    .about-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .about-description {
        text-align: center;
    }

    .about-imgs-wrapper {
        height: 280px;
    }

    .about-img {
        width: 36%;
    }

    .about-img-1 {
        left: 14%;
        top: 6%;
    }

    .about-img-2 {
        right: 14%;
        bottom: -6%;
    }
}

@media (max-width: 768px) {
    .about-imgs-wrapper {
        height: 240px;
    }

    .about-img {
        width: 40%;
    }

    .about-img-1 {
        left: 13%;
        top: 8%;
    }

    .about-img-2 {
        right: 10%;
        bottom: -11%;
    }

    .about-img-1 img,
    .about-img-2 img {
        min-height: 130px;
    }

    .about-features {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-imgs-wrapper {
        height: 240px;
    }

    .about-img {
        width: 40%;
    }

    .about-img-1 {
        left: 12%;
        top: 8%;
    }

    .about-img-2 {
        right: 12%;
        bottom: 8%;
    }

    .about-img-1 img,
    .about-img-2 img {
        min-height: 130px;
    }

    .about-features {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Category Grid (legacy) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-grid-item {
    text-align: center;
}

.category-grid-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.category-grid-link:hover {
    transform: translateY(-8px);
}

.category-grid-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.category-grid-link:hover .category-grid-image {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-grid-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.category-grid-count {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .featured-category {
        flex-direction: column;
    }

    .featured-category-left .featured-category-image,
    .featured-category-right .featured-category-image {
        order: -1;
        flex: 0 0 auto;
    }

    .featured-category-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

    .featured-category-content {
        padding: 2rem;
    }

    .featured-category-title {
        font-size: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1.5rem;
    }

    .category-grid-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .category-grid-image {
        width: 80px;
        height: 80px;
    }

    .category-grid-title {
        font-size: 14px;
    }

    .category-grid-count {
        font-size: 12px;
    }
}

/* Proizvodi sekcija */

/* Nova kolekcija product cards */
.proizvod-card {
    cursor: pointer;
    margin-bottom: 1rem;
}

.proizvod-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.proizvod-card-img img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
}

.proizvod-card-img-primary {
    transition: opacity 0.4s ease;
}

.proizvod-card-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.proizvod-card:hover .proizvod-card-img-primary {
    opacity: 0;
}

.proizvod-card:hover .proizvod-card-img-hover {
    opacity: 1;
}

.proizvod-card-info {
    padding: 0.8rem 0 0 0;
}

.proizvod-card-naziv {
    font-weight: 400;
    font-size: clamp(0.94rem, 0.85rem + 0.4vw, 1.0625rem);
    line-height: 1.35;
    letter-spacing: 0.3px;
    height: calc(1.0625rem * 1.35 * 3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.proizvod-card-brend {
    font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
    color: #888;
    font-weight: 400;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.proizvod-card-cena {
    font-size: clamp(0.94rem, 0.85rem + 0.4vw, 1.0625rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .proizvod-card-img img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .proizvod-card-img img {
        height: 300px;
    }

    .proizvod-card-naziv {
        font-size: 0.875rem;
    }

    .proizvod-card-cena {
        font-size: 0.875rem;
    }
}

@media (max-width: 536px) {
    .proizvod-card-img img {
        height: 200px;
    }
}

@media (max-width: 300px) {
    .proizvod-card-img img {
        height: 140px;
    }
}

/* Legacy product cards */

.section-proizvodi .proizvod .naziv,
.products-section .proizvod .naziv,
.related-products .proizvod .naziv {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.3px;
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 8px;
}

.section-proizvodi .proizvod .cena,
.products-section .proizvod .cena,
.related-products .proizvod .cena {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--primary-color);
}

.section-proizvodi .proizvod .slika,
.products-section .proizvod .slika,
.related-products .proizvod .slika {
    width: 100%;
    height: 380px;
    object-fit: cover;

    @media (max-width: 767px) {
        object-fit: contain;
    }
}

.section-proizvodi .proizvod,
.products-section .proizvod,
.related-products .proizvod {
    box-shadow: none;
    margin: 2px 0 2px 0;
    padding: 14px 12px 12px 14px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    cursor: pointer;

    &:hover {
        border: 1px solid #e5e5e5;
    }
}

/* Brendovi sekcija */

.section-brendovi .brend img {
    object-fit: contain;
    width: 140px;
    filter: grayscale(100%);
}

.section-brendovi .brend {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Inspiracija sekcija */
.inspiracija-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.inspiracija-content {
    background: #f3ece8;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 0 140px 0;
}

.inspiracija-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 1rem;
}

.inspiracija-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.inspiracija-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.inspiracija-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.inspiracija-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 4px;
    transition: all 0.3s ease;

    @media (max-width: 767px) {
        margin-left: 6px;
    }
}

.inspiracija-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.inspiracija-image {
    height: 100%;
    overflow: hidden;
}

.inspiracija-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

a.btn-primary-custom.btn-inspiracija {
    @media (max-width: 767px) {
        width: 60%;
        margin-bottom: 0px;
    }
}

.inspiracija-section .row > div:nth-child(2) .inspiracija-image {
    border-radius: 0 140px 0 0;
}

.inspiracija-section .row > div:nth-child(3) .inspiracija-image {
    border-radius: 140px 0 0 0;
}

@media (max-width: 991px) {
    .inspiracija-title {
        font-size: 2rem;
    }

    .inspiracija-content {
        border-radius: 48px 48px 0 0;
        padding: 2rem;
    }

    .inspiracija-image img {
        min-height: 300px;
    }

    .inspiracija-section .row > div:nth-child(2) .inspiracija-image {
        border-radius: 0 0 48px 0;
    }

    .inspiracija-section .row > div:nth-child(3) .inspiracija-image {
        border-radius: 0 0 0 48px;
    }
}

@media (max-width: 767px) {
    .inspiracija-actions {
        width: 100%;
        gap: 1rem;
    }

    .btn-primary-custom {
        width: 100%;
        text-align: center;
    }
}

/* Custom Mobile Menu Toggler */
.custom-toggler {
    border: none;
    background: none;
    padding: 0.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.custom-toggler i,
.custom-toggler svg {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.navbar.scrolled .custom-toggler i,
.navbar.scrolled .custom-toggler svg {
    color: var(--primary-color);
}

.custom-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1) rotate(15deg);
}

.navbar.scrolled .custom-toggler:hover {
    background: rgba(47, 70, 44, 0.1);
}

.custom-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 70, 44, 0.3);
}

/* Hero Section */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    height: calc(100vh - var(--header-h));
    margin-top: var(--header-h);
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .hero {
        height: calc(100svh - var(--header-h));
        margin-top: 0;
    }
}

.hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero .btn-primary-custom {
    width: auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 800px;
    letter-spacing: 0.05em;
    text-align: left;
}

.hero .lead {
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 500px;
    text-align: left;
}

/* Hero Brands Section */
.hero-brands {
    background-color: #f8f7f5;
    padding: 3.5rem 0;
}

.hero-brands-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-brands-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.05em;
    text-align: center;
}

.hero-brands-grid {
    display: flex;
    gap: 1.2rem;
    flex: 1;
}

.hero-brand-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-brand-card:hover {
    text-decoration: none;
}

.hero-brand-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-brand-logo img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
}

.hero-brand-name {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .hero-brands-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-brands-grid {
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-brand-card {
        flex: 1 0 calc(50% - 0.6rem);
    }
}

@media (max-width: 576px) {
    .hero-brands {
        padding: 2rem 0;
    }

    .hero-brand-card {
        padding: 1.2rem 0.8rem;
    }

    .hero-brand-logo {
        height: 40px;
    }

    .hero-brand-name {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(1.6rem, 1.2rem + 1.5vw, 1.875rem);
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    text-align: center;
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
    margin-bottom: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.h1-subtitle {
    font-size: 14px;
}

/* Features */

.feature-naslov {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);

    @media (max-width: 576px) {
        font-size: 1rem;
    }
}

.feature-opis {
    font-size: 1rem;

    @media (max-width: 576px) {
        font-size: 0.95rem;
    }
}

/* Health Benefits */
.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(47, 70, 44, 0.25);
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Product Grid */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    background: var(--bg-light);
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-body {
    padding: 2rem;
}

.product-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-add-cart {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-add-cart:hover {
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary-color)
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 70, 44, 0.3);
}

/* Why Natural Section */
.natural-story {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.natural-story h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.natural-story p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.natural-story ul li {
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials */
.testimonial {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    color: var(--warning);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Newsletter */
.newsletter {
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(40, 40, 40, 0.8)),
        url("https://plus.unsplash.com/premium_photo-1661902468735-eabf780f8ff6?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 8px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 70%
    );
    opacity: 0.5;
}

.newsletter > * {
    position: relative;
    z-index: 2;
}

.newsletter h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
}

.newsletter p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #e0e0e0;
}

.newsletter-form {
    max-width: 450px;
    margin: 2.5rem auto 0;
}

.newsletter-input {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: #f5f5f5;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #999;
    padding: 4.5rem 0 0;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(207, 162, 90, 0.3) 50%,
        transparent 100%
    );
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-title {
    color: #fff;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-text {
    color: #aaa;
    font-size: clamp(0.875rem, 0.82rem + 0.2vw, 0.9375rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: clamp(0.875rem, 0.82rem + 0.2vw, 0.9375rem);
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: "–";
    position: absolute;
    left: -18px;
    opacity: 0;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 18px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    color: #999;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.footer-contact .list-unstyled {
    color: #fff;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    color: var(--secondary-color);
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact div {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
    font-size: clamp(0.875rem, 0.82rem + 0.2vw, 0.9375rem);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-contact span {
    color: #aaa;
    font-size: clamp(0.875rem, 0.82rem + 0.2vw, 0.9375rem);
    font-weight: 300;
}

.footer-bottom {
    margin-top: 3.5rem;
    padding: 1.75rem 0;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
    color: #666;
    font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.875rem);
    font-weight: 300;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.875rem);
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links span {
    color: #444;
}

@media (max-width: 991px) {
    .footer-brand {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-text {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        left: 5%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-bottom {
        margin-top: 2rem;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Nature-inspired particle effects - Siberian snowflakes & organic shapes */
.nature-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
}

/* Snowflake-like particles */
.particle-1 {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 15%;
    animation: drift 25s infinite linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 55%;
    left: 75%;
    animation: drift 30s infinite linear;
    animation-delay: -5s;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 70%;
    left: 25%;
    animation: drift 35s infinite linear;
    animation-delay: -10s;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.particle-4 {
    width: 7px;
    height: 7px;
    top: 85%;
    left: 85%;
    animation: drift 28s infinite linear;
    animation-delay: -15s;
    box-shadow: 0 0 9px rgba(255, 255, 255, 0.45);
}

.particle-5 {
    width: 9px;
    height: 9px;
    top: 60%;
    left: 50%;
    animation: drift 32s infinite linear;
    animation-delay: -20s;
    box-shadow: 0 0 11px rgba(255, 255, 255, 0.55);
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 95%;
    left: 40%;
    animation: drift 26s infinite linear;
    animation-delay: -8s;
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.35);
}

.particle-7 {
    width: 8px;
    height: 8px;
    top: 48%;
    left: 90%;
    animation: drift 29s infinite linear;
    animation-delay: -12s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle-8 {
    width: 6px;
    height: 6px;
    top: 78%;
    left: 10%;
    animation: drift 33s infinite linear;
    animation-delay: -18s;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Green nature particles */
.particle-9 {
    width: 9px;
    height: 9px;
    top: 65%;
    left: 60%;
    background: rgba(138, 168, 136, 0.5);
    animation: drift 27s infinite linear;
    animation-delay: -3s;
    box-shadow: 0 0 10px rgba(138, 168, 136, 0.4);
}

.particle-10 {
    width: 7px;
    height: 7px;
    top: 52%;
    left: 35%;
    background: rgba(74, 107, 69, 0.5);
    animation: drift 31s infinite linear;
    animation-delay: -7s;
    box-shadow: 0 0 8px rgba(74, 107, 69, 0.4);
}

.particle-11 {
    width: 8px;
    height: 8px;
    top: 75%;
    left: 55%;
    background: rgba(138, 168, 136, 0.45);
    animation: drift 29s infinite linear;
    animation-delay: -13s;
    box-shadow: 0 0 9px rgba(138, 168, 136, 0.35);
}

.particle-12 {
    width: 6px;
    height: 6px;
    top: 88%;
    left: 20%;
    background: rgba(74, 107, 69, 0.4);
    animation: drift 34s infinite linear;
    animation-delay: -16s;
    box-shadow: 0 0 7px rgba(74, 107, 69, 0.35);
}

/* Brown-yellow earth particles */
.particle-13 {
    width: 7px;
    height: 7px;
    top: 58%;
    left: 68%;
    background: rgba(189, 154, 101, 0.5);
    animation: drift 28s infinite linear;
    animation-delay: -4s;
    box-shadow: 0 0 8px rgba(189, 154, 101, 0.4);
}

.particle-14 {
    width: 8px;
    height: 8px;
    top: 72%;
    left: 8%;
    background: rgba(205, 177, 130, 0.45);
    animation: drift 30s infinite linear;
    animation-delay: -9s;
    box-shadow: 0 0 9px rgba(205, 177, 130, 0.35);
}

.particle-15 {
    width: 6px;
    height: 6px;
    top: 82%;
    left: 65%;
    background: rgba(189, 154, 101, 0.4);
    animation: drift 32s infinite linear;
    animation-delay: -14s;
    box-shadow: 0 0 7px rgba(189, 154, 101, 0.35);
}

.particle-16 {
    width: 9px;
    height: 9px;
    top: 92%;
    left: 78%;
    background: rgba(205, 177, 130, 0.5);
    animation: drift 26s infinite linear;
    animation-delay: -19s;
    box-shadow: 0 0 10px rgba(205, 177, 130, 0.4);
}

.particle-17 {
    width: 7px;
    height: 7px;
    top: 45%;
    left: 82%;
    background: rgba(138, 168, 136, 0.45);
    animation: drift 33s infinite linear;
    animation-delay: -6s;
    box-shadow: 0 0 8px rgba(138, 168, 136, 0.35);
}

.particle-18 {
    width: 8px;
    height: 8px;
    top: 68%;
    left: 45%;
    background: rgba(189, 154, 101, 0.45);
    animation: drift 27s infinite linear;
    animation-delay: -11s;
    box-shadow: 0 0 9px rgba(189, 154, 101, 0.35);
}

/* Aurora-like gradient overlay effect */
.aurora-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(138, 168, 136, 0.3) 25%,
        transparent 50%,
        rgba(74, 107, 69, 0.2) 75%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: aurora 20s ease-in-out infinite;
}

@keyframes drift {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes aurora {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        padding: 75px 0 3rem;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (min-width: 576px) and (max-width: 992px) {
    .hero {
        align-items: flex-start;
    }

    .hero-content {
        margin-top: 120px;
        padding: 0 1rem;
        align-items: center;
    }

    .hero h1 {
        font-size: 3.5rem;
        text-align: center;
        max-width: 100%;
    }

    .hero .lead {
        font-size: 1.6rem;
        text-align: center;
        max-width: 100%;
    }

    .hero .btn-primary-custom {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-light);
        padding: 0.5rem 0;
    }

    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-light);
    }

    .navbar-nav .nav-link {
        color: var(--text-dark);
    }

    .navbar.scrolled .navbar-nav .nav-link {
        color: var(--text-dark);
    }

    .navbar.scrolled .cart-icon {
        color: var(--primary-color);
    }

    .custom-toggler i,
    .custom-toggler svg {
        color: var(--primary-color);
    }

    .navbar.scrolled .custom-toggler i,
    .navbar.scrolled .custom-toggler svg {
        color: var(--primary-color);
    }

    .hero-content {
        margin-top: 120px;
        padding: 0 1rem;
        align-items: center;
    }

    .hero h1 {
        font-size: 36px;
        text-align: center;
    }

    .hero .lead {
        max-width: 100%;
        font-size: 1.1rem;
        text-align: center;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-feature,
    .natural-story {
        padding: 2rem;
    }

    .newsletter {
        padding: 3rem 2rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.5rem 0.98rem;
        font-size: 13px;
        margin-bottom: 1rem;
        width: 45%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: calc(100vh - 103px);
        display: flex;
        align-items: flex-start;
        padding-top: 128px;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 1.5rem;
    }

    .navbar-brand img {
        height: 45px;
    }

    .product-image {
        height: 420px;
    }

    .benefit-card,
    .testimonial {
        padding: 2rem 1.5rem;
    }

    .newsletter {
        padding: 2.5rem 1.5rem;
    }

    .newsletter h3 {
        font-size: 1.6rem;
    }

    .cart-icon {
        width: 40px;
        height: 40px;
    }

    svg:focus {
        outline: 0;
        box-shadow: none;
    }

    .navbar-toggler.custom-toggler:focus {
        outline: 0;
        box-shadow: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #1a3118;
        --text-light: #444444;
        --border-light: #cccccc;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* Categories Section Styles - Image Layout */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card-image {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    cursor: pointer;
}

.category-header .lead {
    font-size: 1rem;
}

.category-card-image.small-left,
.category-card-image.small-right {
    flex-direction: row;
    padding: 0;
}

.category-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-card-image.large-card {
    grid-row: 1 / span 2;
    grid-column: 2;
    height: 416px; /* 200px * 2 + 16px gap */
}

.category-card-image.small-left:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

.category-card-image.small-left:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
}

.category-card-image.small-right:nth-child(4) {
    grid-row: 1;
    grid-column: 3;
}

.category-card-image.small-right:nth-child(5) {
    grid-row: 2;
    grid-column: 3;
}

.category-visual {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-visual.left-align {
    justify-content: flex-start;
}

.category-visual.right-align {
    justify-content: flex-end;
}

.category-visual-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-content-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.category-content-half h4 {
    font-family: "Arimo", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.small-left .category-main-img,
.small-right .category-main-img {
    width: 120px;
    height: 120px;
}

.category-main-img,
.category-product-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.large-card .category-main-img,
.large-card .category-product-img {
    width: 120px;
    height: 120px;
}

.category-content {
    margin-top: auto;
}

.category-content h4 {
    font-family: "Arimo", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.category-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-family: "Arimo", sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.category-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Mobile Categories Styles */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
        gap: 1rem;
        max-width: 100%;
        padding: 0;
    }

    .category-card-image.small-left:nth-child(1) {
        grid-row: 1;
        grid-column: 1;
    }

    .category-card-image.small-left:nth-child(2) {
        grid-row: 1;
        grid-column: 2;
    }

    .category-card-image.large-card {
        grid-row: 2;
        grid-column: span 2;
        height: 200px;
    }

    .category-card-image.small-right:nth-child(4) {
        grid-row: 3;
        grid-column: 1;
    }

    .category-card-image.small-right:nth-child(5) {
        grid-row: 3;
        grid-column: 2;
    }

    .category-card-image {
        padding: 1.2rem;
    }

    .category-visual.left-align,
    .category-visual.right-align {
        justify-content: center;
    }

    .category-card-image.small-left,
    .category-card-image.small-right {
        flex-direction: column;
        padding: 1.2rem;
    }

    .category-visual-half {
        flex: 1;
        margin-bottom: 0.8rem;
        min-height: 100px;
    }

    .category-content-half {
        flex: none;
        padding: 0;
        text-align: center;
    }

    .category-content-half .category-btn {
        display: none;
    }

    .small-left .category-main-img,
    .small-right .category-main-img {
        width: 80px;
        height: 80px;
    }

    .category-main-img,
    .category-product-img {
        width: 70px;
        height: 70px;
    }

    .large-card .category-main-img,
    .large-card .category-product-img {
        width: 80px;
        height: 80px;
    }

    .category-content h4 {
        font-size: 0.9rem;
    }

    .category-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
}

/* Benefits Section - New Layout */
.benefits-content h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon-simple {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-simple i {
    color: white;
    font-size: 1.2rem;
}

.benefit-text h5 {
    font-family: "Arimo", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.benefits-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

/* Mobile Benefits Styles */
@media (max-width: 768px) {
    .benefits-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .benefit-item {
        justify-content: center;
        text-align: left;
    }

    .benefits-image {
        margin-top: 2rem;
    }
}

/* Category Page Styles */
.breadcrumb-section {
    padding: 0.6rem 0 1.4rem;
}

.mt-navbar {
    margin-top: 60px;

    @media (max-width: 991px) {
        margin-top: 40px;
    }

    @media (max-width: 768px) {
        margin-top: 0px;
    }
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    --bs-breadcrumb-divider: "";
}

.breadcrumb-item {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 0.35rem;
    background-color: var(--secondary-color);
    opacity: 0.6;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E")
        center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E")
        center / contain no-repeat;
    flex-shrink: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.category-header {
    padding: 3rem 0;
    background: var(--white);
}

.category-info h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-info-header {
    display: flex;
    justify-content: space-between;
    flex-direction: flex-row;

    @media (max-width: 768px) {
        flex-direction: column-reverse;
        gap: 1rem;
    }
}

.category-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--primary-color);
}

.filters-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.filters-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filters-wrapper h6 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-wrapper label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.products-section {
    padding: 2rem 0;
}

/* Filters Sidebar */
.filters-sidebar {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filters-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range input {
    flex: 1;
}

.product-category-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.category-page .product-category-image {
    height: 250px;
}

.category-page .product-card:hover .product-category-image {
    transform: scale(1.05);
}

.product-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-category-badge.discount {
    background: #000;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 600;
    right: auto;
    left: 4px;
    top: 4px;
}

.product-badge.discount {
    background: var(--danger);
}

.product-badge.new {
    background: var(--success);
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Category page specific rating styles handled by existing selectors */

.rating-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 0.4rem;
    font-size: 12px;
    font-weight: 400;
}

.btn-add-cart.added {
    background: var(--success);
    border-color: var(--success);
}

/* Mobile Category Styles */
@media (max-width: 768px) {
    .category-header {
        padding: 2rem 0;
    }

    .category-info h1 {
        font-size: 2rem;
    }

    .category-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .filters-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filter-buttons {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
        text-align: center;
        min-width: 80px;
    }

    .sort-wrapper {
        margin-top: 1rem;
        width: 100%;
    }

    .sort-wrapper .form-select {
        flex: 1;
    }
}

/* 404 Error Page Styles */
/* ===== 404 ERROR PAGE ===== */
.error-section {
    margin-top: 120px;
    padding: 6rem 0;
    background: #fff;
}

.error-content {
    padding: 3rem 0;
}

.error-number {
    font-family: "Arimo", serif;
    font-size: 10rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.error-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Help Section */
.help-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.help-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.help-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
}

.help-item {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.help-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.help-icon i {
    color: white;
    font-size: 1.5rem;
}

.help-item:hover .help-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.help-item h5 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.help-item p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

/* Mobile 404 Styles */
@media (max-width: 991px) {
    .error-section {
        margin-top: 80px;
        padding: 4rem 0;
    }

    .error-number {
        font-size: 8rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .help-options {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .error-section {
        padding: 3rem 0;
    }

    .error-number {
        font-size: 6rem;
    }

    .error-title {
        font-size: 1.75rem;
    }

    .error-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .error-actions .btn-primary-custom,
    .error-actions .btn-outline-custom {
        width: 100%;
        max-width: 300px;
    }

    .help-options {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .help-item {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .error-number {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .help-icon {
        width: 60px;
        height: 60px;
    }

    .help-icon i {
        font-size: 1.25rem;
    }
}

/* ===== SUCCESS PAGE ===== */
.success-section {
    background: #fff;
}

.success-content {
}

.success-icon {
    font-size: 6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: inline-block;
}

.success-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.order-number-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.order-label {
    font-size: 13px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
}

.order-number {
    font-family: "Arimo", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Info Cards */
.info-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.info-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-card-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-card h5 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.info-card p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Success Page Mobile */
@media (max-width: 991px) {
    .success-section {
        margin-top: 80px;
        padding: 4rem 0;
    }

    .success-icon {
        font-size: 5rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .order-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .success-section {
        padding: 3rem 0;
    }

    .success-icon {
        font-size: 4rem;
    }

    .success-title {
        font-size: 1.75rem;
    }

    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .success-actions .btn-primary-custom,
    .success-actions .btn-outline-custom {
        width: 100%;
        max-width: 300px;
    }

    .order-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .success-icon {
        font-size: 3.5rem;
    }

    .success-title {
        font-size: 1.5rem;
    }

    .info-card-icon {
        width: 50px;
        height: 50px;
    }

    .info-card-icon i {
        font-size: 1.25rem;
    }
}

/* Blog Section Styles */
.blog-section {
    background: #fff;
}

.blog-card {
    height: 100%;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    /* No lift, only image zoom */
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-link:hover .blog-image img {
    transform: scale(1.04);
}

.blog-content {
    padding: 1.3rem 1rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    line-height: 1.4;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: clamp(0.875rem, 0.82rem + 0.2vw, 0.9375rem);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.blog-date {
    font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
    font-weight: 400;
    color: #999;
    letter-spacing: 0.02em;
}

/* Mobile Blog Styles */
@media (max-width: 767px) {
    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 1rem 0.8rem 1.2rem 0.8rem;
    }
}

/* Mobile Offcanvas Styles */
.offcanvas {
    background: #fff;
    color: #1a1a1a;
    border-left: 1px solid #e0e0e0;
    width: 320px;
}

.offcanvas-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem;
}

.offcanvas-title img {
    filter: none;
}

.btn-close {
    filter: none;
    opacity: 0.5;
}

.btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 1.5rem;
}

.mobile-search-container {
    margin-bottom: 1rem;
}

.mobile-search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.mobile-kategorije-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-kategorije-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-kategorije-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.mobile-kategorije-toggle:hover {
    color: var(--secondary-color);
}

.mobile-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.mobile-kategorije-toggle[aria-expanded="true"] .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-kategorije-link {
    display: block;
    padding: 1rem 0;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.mobile-kategorije-link:hover {
    color: var(--secondary-color);
}

.mobile-kategorije-submenu {
    padding: 0.5rem 0 1rem;
}

.mobile-kategorije-sublink {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    margin-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.mobile-kategorije-sublink:hover {
    background: #fdf8f2;
    color: var(--secondary-color);
}

.mobile-kategorije-sublink--all {
    color: var(--secondary-color);
    font-weight: 500;
    padding-left: 0;
    padding-top: 0.4rem;
    padding-bottom: 0.8rem;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.mobile-kategorije-sublink--all:hover {
    background: none;
    color: #b8892e;
}

.mobile-kategorije-sublink img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
}

.mobile-brand-logo {
    object-fit: contain !important;
    background: #f8f8f8;
    padding: 4px;
}

.mobile-cart-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.mobile-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #cfa25a, #b8892e, #cfa25a);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: #fff;
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 15px;
    font-weight: 600;
    border-radius: 48px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.5s ease;
}

.mobile-cart-btn:hover {
    background-position: 100% 50%;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(207, 162, 90, 0.35);
}

/* Print styles */
@media print {
    .navbar,
    .newsletter,
    .footer,
    .btn-add-cart,
    .offcanvas {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}

.cvet-ilustracija {
    max-height: 800px;

    @media (max-width: 767px) {
        max-height: 300px;
    }
}

.link-fix {
    text-decoration: none !important;
    color: inherit !important;
}

/* Product Detail Page Styles */
.product-gallery {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
}

.main-media {
    flex: 1;
    min-width: 0;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: contain;

    @media (max-width: 767px) {
        height: 500px;
        object-fit: contain;
    }
}

.thumbnail-images {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 600px;
    padding-right: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #f0f0f0;
}

.thumbnail-images::-webkit-scrollbar {
    width: 4px;
}

.thumbnail-images::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.thumbnail-images::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.thumbnail-images::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-light);
}

@media (max-width: 767px) {
    .product-gallery {
        flex-direction: column;
    }

    .main-media {
        order: 1;
    }

    .thumbnail-images {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        width: 100%;
        padding-right: 0;
        padding-bottom: 0.25rem;
        scrollbar-color: var(--secondary-color) #f0f0f0;
    }

    .thumbnail-images::-webkit-scrollbar {
        height: 4px;
        width: auto;
    }
}

.thumbnail {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    border: 1px solid var(--secondary-color);
}

.product-info {
    padding-left: 2rem;
}

.product-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-info .tekst {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    color: #666666;
    margin-bottom: 4px;
}

.badge-natural {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-bestseller {
    background: linear-gradient(135deg, var(--warning), #ff9500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-detail-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--warning);
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-detail-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.product-detail-price .price-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.current-price {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;

    @media (max-width: 767px) {
        font-size: 23px;
    }

    @media (max-width: 576px) {
        font-size: 20px;
    }
}

.original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
    font-weight: 400;
    margin-top: 8px;

    @media (max-width: 767px) {
        font-size: 12px;
    }
}

.price-discount-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 0.22rem 0.65rem;
    border-radius: 48px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background: var(--primary-color);
    color: #fff;
    padding: 0.22rem 0.65rem;
    border-radius: 48px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.product-detail-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 48px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.25s ease;
}

.quantity-controls:focus-within {
    border-color: var(--secondary-color);
}

.quantity-btn {
    background: none;
    border: none;
    padding: 0.5rem 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1;
    flex-shrink: 0;
}

.quantity-btn:hover {
    color: var(--secondary-color);
    background: rgba(207, 162, 90, 0.06);
}

.quantity-input {
    border: none;
    width: 52px;
    text-align: center;
    padding: 0.5rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    background: transparent;
    outline: none;
    -moz-appearance: textfield;

    @media (max-width: 767px) {
        width: 44px;
    }
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-add-to-cart {
    flex: 1;
    background: linear-gradient(135deg, #cfa25a, #b8892e, #cfa25a);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 48px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;

    @media (max-width: 767px) {
        padding: 0.5rem 1rem;
    }
}

.btn-add-to-cart::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-add-to-cart:hover {
    background-position: 100% 50%;
    color: white;
}

.btn-add-to-cart:hover::before {
    left: 100%;
}

.btn-add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-buy-now {
    background: var(--success);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-buy-now:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.product-tabs {
    margin-top: 4rem;
}

.nav-tabs {
    border-bottom: 2px solid var(--border-light);
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-content {
    padding: 2rem 0;
}

.ingredients-list {
}

.ingredient-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}

.ingredient-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ingredient-benefits {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.usage-steps {
    counter-reset: step-counter;
}

.usage-step {
    counter-increment: step-counter;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.usage-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.usage-step h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-products {
    padding: 4rem 0;
    margin-top: 4rem;
}

/* Product Trust Strip */
.product-trust-strip {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.product-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 120px;
}

.product-trust-item svg {
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.product-trust-item-text {
    display: flex;
    flex-direction: column;
}

.product-trust-item-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
}

.product-trust-item-subtitle {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 576px) {
    .product-trust-strip {
        gap: 0.75rem;
    }

    .product-trust-item {
        min-width: calc(50% - 0.5rem);
        flex: 0 0 calc(50% - 0.5rem);
    }
}

/* Product Detail Mobile Styles */
@media (max-width: 768px) {
    .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }

    .product-detail-title {
        font-size: 2rem;
    }

    .add-to-cart-section {
        flex-direction: column;
    }

    .quantity-selector {
        justify-content: center;
    }

    /* Mobile tabs - enhanced design */
    .nav-tabs {
        flex-direction: column;
        border-bottom: none;
        background: var(--bg-light);
        border-radius: var(--border-radius-large);
        padding: 0.5rem;
        /* box-shadow: var(--shadow-light); */
        gap: 0.5rem;
    }

    .nav-tabs .nav-item {
        margin-bottom: 0;
        width: 100%;
    }

    .nav-tabs .nav-link {
        border: none;
        border-radius: var(--border-radius);
        padding: 1.2rem 1.5rem;
        text-align: left;
        margin-right: 0;
        background: var(--white);
        transition: var(--transition);
        position: relative;
        font-weight: 600;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .nav-tabs .nav-link i {
        color: var(--primary-light);
        font-size: 1.1rem;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .nav-tabs .nav-link:hover {
        background: var(--primary-color);
        color: white;
        transform: translateX(5px);
        box-shadow: var(--shadow-medium);
    }

    .nav-tabs .nav-link:hover i {
        color: white;
        transform: scale(1.1);
    }

    .nav-tabs .nav-link.active {
        background: linear-gradient(
            135deg,
            var(--primary-light),
            var(--accent-color)
        );
        color: white;
        transform: translateX(8px);
        box-shadow: var(--shadow-medium);
    }

    .nav-tabs .nav-link.active i {
        color: var(--secondary-color);
        transform: scale(1.1);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    .nav-tabs .nav-link.active::after {
        display: none;
    }

    .product-tabs .row {
        flex-direction: column;
    }

    .product-tabs .col-md-3 {
        margin-bottom: 2rem;
    }

    .tab-content {
        background: var(--white);
        border-radius: var(--border-radius-large);
        padding: 2rem 1.5rem;
        /* box-shadow: var(--shadow-light); */
        margin-top: 1rem;
    }
}

/* Cart Toast Notifications */
.cart-toast {
    position: fixed;
    top: 100px;
    right: -440px;
    background: var(--white);
    padding: 0.9rem 1.25rem 0.9rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.07);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 400px;
}

.cart-toast.show {
    right: 20px;
}

.cart-toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-toast-success .cart-toast-icon {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.cart-toast-error .cart-toast-icon {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.cart-toast-warning .cart-toast-icon {
    background: rgba(207, 162, 90, 0.12);
    color: var(--secondary-color);
}

.cart-toast-icon svg {
    display: block;
}

.cart-toast-body {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
}

.cart-toast-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.2px;
}

.cart-toast-msg {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .cart-toast {
        right: -100%;
        left: auto;
        min-width: 280px;
        max-width: calc(100% - 40px);
    }

    .cart-toast.show {
        right: 20px;
        left: 20px;
    }
}

/******* KORPA STYLES *******/
.cart-container {
    min-height: 100vh;
    background: var(--bg-light);
    padding-bottom: 4rem;
}

.cart-header-section {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 2rem !important;
    margin-bottom: 2rem;
}

.cart-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.cart-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---- Items panel ---- */
.cart-items {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 1.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: fit-content;
}

.cart-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.cart-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.item-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-variant {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

.item-remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 6px;
    transition:
        color 0.2s,
        background 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.item-remove-btn:hover {
    color: #e53935;
    background: rgba(229, 57, 53, 0.08);
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Price block */
.cart-item-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 80px;
}

.item-original-price {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1px;
}

.cart-item-price-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.item-current-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
}

.item-cart-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 0.1rem 0.45rem;
    border-radius: 48px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

/* Quantity controls */
.cart-qty-controls {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 48px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.2s;
}

.cart-qty-controls:focus-within {
    border-color: var(--secondary-color);
}

.cart-qty-btn {
    background: var(--white);
    border: none;
    padding: 0.35rem 0.7rem;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition:
        color 0.2s,
        background 0.2s;
    min-width: 32px;
    line-height: 1;
}

.cart-qty-btn:hover {
    color: var(--secondary-color);
    background: rgba(207, 162, 90, 0.06);
}

.cart-qty-value {
    padding: 0.35rem 0.3rem;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 28px;
    text-align: center;
    font-size: 0.9rem;
    user-select: none;
}

.item-line-total {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-left: auto;
    white-space: nowrap;
}

/* ---- Summary panel ---- */
.cart-summary {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: sticky;
    top: 140px;
}

.summary-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-row:last-of-type {
    border-bottom: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-label {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.summary-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Checkout button — gold gradient matching btn-primary-custom */
.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #cfa25a, #b8892e, #cfa25a);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white;
    border: none;
    padding: 0.85rem 1rem;
    border-radius: 48px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition:
        background-position 0.5s ease,
        color 0.5s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-checkout::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-checkout:hover {
    background-position: 100% 50%;
    color: white;
}

.btn-checkout:hover::before {
    left: 150%;
}

/* Empty cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-illustration {
    margin-bottom: 1.5rem;
}

.empty-cart-icon {
    width: 72px;
    height: 72px;
    color: var(--primary-color);
    opacity: 0.15;
}

.empty-cart h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.empty-cart p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn-continue-shopping {
    display: inline-block;
    background: linear-gradient(135deg, #cfa25a, #b8892e, #cfa25a);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white;
    text-decoration: none;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 48px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-position 0.5s ease;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.btn-continue-shopping:hover {
    background-position: 100% 50%;
    color: white;
}

/* Promo code */
.promo-code {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.promo-input-group {
    display: flex;
    gap: 0.5rem;
}

.promo-input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 48px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.promo-input:focus {
    border-color: var(--secondary-color);
}

.btn-apply-promo {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 48px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: opacity 0.2s;
    cursor: pointer;
}

.btn-apply-promo:hover {
    opacity: 0.85;
}

@media (max-width: 992px) {
    .cart-summary {
        position: static;
    }

    .hero {
        height: calc(100vh - 103px);
        padding-top: 96px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cart-items {
        padding: 1rem 1.25rem;
    }

    .item-image {
        width: 64px;
        height: 64px;
    }

    .item-title {
        font-size: 0.9rem;
    }

    .cart-item-bottom {
        gap: 0.6rem;
    }
}

@media (max-width: 576px) {
    .cart-items,
    .cart-summary {
        padding: 1rem;
    }

    .item-image {
        width: 58px;
        height: 58px;
    }

    .product-detail-title {
        font-size: 1.5rem;
    }
}

/******* CHECKOUT STYLES *******/
.checkout-body {
    min-height: 60vh;
    background: var(--bg-light);
    padding: 2rem 0 4rem;
}

.checkout-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    letter-spacing: 0.2px;
}

.checkout-input {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    background: #fff;
}

.checkout-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(207, 162, 90, 0.12);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
}

.payment-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    position: relative;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition:
        border-color 0.2s,
        background 0.2s;
    cursor: pointer;
}

.payment-option:has(input:checked) {
    border-color: var(--secondary-color);
    background: rgba(207, 162, 90, 0.05);
}

.payment-option input[type="radio"] {
    position: absolute;
    top: 1.1rem;
    right: 1rem;
    accent-color: var(--secondary-color);
}

.payment-option label {
    cursor: pointer;
    margin-bottom: 0;
    display: block;
    padding-right: 2rem;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.payment-icon {
    width: 22px;
    height: 22px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.payment-info strong {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.payment-info small {
    font-size: 0.82rem;
    color: var(--text-light);
}

.terms-section {
    padding: 0.9rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.terms-section .form-check-label {
    color: var(--text-dark);
    font-size: 0.875rem;
}

.terms-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.terms-section a:hover {
    text-decoration: underline;
}

/* Gold gradient submit button — matches btn-checkout */
.btn-submit-order {
    width: 100%;
    background: linear-gradient(135deg, #cfa25a, #b8892e, #cfa25a);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white;
    border: none;
    padding: 0.9rem 1rem;
    border-radius: 48px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: background-position 0.5s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-submit-order::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-submit-order:hover {
    background-position: 100% 50%;
    color: white;
}

.btn-submit-order:hover::before {
    left: 150%;
}

.btn-submit-order:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Order summary panel — matches cart-summary */
.order-summary {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: sticky;
    top: 140px;
}

.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 0.5rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-image {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.summary-item-details {
    flex-grow: 1;
    min-width: 0;
}

.summary-item-details h6 {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-item-details p,
.summary-item-details small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.summary-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ---- Success page ---- */
.success-number-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-large);
    padding: 0.85rem 1.4rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.success-number-card .order-number {
    font-size: 1.4rem;
}

.success-number-card .order-label {
    font-size: 11px;
}

.success-info-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 1.75rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition:
        border-color 0.2s,
        transform 0.2s;
}

.success-info-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.success-info-icon {
    width: 46px;
    height: 46px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: #fff;
}

.success-info-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 1rem;
}

.success-info-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .order-summary {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .checkout-form-wrapper,
    .order-summary {
        padding: 1.5rem;
    }

    .form-section-title {
        font-size: 1rem;
    }
}

/* ==============================================
   SVE KATEGORIJE PAGE
   ============================================== */

.page-header {
    padding: 100px 0 0 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Sve kategorije cards - matching homepage style */
.sve-kat-card {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    min-height: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sve-kat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sve-kat-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sve-kat-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.sve-kat-card:hover .sve-kat-img {
    transform: scale(1.05);
}

.sve-kat-content {
    width: 100%;
    text-align: center;
}

.sve-kat-content h4 {
    font-family: "Arimo", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sve-kat-card .category-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .sve-kat-card {
        min-height: 240px;
    }

    .sve-kat-img {
        width: 100px;
        height: 100px;
    }
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);

    &:focus {
        box-shadow: none;
        outline: 0;
    }
}

/* ===========================
   CATEGORY PAGE STYLES
=========================== */

.category-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.category-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   LUXURY HERO REDESIGN
   Split layout: text left, 2×2 product images right
   ============================================================ */

.hero-luxury {
    position: relative;
    height: calc(100vh - var(--header-h));
    margin-top: var(--header-h);
    background-color: #faf8f4;
    background-image:
        radial-gradient(
            ellipse 55% 45% at 15% 80%,
            #f9f2e0 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 55% at 85% 20%,
            #f9f2e0 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 40% 40% at 55% 110%,
            #f9f2e0 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 35% 35% at 95% 75%,
            #f9f2e0 0%,
            transparent 60%
        ),
        radial-gradient(ellipse 30% 30% at 5% 15%, #f9f2e0 0%, transparent 55%);
    overflow: hidden;
    display: flex;
}

.hero-luxury-inner {
    display: grid;
    grid-template-columns: 55% 45%;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Thin gold vertical divider between columns */
.hero-luxury-inner::after {
    content: "";
    position: absolute;
    left: 55%;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(207, 162, 90, 0.35) 25%,
        rgba(207, 162, 90, 0.35) 75%,
        transparent
    );
    z-index: 5;
    pointer-events: none;
}

/* ---- Left: Text panel ---- */
.hero-luxury-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem 4rem 5rem;
    position: relative;
    z-index: 2;
}

/* Vertical gold accent bar */
/* .hero-luxury-text::before {
    content: "";
    position: absolute;
    left: 2.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 90px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--secondary-color),
        transparent
    );
    opacity: 0.8;
} */

/* ---- Eyebrow ---- */
.hero-luxury-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, #1a1a1a 0%, #3a3a3a 100%);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    width: max-content;
}

.hero-luxury-title {
    font-size: clamp(2.8rem, 3.6vw, 5.2rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.hero-luxury-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.8;
    /* max-width: 340px; */
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-luxury-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--secondary-color);
    border: none;
    color: #fff;
    padding: 1rem 2.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(207, 162, 90, 0.45);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
    width: max-content;
}

.hero-luxury-cta:hover {
    background-color: #c49040;
    box-shadow: 0 6px 32px rgba(207, 162, 90, 0.65);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.hero-luxury-cta svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hero-luxury-cta:hover svg {
    transform: translateX(5px);
}

/* Mobile-only CTA clone — hidden on desktop */
.hero-luxury-cta--mobile {
    display: none;
}

/* ---- Right: Dual vertical marquee ---- */
.hero-luxury-images {
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    padding: 0 1.5rem 0 0.5rem;
    /* Fade top and bottom edges for a seamless infinite feel */
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
    );
}

.hero-marquee-col {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

/* Second column visually offset so both aren't in sync */
.hero-marquee-col--down {
    margin-top: 32px;
    margin-left: 20px;
}

.hero-marquee-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.hero-marquee-col--up .hero-marquee-track {
    animation: hero-marquee-up 20s linear infinite;
}

.hero-marquee-col--down .hero-marquee-track {
    animation: hero-marquee-down 26s linear infinite;
}

/* Pause on hover */
.hero-marquee-col:hover .hero-marquee-track {
    animation-play-state: paused;
}

@keyframes hero-marquee-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes hero-marquee-down {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-marquee-item {
    display: block;
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    /* border: 1px solid #efddbf; */
    border: 1px solid #f4f1e7;
    background: #f4f1e7;
    padding: 10%;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.35s ease;
}

.hero-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-marquee-item:hover img {
    transform: scale(1.06);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-luxury {
        height: auto;
        min-height: 100svh;
        margin-top: 0;
        flex-direction: column;
    }

    .hero-luxury-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .hero-luxury-inner::after {
        display: none;
    }

    .hero-luxury-text {
        order: 1;
        padding: 2.75rem 2rem 1.5rem;
        align-items: center;
        text-align: center;
        grid-column: unset;
        grid-row: unset;
    }

    .hero-luxury-images {
        order: 2;
        /* Two rows stacked vertically, each scrolling horizontally */
        flex-direction: column;
        gap: 10px;
        padding: 0 0 2rem 0;
        height: auto;
        /* Fade left and right edges */
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            #000 6%,
            #000 94%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            #000 6%,
            #000 94%,
            transparent 100%
        );
    }

    /* Each column = one full-width horizontal row */
    .hero-marquee-col {
        width: 100%;
        height: auto;
        flex-shrink: 0;
        overflow: hidden;
    }

    .hero-marquee-col--up,
    .hero-marquee-col--down {
        flex: none;
    }

    .hero-marquee-col--down {
        margin-top: 0;
        margin-left: 0;
    }

    /* Track goes horizontal, height auto — items size the row */
    .hero-marquee-track {
        flex-direction: row;
        height: auto;
        align-items: center;
    }

    /* Items become horizontal squares */
    .hero-marquee-item {
        width: 140px;
        height: 140px;
        flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 10px;
    }

    /* Row 1 scrolls left, row 2 scrolls right */
    .hero-marquee-col--up .hero-marquee-track {
        animation: hero-marquee-left 18s linear infinite;
    }

    .hero-marquee-col--down .hero-marquee-track {
        animation: hero-marquee-right 24s linear infinite;
    }

    .hero-luxury-text::before {
        display: none;
    }

    .hero-luxury-eyebrow {
        justify-content: center;
    }

    .hero-luxury-subtitle {
        max-width: 500px;
    }

    /* Hide the desktop CTA on mobile */
    .hero-luxury-text .hero-luxury-cta {
        display: none;
    }

    /* Show the mobile CTA below the marquee */
    .hero-luxury-cta--mobile {
        display: inline-flex;
        order: 3;
        margin: 1.5rem auto 2rem;
    }
}

@keyframes hero-marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes hero-marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    .hero-luxury-text {
        padding: 2.25rem 1.5rem 1.25rem;
    }

    .hero-luxury-title {
        font-size: 2.3rem;
    }

    .hero-marquee-item {
        width: 120px;
        height: 120px;
        padding: 16px;
    }
}

.category-count i {
    font-size: 1.3rem;
}

/* Category Products Section */
.category-products {
    padding: 2rem 0 4rem;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.sale-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.product-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 3.5rem; /* Space for 2 lines: 1.25rem * 1.4 * 2 = 3.5rem */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-short-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-actions {
    margin-top: auto;
}

.btn-view-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #cfa25a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(221, 184, 142, 0.3);
}

.btn-view-product:hover {
    background: linear-gradient(135deg, #cfa25a 0%, var(--primary-color) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(221, 184, 142, 0.4);
}

/* Empty Category State */
.empty-category {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(
        135deg,
        rgba(221, 184, 142, 0.05) 0%,
        rgba(201, 163, 122, 0.1) 100%
    );
    border-radius: 20px;
    margin: 2rem 0;
}

.empty-category-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.empty-category h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-category p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-continue-shopping {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #cfa25a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(221, 184, 142, 0.3);
}

.btn-continue-shopping:hover {
    background: linear-gradient(135deg, #cfa25a 0%, var(--primary-color) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 184, 142, 0.4);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .category-header {
        padding: 2rem 0;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .category-count {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .category-header {
        padding: 1.5rem 0;
    }

    .category-title {
        font-size: 1.75rem;
    }

    .category-description {
        font-size: 0.95rem;
    }

    .category-count {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }

    .product-title {
        font-size: 1.1rem;
        min-height: 3.08rem; /* Space for 2 lines: 1.1rem * 1.4 * 2 = 3.08rem */
    }

    .product-price {
        font-size: 1.3rem;
    }

    .product-price-old {
        font-size: 1rem;
    }

    .btn-view-product {
        font-size: 0.95rem;
        padding: 0.65rem 1.25rem;
    }

    .empty-category {
        padding: 3rem 1.5rem;
    }

    .empty-category-icon {
        font-size: 4rem;
    }

    .empty-category h3 {
        font-size: 1.5rem;
    }

    .empty-category p {
        font-size: 1rem;
    }
}

/* Search Bar Styles */
.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-container-sm {
    max-width: 220px;
    position: relative;
}

.search-container-sm .search-suggestions {
    left: auto;
    right: 0;
    width: 360px;
}

.search-container-sm .search-input {
    height: 38px;
    padding: 8px 16px 8px 36px;
    font-size: 13px;
    border-radius: 20px;
    border: none;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.search-container-sm .search-input:focus {
    outline: none;
    box-shadow: none;
    background: #e8e8e8;
}

.search-container-sm .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #888;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    height: 44px;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.search-input:focus {
    outline: none;
    border-color: black;
    box-shadow: 0;
}

/* Search suggestions dropdown */
.search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid #f3f3f3;
    transition: background 0.15s;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: #faf7f3;
}

.search-suggestion-img {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-suggestion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-img-placeholder {
    width: 100%;
    height: 100%;
    background: #eee;
}

.search-suggestion-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.search-suggestion-name {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-brend {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.search-suggestion-cena {
    font-size: 0.82rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.search-old-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.search-no-results {
    padding: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.search-all-link {
    display: block;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    border-top: 1px solid var(--border-light);
    text-align: center;
    letter-spacing: 0.3px;
    transition: background 0.15s;
}

.search-all-link:hover {
    background: rgba(207, 162, 90, 0.07);
    color: var(--secondary-color);
}

/* Mobile search container needs relative positioning for dropdown */
.mobile-search-container {
    position: relative;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    padding: 6px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
}

.top-bar-item {
    color: #c9a84c;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
}

.top-bar-item:hover {
    color: #c9a84c;
}

@media (max-width: 991.98px) {
    .top-bar .container {
        justify-content: center !important;
    }

    .top-bar {
        position: relative;
    }

    .navbar {
        position: sticky;
        top: 0;
    }
}

@media (min-width: 992px) {
    .top-bar + .navbar {
        top: 32px;
    }
}

/* Desktop Header 3-column Layout */
.header-desktop-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: stretch;
    gap: 0.25rem;
    flex: 1;
}

.header-left > .header-mega-item,
.header-left > .header-nav-link {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}

.header-nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    padding: 0.45rem 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.header-nav-link::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.header-nav-link:hover::before {
    width: 100%;
}

.header-nav-link:hover {
    color: var(--primary-color);
}

body:not([data-transparent-navbar]) .header-nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .header-nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .header-nav-link:hover {
    color: var(--text-dark);
}

/* Header Mega Menu */
.header-mega-item {
    position: relative;
}

.header-mega-trigger {
    cursor: pointer;
}

.header-mega-trigger::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 3.5px solid currentColor;
    transition: transform 0.3s ease;
}

.header-mega-item:hover .header-mega-trigger::after {
    transform: rotate(180deg);
}

.header-mega-item::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

.header-mega-item:hover .header-mega-trigger {
    color: var(--primary-color);
}

.header-mega-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    min-width: 480px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    transform: translateY(8px);
    z-index: 1050;
}

.header-mega-item:hover .header-mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.header-mega-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-mega-link:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    color: #333;
}

.header-mega-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.header-mega-link:hover .header-mega-img {
    transform: scale(1.06);
}

.header-mega-name {
    font-size: 12.5px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.header-mega-link:hover .header-mega-name {
    color: var(--primary-color);
}
/* ============================
   Variant Selector
   ============================ */
.variant-selector .variant-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.variant-option {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border: 1.5px solid #ddd;
    border-radius: 48px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    user-select: none;
    line-height: 1.4;
    text-align: center;
    color: var(--primary-color);
    background: var(--white);
    letter-spacing: 0.2px;
}

.variant-option:hover:not(.disabled) {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(207, 162, 90, 0.06);
}

.variant-option.selected {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(207, 162, 90, 0.06);
}

.variant-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    background: var(--bg-light);
}

/* ============================
   Product Group Options
   ============================ */
.product-group-options .variant-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.product-group-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        transform 0.2s ease;
    text-decoration: none;
}

.product-group-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-group-item:hover {
    border-color: var(--secondary-color);
}

/* ===== SORT BAR ===== */

.sort-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.sort-bar__label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 2px;
    white-space: nowrap;
}

.sort-bar__btn {
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}

.sort-bar__btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.sort-bar__btn--active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    pointer-events: none;
}

.sort-bar__select {
    display: none;
    font-size: 0.82rem;
    padding: 5px 30px 5px 12px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

@media (max-width: 576px) {
    .sort-bar__btn {
        display: none;
    }
    .sort-bar__select {
        display: block;
    }
}

/* ===== CATEGORY PAGINATION ===== */

.cat-pag {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0.5rem 0;
}

.cat-pag__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid var(--border-light);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.cat-pag__item:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
}

.cat-pag__item--active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff !important;
    font-weight: 600;
    pointer-events: none;
}

.cat-pag__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 1px;
    user-select: none;
}

.cat-pag__arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    height: 40px;
    border-radius: 50px;
    border: 1.5px solid var(--border-light);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    letter-spacing: 0.3px;
    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}

.cat-pag__arrow:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
}

.cat-pag__arrow svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cat-pag__arrow:hover svg {
    transform: translateX(-3px);
}

.cat-pag__arrow--next:hover svg {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .cat-pag {
        gap: 4px;
    }

    .cat-pag__item,
    .cat-pag__dots {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .cat-pag__arrow {
        padding: 0 12px;
        height: 36px;
        font-size: 12px;
        gap: 4px;
    }
}
