* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --gold: #c9a66b;
    --gold-light: #d4b47c;
    --black: #0a0a0a;
    --dark: #111;
    --text: #ffffff;
    --gray: #bbb;
}
body {
    background: linear-gradient(to bottom, black, #0d0d0d);;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.9);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
}
.navbar li:hover {
    color: var(--gold);;
    cursor: pointer;
}

.logo {
    height: auto;
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;   /* normalna veličina */
    object-fit: contain;
}

/* HERO */

.hero {
    height: 80vh;
    background: url("hero3.jpeg") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
}

.hero-text span {
    font-size: 80px;
}

.hero-text button {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.hero-text button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,166,107,0.4);
}

/* CATEGORY BAR */

.categories {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background: var(--gold);
    color: var(--black);
}

/* ABOUT */

.about-section {
    display: flex;
    align-items: stretch;
    background: black;
    padding: 0; /* KLJUČNO */
}


/* TEKST */

.about-text {
    width: 50%;
    padding: 100px 80px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-text p {
    line-height: 1.8;
    color: var(--gray);
    font-size: 15px;
}

/* SLIKE */

.about-images {
    position: relative;
    width: 50%;
}

/* velika slika FULL HEIGHT */

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* mala slika */

.small-img {
    position: absolute;
    width: 350px; /* malo veća */
    
    bottom: 80px;
    left: -120px;

    border-radius: 20px;

    box-shadow: 0 30px 80px rgba(0,0,0,0.7);

    transform: rotate(-5deg); /* 🔥 daje luxury feel */

    transition: 0.4s;
}
.small-img:hover {
    transform: rotate(0deg) scale(1.05);
}
.small-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.4)
    );
}


/* CATEGORY CARDS */

.category-card {
    position: relative;
    width: 250px;
    height: 320px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.4s;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* SAMO ZOOM */

.category-card:hover img {
    transform: scale(1.08);
}

/* MAKNI OVERLAY AKO HOĆEŠ CLEAN LOOK */
.category-card::after {
    display: none;
}

/* SHOP */

.shop {
    background: var(--black);
    padding: 80px;
    text-align: center;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start; /* 🔥 OVO JE KLJUČ */
}
.product {
    width: calc(25% - 30px);
}

/* PRODUCT */

.product {
    position: relative;
    width: 260px;
    overflow: hidden;
    border-radius: 15px;
}

.product img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s;
}

.product::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: 0.4s;
}
.product::before {
    content: "POGLEDAJ";
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}
.product:hover::before {
    opacity: 1;
}

.product:hover::after {
    opacity: 1;
}

.product h3,
.product p {
    position: absolute;
    left: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s;
    z-index: 2;
}
.product:hover h3,
.product:hover p {
    opacity: 1;
    transform: translateY(0);
}
.product:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.product {
    cursor: pointer;
}

.product h3 {
    bottom: 50px;
}

.product p {
    bottom: 20px;
    color: var(--gold);
}

.product:hover img {
    transform: scale(1.1);
}

.product:hover h3,
.product:hover p {
    opacity: 1;
}

.category-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.category-card {
    width: 220px;
    height: 220px;
}
h2 {
    letter-spacing: 2px;
    font-weight: 300;
}
/* overlay (blagi mrak preko slike) */
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* tekst */
.category-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 500;
}

/* hover efekat */
.category-card:hover::before {
    background: rgba(0,0,0,0.55);
}
/* hover glow (luxury efekat) */
.category-card:hover {
    box-shadow: 0 10px 30px rgba(201,166,107,0.2);
}

/* dugme u hero */
.hero-text button {
    transition: 0.3s;
}

.hero-text button:hover {
    background: #d4b47c;
    transform: translateY(-2px);
}
/* uklanja sve razmake između sekcija */
section {
    margin: 0;
}

/* hero i bar da naležu */
.hero {
    display: block;
    margin-bottom: 0;
}

.categories {
    margin: 0;
    padding: 12px;
}


.product {
    transition: 0.4s;
    opacity: 1;
    transform: scale(1);
}

.product.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}
#searchInput {
    padding: 12px 20px;
    width: 300px;
    margin: 20px 0;
    border-radius: 30px;
    border: none;
    outline: none;
    background: var(--dark);
    color: white;
    text-align: center;
}

#searchInput::placeholder {
    color: #aaa;
}
.category-card {
    cursor: pointer;
}
/* CONTACT */

.contact {
    padding: 100px 20px;
    text-align: center;
    background: black;
}

.contact h2 {
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-box {
    background: var(--dark);
    padding: 30px;
    border-radius: 15px;
    width: 260px;
    max-width: 100%;
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(201,166,107,0.2);
}

.contact-box h3 {
    margin-bottom: 10px;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 20px;
    background: var(--black);
    color: #777;
}
.map-box iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}
.map-box a {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
}

.map-box a:hover {
    text-decoration: underline;
}
.contact-box a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-box a:hover {
    color: var(--gold);
}
.contact-icon {
    display: block;
    margin: 40px auto 0;
    font-size: 70px;
    opacity: 0.1;
    color: var(--gold);
    text-align: center;
}
.contact-box:hover .contact-icon {
    opacity: 0.25;
    transform: scale(1.1);
    transition: 0.3s;
}

/* male ikonice u naslovu */
.contact-box h3 i {
    margin-right: 8px;
    color: var(--gold);
}
html {
    scroll-behavior: smooth;
}
.navbar li {
    cursor: pointer;
    position: relative;
}

.navbar li::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--gold);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar li:hover::after {
    width: 100%;
}
.hero-text button {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.hero-text button:hover {
    background: #d4b47c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201,166,107,0.4);
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
/* 📱 MOBILE */

@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .navbar ul {
        gap: 15px;
    }

    /* HERO */
    .hero-text h1 {
        font-size: 35px;
    }

    .hero-text span {
        font-size: 45px;
    }

    /* ABOUT */
    .about-section {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .about-images {
        width: 100%;
        justify-content: center;
    }

    .small-img {
        left: 0;
        top: 80%;
        width: 180px;
    }

    /* CATEGORY */
    .category-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .category-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.category-card {
    width: 100%;
}

    /* PRODUCTS */
    .products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    /* CONTACT */
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

}
@media (max-width: 768px) {
    .category-card,
    .product {
        width: 90%;
    }
}/* ABOUT FIX MOBILE */
@media (max-width: 768px) {

    .about-section {
        flex-direction: column;
        padding: 40px 0;
    }

    .about-text {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .about-images {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .main-img {
        width: 90%;
    }

    .small-img {
        position: static; /* 🔥 KLJUČ */
        width: 70%;
        transform: none;
    }

}
@media (max-width: 768px) {

    .category-section {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 🔥 2 kolone */
        gap: 15px;
        padding: 40px 20px;
    }

    .category-card {
        width: 100%;
        height: 180px;
    }

}
@media (max-width: 768px) {

    .products {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product {
        width: 100%;
    }

    .product img {
        height: 200px;
    }

}
@media (max-width: 768px) {

    .hero {
        height: 60vh;
    }

    .hero-text {
        left: 5%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text span {
        font-size: 40px;
    }

}
@media (max-width: 768px) {

    .contact-box {
        width: 90%;
    }

}
@media (max-width: 768px) {

    /* 🔥 NAVBAR FIX */
    .navbar {
        flex-direction: column;
        padding: 15px 10px;
    }

    .logo img {
        height: 55px;
    }

    .navbar ul:first-child {
        display: none; /* skloni USLUGE / O NAMA gore */
    }

    .navbar ul {
        gap: 20px;
        font-size: 14px;
    }

    /* 🔥 HERO */
    .hero {
        height: 65vh;
    }

    .hero-text {
        left: 5%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text span {
        font-size: 36px;
    }

    .hero-text button {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* 🔥 CATEGORY BAR */
    .categories {
        font-size: 12px;
        padding: 10px;
        overflow-x: auto;
    }

    /* 🔥 ABOUT */
    .about-section {
        flex-direction: column;
        padding: 30px 0;
    }

    .about-text {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .about-images {
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .main-img {
        width: 90%;
    }

    .small-img {
        position: static;
        width: 65%;
    }

    /* 🔥 KATEGORIJE (TIGHT GRID) */
    .category-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 20px;
    }

    .category-card {
        height: 150px;
        border-radius: 12px;
    }

    .category-card h3 {
        font-size: 13px;
    }

    /* 🔥 SHOP */
    .shop {
        padding: 40px 10px;
    }

    .shop h2 {
        font-size: 22px;
    }

    /* 🔥 SEARCH */
    .search {
        width: 90%;
        padding: 12px;
        font-size: 14px;
    }

    /* 🔥 PRODUCTS (BEZ RUPA) */
    .products {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product img {
        height: 180px;
    }

    .product h3 {
        font-size: 13px;
    }

    .product p {
        font-size: 12px;
    }

    /* 🔥 KONTAKT (MANJE I LEPŠE) */
    .contact-container {
        gap: 15px;
    }

    .contact-box {
        width: 90%;
        padding: 20px;
    }

}
@media (max-width: 768px) {

    .about-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 15px;
    }

    .main-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
    }

    .small-img {
        position: static;
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
    }

}
@media (max-width: 768px) {

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    .navbar ul:first-child {
        display: flex; /* vrati USLUGE i O NAMA */
        gap: 10px;
        font-size: 12px;
    }

    .navbar ul:last-child {
        gap: 10px;
        font-size: 12px;
    }

    .logo img {
        height: 45px;
    }

}
.navbar ul li {
    opacity: 0.8;
}

.navbar ul {
    align-items: center;
}

.navbar ul li:hover {
    opacity: 1;
}
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin: 60px 0 20px;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
        margin: 30px 0 15px;
    }
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
h1 {
    font-size: 60px;
    letter-spacing: 1px;
}

h2 {
    font-size: 32px;
    letter-spacing: 2px;
}

h3 {
    font-size: 18px;
    letter-spacing: 1px;
}
@media (max-width: 768px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 14px;
    }

}
.navbar li {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}
.category-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.category-card,
.product,
.contact-box {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.category-card:hover,
.product:hover {
    transform: translateY(-5px) scale(1.02);
}
p {
    line-height: 1.8;
    letter-spacing: 0.3px;
}
.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 10px auto 0;
}
.hero-text h1 {
    text-shadow: 0 5px 20px rgba(0,0,0,0.6);
}
.category-card img,
.product img {
    transition: 0.4s;
}

.category-card:hover img,
.product:hover img {
    filter: brightness(1.1);
}
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}
.category-card h3 {
    transition: 0.3s;
}

.category-card:hover h3 {
    color: var(--gold);
}
.hero-text button {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}
.container {
    width: 95%;
    margin: auto;
    max-width: 1400px;
}
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}
.category-card,
.product {
    border-radius: 12px;
}
img {
    display: block;
}
body {
    color: var(--text);
}
p {
    color: var(--gray);
}
.category-card,
.product,
.contact-box {
    transition: 0.3s ease;
}
.about-section .container {
    display: flex;
    width: 100%;
    max-width: none;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
.navbar a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #c9a66b; /* gold */
}
.navbar a {
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 1px;
    background: #c9a66b;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}
section {
    scroll-margin-top: 100px;
}
.hero {
    filter: brightness(0.85);
}
.categories a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

.categories a:hover {
    opacity: 0.7;
}
.categories {
    text-transform: uppercase;
}
.muski-hero {
    background: url("muskihero.jpeg") center/cover no-repeat;
}
.product-detail {
    padding: 100px 0;
}

.product-detail-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.product-detail img {
    width: 400px;
    border-radius: 15px;
}

.product-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-info p {
    margin-bottom: 15px;
}

.product-info label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.product-info select {
    width: auto;
    min-width: 200px;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #333;
    cursor: pointer;
    appearance: none; /* Uklanja default arrow */
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" 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;
    background-size: 16px;
    padding-right: 40px;
}

.buy-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--gold);
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.buy-btn:hover {
    background: var(--gold-light);
}
.product-detail-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.product-detail img {
    width: 420px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.product-info p {
    font-size: 16px;
    color: #bbb;
}
#product-price {
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
}
.buy-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: var(--gold);
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.buy-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,166,107,0.4);
}
.product-detail img {
    transition: 0.4s;
}

.product-detail img:hover {
    transform: scale(1.05);
}
.related {
    padding: 80px 0;
    background: #0a0a0a;
}

.related .products {
    margin-top: 30px;
}
button, .buy-btn {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}
.section-title {
    margin-top: 80px;
}
.categories {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.categories a {
    position: relative;
}

.categories a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background: black;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.categories a:hover::after {
    width: 100%;
}
.products {
    flex-wrap: wrap;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold), var(--gold-light));
}
.hero-text h1 {
    text-shadow: 0 10px 30px rgba(0,0,0,0.7);
}
a {
    transition: 0.3s;
}
.zenski-hero {
    background: url("zenskihero.jpeg") center/cover no-repeat;
}
.unisex-hero {
    background: url("unisekshero.jpg") center/cover no-repeat;
}
.nakit-hero {
    background: url("nakithero.jpeg") center/cover no-repeat;
}
.nakit-page .product:hover::after {
    display: none;
}
.nakit-page .product::before {
    display: none;
}
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.product .desc {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #bbb;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}
.product {
    position: relative;
    overflow: hidden;
}

.product img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.product:hover img {
    transform: scale(1.05);
}

.product::before,
.product::after {
    pointer-events: none;
}
.product h3 {
    font-size: 16px;
    margin-top: 10px;
}

.product p {
    color: #d4af37;
    font-weight: 500;
    margin-top: 4px;
}
/* sakrij opis dole */
.product .desc {
    display: none;
}

/* hover info */
.product .hover-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}



.product {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.product .desc {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
    text-align: left;
}

.product .desc strong {
    color: white;
    font-weight: 500;
}
.product .desc strong {
    color: #d4af37; /* gold */
}
.product .desc {
    display: none;
}
@media (max-width: 768px) {

    /* HERO sekcija */
    .hero {
        height: 70vh;
        padding: 0 15px;
    }

    /* slika u hero */
    .hero img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
        border-radius: 20px;
    }

    /* tekst ako ima */
    .hero-text {
        text-align: center;
        padding: 20px 10px;
    }

}
@media (max-width: 768px) {

    .product-page img {
        width: 100%;
        max-height: 350px;
        object-fit: cover;
        border-radius: 15px;
    }

    .product-page {
        padding: 20px;
    }

}
@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

}
@media (max-width: 768px) {

    /* PRODUCT PAGE layout */
    .product-page {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    /* slika */
    .product-page img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover;
        border-radius: 15px;
    }

    /* tekst */
    .product-info {
        width: 100%;
        text-align: left;
    }

    /* naslov */
    .product-info h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    /* cena */
    .product-info p {
        font-size: 16px;
    }

}
@media (max-width: 768px) {

    .container {
        display: flex;
        flex-direction: column;
    }

}
@media (max-width: 768px) {

    .product-detail-container {
        flex-direction: column;
        gap: 20px;
    }

    .product-detail img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .product-info {
        width: 100%;
        text-align: left;
    }

}
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    max-width: 1200px;
    margin: 0 auto; /* 🔥 OVO JE KLJUČ */
}
.shop .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr 1fr;
    }
}
html {
    scroll-behavior: smooth;
}
/* 🔥 PREMIUM ABOUT FIX - SAFE */

.about-text h2 {
    font-size: 36px;
    letter-spacing: 3px;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

/* zlatna linija */
.about-text h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-top: 12px;
}

/* tekst */
.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #bfbfbf;
    max-width: 520px;
}

/* highlight za brandove */
.about-text strong {
    color: var(--gold);
    font-weight: 500;
}
.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #bfbfbf;

    max-width: 500px;   /* 🔥 KLJUČ */
    width: 100%;
}
.about-paragraph {
    max-width: 500px;
    width: 100%;
}
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px; /* 🔥 VEĆE */
    letter-spacing: 4px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-top: 15px;
}

.about-sub {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 18px;
    max-width: 480px;
}

.about-text strong {
    color: var(--gold);
    font-weight: 500;
}

.about-final {
    margin-top: 25px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #aaa;
}
.about-title {
    text-shadow: 0 2px 20px rgba(255,255,255,0.05);
}
.about-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-text p {
    font-size: 17px; /* malo veće */
    line-height: 1.9; /* 🔥 luksuzni razmak */
    letter-spacing: 0.4px;
    color: #d6d6d6;
    max-width: 520px;
    margin-bottom: 20px;
}
.about-text strong {
    color: #c9a66b;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.about-text {
    margin-top: 10px;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background: #000;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: clip;
    background-color: #000;
}

.cart-nav-btn {
    position: relative;
    border: 1px solid rgba(201,166,107,0.55);
    background: transparent;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font: inherit;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
    vertical-align: middle;
}

.cart-nav-item {
    display: flex;
    align-items: center;
}

.cart-nav-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: black;
    font-size: 12px;
    font-weight: 600;
}

.cart-nav-btn i {
    color: var(--gold);
    font-size: 15px;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 1998;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1999;
    width: min(420px, 100%);
    height: 100vh;
    background: #0a0a0a;
    border-left: 1px solid rgba(201,166,107,0.3);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    transform: translateX(100%);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

.cart-open .cart-overlay {
    opacity: 1;
    pointer-events: auto;
}

.cart-open .cart-drawer {
    transform: translateX(0);
}

.cart-header,
.cart-footer {
    padding: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 0;
    margin-top: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
}

.cart-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
}

.cart-step {
    display: none;
}

.cart-step.is-active {
    display: block;
}

.cart-step-thankyou {
    text-align: center;
    padding: 40px 20px;
}

.cart-step-thankyou h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.cart-step-thankyou p {
    margin-bottom: 30px;
    color: var(--text);
}

.cart-step-thankyou button {
    padding: 10px 20px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cart-step-thankyou button:hover {
    background: #d4af37;
}

.cart-items {
    padding: 18px 22px;
}

.cart-empty {
    color: var(--gray);
    text-align: center;
    margin-top: 40px;
}

.cart-footer.is-hidden {
    display: none;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-item img {
    width: 74px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    background: #111;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h3 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.cart-item-info p {
    color: var(--gold);
    font-size: 13px;
    margin: 6px 0 10px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
}

.cart-qty button {
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    cursor: pointer;
}

.cart-remove {
    display: block;
    margin-top: 10px;
    border: 0;
    background: transparent;
    color: #aaa;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
}

.cart-checkout,
.cart-submit,
.cart-clear {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    padding: 13px 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.cart-checkout,
.cart-submit {
    border: 0;
    background: var(--gold);
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.cart-checkout:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.cart-clear {
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.16);
    background: transparent;
    color: white;
    cursor: pointer;
}

.cart-back {
    margin: 18px 22px 0;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.cart-order-summary {
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
}

.cart-order-summary h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text);
}

.cart-summary-items {
    margin-bottom: 15px;
}

.cart-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.cart-summary-total {
    font-weight: bold;
    font-size: 16px;
    color: var(--gold);
    text-align: right;
}

.cart-summary-note {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
}

.cart-order-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 22px 24px;
}

.cart-order-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #ddd;
    font-size: 13px;
}

.cart-order-form input,
.cart-order-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 6px;
    background: #111;
    color: white;
    padding: 12px 13px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.cart-order-form input:focus,
.cart-order-form textarea:focus {
    border-color: var(--gold);
}

.cart-order-form textarea {
    resize: vertical;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.product-actions .buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    min-height: 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: none;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.buy-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(201,166,107,0.55);
}

.buy-btn-secondary:hover {
    color: black;
}

@media (max-width: 768px) {
    .cart-nav-btn {
        padding: 6px 8px;
        font-size: 11px;
        gap: 5px;
    }

    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .cart-header,
    .cart-footer {
        padding: 18px;
    }

    .cart-items {
        padding: 14px 18px;
    }

    .cart-order-form {
        padding: 14px 18px 22px;
    }

    .product-actions {
        width: 100%;
    }

    .product-actions .buy-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-wrap: wrap;
    }

    .navbar ul:first-child {
        display: flex;
    }

    .navbar ul:last-child {
        flex: 1;
        justify-content: flex-end;
    }

    .cart-nav-text {
        display: none;
    }
}

.navbar > ul {
    flex: 1;
}

.navbar > ul:first-child {
    justify-content: flex-start;
}

.navbar > ul:last-child {
    justify-content: flex-end;
}

.navbar .logo {
    flex: 0 0 auto;
}

.product h3,
.product p {
    position: absolute;
    left: 20px;
    right: 20px;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s;
    z-index: 2;
}

.product:hover h3,
.product:hover p {
    opacity: 1;
    transform: translateY(0);
}

.product h3 {
    bottom: 95px;
}

.product p {
    bottom: 20px;
    color: var(--gold);
    line-height: 1.45;
}

.hero-text h1 {
    font-size: 76px;
    line-height: 1.05;
}

.hero-text span {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1;
}

.hero-text button {
    margin-top: 28px;
    padding: 16px 42px;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text span {
        font-size: 54px;
    }

    .hero-text button {
        padding: 13px 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text span {
        font-size: 46px;
    }
}
.btn {
    background: #c8a97e !important;
    color: #000 !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.btn:visited,
.btn:active {
    color: #000 !important;
}

/* Final hero fixes for deployed/mobile rendering */
.hero-text button,
.hero-text .hero-cta,
.hero-text button:visited,
.hero-text button:active,
.hero-text button:focus {
    appearance: none;
    -webkit-appearance: none;
    background: var(--gold) !important;
    color: var(--black) !important;
    text-decoration: none !important;
    -webkit-text-fill-color: var(--black) !important;
}

.hero-text button:hover,
.hero-text .hero-cta:hover {
    background: var(--gold-light) !important;
    color: var(--black) !important;
    -webkit-text-fill-color: var(--black) !important;
}

.hero,
.hero-overlay {
    overflow: hidden;
}

.hero-overlay {
    inset: 0;
}

@media (max-width: 768px) {
    .hero {
        padding-left: 0;
        padding-right: 0;
        background-position: 58% center;
    }
}

/* Jewelry gallery lightbox */
.nakit-page .product {
    cursor: zoom-in;
}

.nakit-page .product:hover img {
    transform: scale(1.02);
}

.nakit-lightbox {
    padding: 24px;
}

.nakit-lightbox.show {
    display: flex !important;
}

.nakit-lightbox img {
    width: auto;
    height: auto;
    max-width: min(760px, 86vw) !important;
    max-height: 78vh !important;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201,166,107,0.55);
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nakit-page .product:hover img {
        transform: none;
    }

    .nakit-lightbox {
        padding: 18px;
    }

    .nakit-lightbox img {
        max-width: 92vw !important;
        max-height: 68vh !important;
    }

    .lightbox-close {
        width: 38px;
        height: 38px;
        top: 14px;
        right: 14px;
        font-size: 20px;
    }
}
