/*
Theme Name: Hachiko Premium
Theme URI: https://websalty.com
Author: Websalty
Author URI: https://websalty.com
Description: Custom WooCommerce tema za Hachiko Pet Shop.
Version: 1.0.0
Text Domain: hachiko
*/

:root {
    --h-btn-green: #1A3C34;      
    --h-btn-green-hover: #112722; 
    --h-red: #D30018;      
    --h-dark: #1A1818;     
    --h-bg: #FFFFFF;       
    --h-cream: #F9F6F0;    
    --h-surface: #FFFFFF;
    --h-gray: #75706C;
    --h-border: #EFEBE6;
    
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 15px 35px rgba(0,0,0,0.03);
    --shadow-float: 0 25px 50px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px rgba(26, 60, 52, 0.1); 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--h-bg); color: var(--h-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- PARALLAX BACKGROUND ELEMENT (Premium moment) --- */
.bg-paw {
    position: fixed;
    top: 5%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231A3C34'%3E%3Cpath d='M12 21c-4.418 0-8-3.582-8-8 0-1.282.302-2.541.88-3.69l.348-.682c.162-.317.472-.51.815-.51h.063c.433 0 .8.31.874.739l.235 1.393c.188 1.115 1.134 1.942 2.261 1.942h5.048c1.127 0 2.073-.827 2.261-1.942l.235-1.393c.074-.429.441-.739.874-.739h.063c.343 0 .653.193.815.51l.348.682C19.698 10.459 20 11.718 20 13c0 4.418-3.582 8-8 8zm-6.5-13.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm13 0c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-8-2c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(0px);
    transition: transform 0.1s linear; 
}

/* UNIFICIRANO DUGME */
.btn-primary { 
    background: var(--h-btn-green); 
    color: #fff; 
    padding: 14px 32px; 
    border-radius: 12px; 
    font-family: var(--font-head); 
    font-size: 16px; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    transition: var(--transition); 
    border: none; 
    cursor: pointer; 
    text-align: center;
}
.btn-primary:hover { 
    background: var(--h-btn-green-hover); 
    box-shadow: 0 10px 20px rgba(26,60,52,0.15); 
    transform: translateY(-2px); 
}
.btn-outline { background: transparent; color: var(--h-dark); border: 2px solid var(--h-border); }
.btn-outline:hover { border-color: var(--h-dark); background: var(--h-dark); color: #fff; box-shadow: none; transform: none;}

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1;}

/* --- TOP BAR --- */
.top-bar { background: var(--h-btn-green); color: var(--h-surface); text-align: center; padding: 10px; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; position: relative; z-index: 100000; }
.top-bar span { font-weight: 700; text-decoration: underline; }

/* --- HEADER --- */
.header { background: var(--h-surface); position: sticky; top: 0; z-index: 999999; border-bottom: 1px solid var(--h-border); box-shadow: 0 2px 10px rgba(0,0,0,0.02);}
.header-inner { display: flex; justify-content: space-between; align-items: center; min-height: 90px; padding: 10px 0; position: relative; }

.hamburger { display: none; cursor: pointer; }
.hamburger svg { width: 28px; height: 28px; stroke: var(--h-dark); fill: none; stroke-width: 2; stroke-linecap: round;}

.logo { display: flex; align-items: center;}
.logo img { max-height: 70px; width: auto; }

.nav-links { display: flex; gap: 40px; height: 100%; position: static; align-items: center;}
.nav-item { position: static; display: flex; align-items: center; height: 100%; cursor: pointer; }
.nav-label { position: relative; font-family: var(--font-head); font-size: 15px; font-weight: 600; text-transform: uppercase; height: 100%; display: flex; align-items: center; transition: color 0.2s; padding: 35px 0;}
.nav-item:hover .nav-label { color: var(--h-btn-green); }
.nav-label::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--h-btn-green); transition: var(--transition); }
.nav-item:hover .nav-label::after { width: 100%; }

/* MEGA MENI */
.mega-menu {
    position: absolute; top: 100%; left: 0; width: 100%; 
    background-color: var(--h-cream) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-bottom: 1px solid var(--h-border); border-top: 2px solid var(--h-btn-green); 
    opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease;
    z-index: 1000000; text-align: left; padding: 40px 0;
}
.mega-menu-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-col h4 { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--h-dark); margin-bottom: 20px; text-transform: uppercase; font-weight: 700; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 10px; }
.mega-col h4 svg { width: 22px; min-width: 22px; height: 22px; stroke: var(--h-btn-green); fill: none; }
.mega-col ul li { margin-bottom: 12px; }
.mega-col ul li a { font-family: var(--font-body); font-size: 14px; color: var(--h-gray); transition: color 0.2s; display: flex; align-items: center; gap: 8px; text-transform: none; font-weight: 500; white-space: nowrap; }
.mega-col ul li a:hover { color: var(--h-btn-green); padding-left: 5px; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.search-box { display: flex; align-items: center; background: var(--h-cream); border: 1px solid var(--h-border); padding: 10px 20px; border-radius: 12px; transition: var(--transition);}
.search-box:focus-within { border-color: var(--h-btn-green); background: #fff;}
.search-box input { border: none; background: transparent; outline: none; font-size: 14px; width: 200px; padding-left: 10px; font-family: var(--font-body);}
.icon-btn { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; cursor: pointer; transition: color 0.2s; position: relative;}
.icon-btn:hover { color: var(--h-btn-green); }
.icon-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-badge { position: absolute; top: -8px; right: -10px; background: var(--h-red); color: #fff; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; box-shadow: 0 2px 5px rgba(211,0,24,0.3);}

/* --- MOBILE MENU OVERLAY --- */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100000; opacity: 0; visibility: hidden; transition: var(--transition); backdrop-filter: blur(3px);}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; left: -100%; width: 85%; max-width: 320px; height: 100vh; background: var(--h-surface); z-index: 100001; transition: var(--transition); box-shadow: 20px 0 50px rgba(0,0,0,0.1); padding: 30px; display: flex; flex-direction: column; overflow-y: auto; }
.mobile-menu.active { left: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-logo { max-height: 40px; }
.close-menu { cursor: pointer; background: var(--h-cream); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: var(--transition);}
.close-menu:hover { background: var(--h-border);}
.close-menu svg { width: 24px; height: 24px; stroke: var(--h-dark); stroke-width: 2; fill: none; stroke-linecap: round;}
.mobile-nav { display: flex; flex-direction: column; gap: 15px; }
.mobile-nav a { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--h-dark); border-bottom: 1px solid var(--h-border); padding: 15px 0; display: block; transition: var(--transition);}
.mobile-nav a:hover { color: var(--h-btn-green); padding-left: 10px;}

/* --- HERO SEKCIJA --- */
.hero { padding: 40px 0 60px; position: relative;}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; background: var(--h-cream); border-radius: 24px; padding: 60px; box-shadow: var(--shadow-soft); border: 1px solid var(--h-border); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--h-dark); padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 25px; border: 1px solid var(--h-border); box-shadow: 0 4px 10px rgba(0,0,0,0.02);}
.hero-badge span { color: var(--h-btn-green); }
.hero-title { font-family: var(--font-head); font-size: clamp(48px, 4vw, 72px); line-height: 1.1; letter-spacing: -1.5px; color: var(--h-dark); margin-bottom: 24px; }
.hero-title span { color: var(--h-btn-green); }
.hero-desc { font-size: 18px; color: var(--h-gray); margin-bottom: 40px; max-width: 480px; line-height: 1.6; }

.hero-visual { position: relative; height: 550px; border-radius: 20px; overflow: hidden; z-index: 1;}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.telop { position: absolute; background: var(--h-cream); padding: 16px 24px; border-radius: 12px; box-shadow: var(--shadow-float); display: flex; align-items: center; gap: 12px; border: 1px solid var(--h-border); z-index: 10; animation: float 4s ease-in-out infinite; }
.telop-icon { background: var(--h-btn-green); color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.telop-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2;}
.telop-text h4 { font-family: var(--font-head); font-size: 15px; color: var(--h-dark); }
.telop-text p { font-size: 12px; color: var(--h-gray); font-weight: 500;}
.telop-1 { top: 40px; left: -20px; }
.telop-2 { bottom: 60px; right: -20px; animation-delay: 2s; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-12px); } 100% { transform: translateY(0px); } }

/* --- KATEGORIJE --- */
.categories { padding: 20px 0 40px; position: relative;}
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.cat-item { background: var(--h-cream); border: 1px solid var(--h-border); border-radius: 20px; padding: 35px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; transition: var(--transition); }
.cat-item:hover { border-color: var(--h-btn-green); box-shadow: var(--shadow-hover); transform: translateY(-8px); }
.cat-img { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; background: #fff; padding: 8px; border: 1px solid var(--h-border); transition: var(--transition);}
.cat-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform 0.5s ease;}
.cat-item:hover .cat-img { border-color: var(--h-btn-green); }
.cat-item:hover .cat-img img { transform: scale(1.1);}
.cat-info h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 4px; color: var(--h-dark);}
.cat-info p { font-size: 14px; color: var(--h-gray); font-weight: 500;}

/* --- PREPORUKA MESECA --- */
.feature-push { margin: 40px 0 60px; position: relative;}
.feature-push-inner { background: var(--h-cream); border-radius: 24px; overflow: hidden; display: flex; align-items: stretch; border: 1px solid var(--h-border); box-shadow: var(--shadow-soft);}
.feature-push-content { flex: 1; padding: 60px 80px; display: flex; flex-direction: column; justify-content: center; }
.feature-push-content .badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(26,60,52,0.08); color: var(--h-btn-green); padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; align-self: flex-start; }
.feature-push-content h2 { font-family: var(--font-head); font-size: 38px; line-height: 1.1; margin-bottom: 16px; color: var(--h-dark); letter-spacing: -0.5px;}
.feature-push-content .price { font-family: var(--font-head); font-size: 32px; color: var(--h-red); font-weight: 800; margin-bottom: 24px; }
.feature-push-content ul { margin-bottom: 30px; }
.feature-push-content ul li { display: flex; align-items: center; gap: 12px; color: var(--h-gray); font-size: 15px; margin-bottom: 12px; font-weight: 500;}
.feature-push-content ul li svg { width: 22px; height: 22px; stroke: var(--h-btn-green); fill: none; stroke-width: 2.5;}

.feature-push-image { flex: 1; background: var(--h-surface); padding: 40px; display: flex; align-items: center; justify-content: center; position: relative; border-left: 1px solid var(--h-border); }
.feature-push-image img { max-width: 80%; transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); filter: drop-shadow(0 30px 40px rgba(0,0,0,0.1)); }
.feature-push-inner:hover .feature-push-image img { transform: scale(1.05) rotate(-2deg); }

/* --- PREMIUM BRENDOVI --- */
.brands-section { padding: 20px 0 60px; text-align: center; position: relative;}
.brands-grid { display: flex; justify-content: center; gap: 40px; align-items: center; flex-wrap: wrap; }
.brands-grid img { max-width: 140px; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); cursor: pointer; }
.brands-grid img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

/* --- PROIZVODI --- */
.products { padding: 20px 0 60px; position: relative;}
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.section-title h2 { font-family: var(--font-head); font-size: 40px; margin-bottom: 8px; letter-spacing: -1px; }
.section-title p { color: var(--h-gray); font-size: 16px; }

.filter-controls { display: flex; gap: 12px; }
.filter-btn { padding: 12px 28px; border-radius: 12px; border: 1px solid var(--h-border); background: var(--h-cream); font-family: var(--font-head); font-weight: 600; font-size: 14px; transition: var(--transition); color: var(--h-gray); cursor:pointer;}
.filter-btn.active, .filter-btn:hover { background: var(--h-btn-green); color: #fff; border-color: var(--h-btn-green); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { background: var(--h-cream); border: 1px solid var(--h-border); border-radius: 20px; padding: 20px; position: relative; transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-hover); border-color: var(--h-btn-green); transform: translateY(-5px); }
.card-badge { position: absolute; top: 15px; left: 15px; background: var(--h-red); color: #fff; padding: 6px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; z-index: 2; box-shadow: 0 2px 5px rgba(211,0,24,0.3);}
.card-img { height: 220px; background: #fff; border-radius: 12px; margin-bottom: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 15px; border: 1px solid var(--h-border);}
.card-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.5s ease;}
.product-card:hover .card-img img { transform: scale(1.05);}
.card-cat { font-size: 11px; color: var(--h-gray); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;}
.card-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: auto; line-height: 1.3; color: var(--h-dark);}
.card-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 15px; border-top: 1px solid rgba(0,0,0,0.05); }
.card-price { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--h-dark); }
.card-price.discount { color: var(--h-red); }
.card-old-price { font-size: 12px; color: var(--h-gray); text-decoration: line-through; display: block; font-weight: 500;}
.add-btn { width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid var(--h-border); display: flex; justify-content: center; align-items: center; transition: var(--transition); color: var(--h-dark); cursor:pointer;}
.add-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.product-card:hover .add-btn { background: var(--h-btn-green); color: #fff; border-color: var(--h-btn-green);}

/* --- NAŠA PRIČA --- */
.story-section { padding: 40px 0 80px; position: relative;}
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-image img { border-radius: 24px; box-shadow: var(--shadow-soft);}
.story-content h2 { font-family: var(--font-head); font-size: 48px; margin-bottom: 24px; line-height: 1.1; letter-spacing: -1px; color: var(--h-dark);}
.story-content p { font-size: 16px; color: var(--h-gray); margin-bottom: 20px; line-height: 1.7;}

/* --- ZADOVOLJNI KUPCI --- */
.testimonials { padding: 20px 0 60px; position: relative;}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px;}
.testi-card { background: var(--h-cream); border: 1px solid var(--h-border); padding: 30px; border-radius: 24px; transition: var(--transition);}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--h-btn-green);}
.stars { color: #FFB800; font-size: 18px; margin-bottom: 15px; letter-spacing: 2px;}
.testi-text { font-size: 15px; color: var(--h-dark); font-style: italic; margin-bottom: 20px; line-height: 1.6;}
.testi-author { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--h-btn-green);}
.testi-pet { font-size: 13px; color: var(--h-gray); font-weight: 500;}

/* --- FAQ SEKCIJA (BENTO STIL) --- */
.faq-section { padding: 40px 0 80px; position: relative;}
.faq-wrapper { max-width: 900px; margin: 0 auto; }
.faq-title { text-align: center; font-family: var(--font-head); font-size: 40px; margin-bottom: 50px; color: var(--h-dark);}

details { background: var(--h-surface); border: 1px solid var(--h-border); border-radius: 20px; margin-bottom: 20px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition);}
details:hover { border-color: var(--h-btn-green); box-shadow: var(--shadow-hover); transform: translateY(-3px);}

summary { font-family: var(--font-head); font-size: 18px; font-weight: 700; padding: 25px 30px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--h-dark); background: var(--h-cream);}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 28px; color: var(--h-btn-green); font-weight: 400; transition: var(--transition); line-height: 1;}

details[open] summary { border-bottom: 1px solid var(--h-border); }
details[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-content { padding: 25px 30px; font-size: 16px; color: var(--h-gray); line-height: 1.7; }

/* --- NEWSLETTER --- */
.newsletter-wrapper { margin: 40px 0; background: var(--h-btn-green); border-radius: 24px; padding: 60px 80px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 2;}
.newsletter-wrapper h2 { font-family: var(--font-head); font-size: 36px; color: #fff; max-width: 800px; line-height: 1.2;}
.newsletter-wrapper p { color: #fff; font-size: 16px; opacity: 0.95; max-width: 700px; margin-bottom: 10px;}
.nl-form-box { display: flex; background: #fff; border-radius: 12px; overflow: hidden; max-width: 600px; padding: 4px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);}
.nl-form-box input { flex: 1; border: none; outline: none; padding: 15px 20px; font-family: var(--font-body); font-size: 15px; color: var(--h-dark);}
.nl-form-box button { background: var(--h-dark); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 16px; padding: 0 30px; border-radius: 10px; transition: var(--transition); border:none; cursor:pointer;}
.nl-form-box button:hover { background: #333; }
.nl-checkbox { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; margin-top: 10px;}
.nl-checkbox input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--h-dark); }

/* --- POGODNOSTI / BENEFITI --- */
.benefits-section { margin: 20px 0 80px; position: relative;}
.benefits-wrapper { background-color: var(--h-cream); border-radius: 24px; padding: 30px; border: 1px solid var(--h-border); display: grid; grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr; gap: 20px; align-items: stretch; }
.benefit-card { background: var(--h-surface); border-radius: 16px; padding: 25px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: var(--transition); border: 1px solid transparent;}
.benefit-card:hover { border-color: var(--h-btn-green); transform: translateY(-3px);}
.benefit-main { background: transparent; box-shadow: none; align-items: flex-start; padding: 15px; border: none;}
.benefit-main:hover { transform: none; border-color: transparent;}
.benefit-main h3 { font-family: var(--font-head); font-size: 22px; color: var(--h-dark); margin-bottom: 20px; }
.benefit-card h4 { font-family: var(--font-head); font-size: 18px; color: var(--h-dark); margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--h-gray); margin-bottom: 15px; max-width: 80%; line-height: 1.5;}
.benefit-card a { color: var(--h-btn-green); font-size: 13px; font-weight: 600; text-decoration: underline; transition: var(--transition);}
.benefit-card a:hover { color: var(--h-dark);}
.benefit-card .strong-text { color: var(--h-btn-green); font-weight: 700; font-size: 14px; margin-top: auto;}
.benefit-icon-img { position: absolute; right: -10px; bottom: -10px; height: 110px; opacity: 0.9; transition: var(--transition);}
.benefit-card:hover .benefit-icon-img { transform: scale(1.05) rotate(-5deg);}

/* --- SHOP LAYOUT --- */
.shop-header { padding: 40px 0; border-bottom: 1px solid var(--h-border); background-color: var(--h-bg); }
.shop-title { font-family: var(--font-head); font-size: 40px; margin-bottom: 10px; color: var(--h-dark); }
.breadcrumbs { font-size: 14px; color: var(--h-gray); font-weight: 500; padding: 30px 0 10px;}
.breadcrumbs a { color: var(--h-dark); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--h-btn-green); }

.shop-container { display: grid; grid-template-columns: 280px 1fr; gap: 50px; padding: 50px 0; align-items: start; }

/* --- SIDEBAR FILTERS --- */
.sidebar { background: var(--h-cream); border: 1px solid var(--h-border); border-radius: 20px; padding: 30px; position: sticky; top: 120px; }

.filter-section { border-bottom: 1px solid var(--h-border); margin-bottom: 20px; padding-bottom: 20px; }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.filter-section h4 { font-family: var(--font-head); font-size: 18px; margin-bottom: 15px; color: var(--h-dark); display: flex; justify-content: space-between; align-items: center;}

/* Checkbox styling */
.filter-list { display: flex; flex-direction: column; gap: 12px; }
.filter-option { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--h-gray); transition: var(--transition); }
.filter-option:hover { color: var(--h-dark); }
.filter-option input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--h-btn-green); cursor: pointer;}
.filter-count { font-size: 12px; color: #aaa; margin-left: auto; }

/* Range Slider mock */
.price-range { padding: 10px 0; }
.range-slider { width: 100%; height: 4px; background: var(--h-border); border-radius: 2px; position: relative; margin-bottom: 20px;}
.range-selected { position: absolute; height: 100%; left: 20%; right: 30%; background: var(--h-btn-green); }
.range-thumb { position: absolute; width: 16px; height: 16px; background: #fff; border: 2px solid var(--h-btn-green); border-radius: 50%; top: -6px; cursor: pointer;}
.thumb-min { left: 20%; transform: translateX(-50%);}
.thumb-max { right: 30%; transform: translateX(50%);}
.price-inputs { display: flex; justify-content: space-between; gap: 10px; }
.price-inputs input { width: 45%; padding: 8px 12px; border: 1px solid var(--h-border); border-radius: 8px; font-size: 13px; font-family: var(--font-body); outline: none; background: #fff;}

/* --- SHOP GRID AREA --- */
.shop-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; background: var(--h-cream); padding: 15px 25px; border-radius: 16px; border: 1px solid var(--h-border);}
.results-count { font-size: 15px; color: var(--h-gray); font-weight: 500;}
.sort-box { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--h-dark);}
.sort-box select { padding: 10px 15px; border-radius: 8px; border: 1px solid var(--h-border); font-family: var(--font-body); outline: none; cursor: pointer; background: #fff;}

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 60px; }
.page-link { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--h-border); background: var(--h-cream); font-weight: 600; color: var(--h-dark); transition: var(--transition); cursor: pointer;}
.page-link:hover, .page-link.active { background: var(--h-btn-green); color: #fff; border-color: var(--h-btn-green); }

/* --- SINGLE PRODUCT LAYOUT --- */
.product-single { padding-bottom: 80px; }
.product-grid-single { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Gallery */
.product-gallery-main { background: var(--h-cream); border: 1px solid var(--h-border); border-radius: 24px; padding: 50px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; position: relative;}
.product-gallery-main img { max-width: 100%; max-height: 500px; object-fit: contain; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.08)); }

.product-badge-single { position: absolute; top: 20px; left: 20px; background: rgba(211,0,24,0.1); color: var(--h-red); padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;}

.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.thumb-item { background: var(--h-cream); border: 2px solid transparent; border-radius: 16px; padding: 15px; cursor: pointer; transition: var(--transition); display: flex; justify-content: center; align-items: center; height: 120px;}
.thumb-item img { max-height: 100%; mix-blend-mode: multiply;}
.thumb-item:hover, .thumb-item.active { border-color: var(--h-btn-green); background: #fff;}

/* Details */
.product-brand { font-size: 14px; font-weight: 600; color: var(--h-gray); text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px;}
.product-title-single { font-family: var(--font-head); font-size: 42px; line-height: 1.1; color: var(--h-dark); margin-bottom: 20px; }
.product-price-single { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.price-current { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--h-red); }
.price-old { font-size: 22px; color: var(--h-gray); text-decoration: line-through; font-weight: 500; }

.product-short-desc { font-size: 16px; color: var(--h-gray); line-height: 1.7; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--h-border); }

/* Variations / Weight */
.product-options { margin-bottom: 30px; }
.option-title { font-size: 15px; font-weight: 600; margin-bottom: 15px; color: var(--h-dark); }
.weight-selector { display: flex; gap: 15px; flex-wrap: wrap;}
.weight-btn { padding: 12px 24px; border: 1px solid var(--h-border); border-radius: 12px; background: #fff; cursor: pointer; transition: var(--transition); font-weight: 600; color: var(--h-gray); font-size: 15px; font-family: var(--font-body);}
.weight-btn:hover { border-color: var(--h-dark); color: var(--h-dark); }
.weight-btn.active { border-color: var(--h-btn-green); background: rgba(26,60,52,0.05); color: var(--h-btn-green); }

/* Add to Cart Box */
.add-to-cart-wrapper { display: flex; gap: 20px; margin-bottom: 40px; }
.qty-selector { display: flex; align-items: center; background: var(--h-cream); border: 1px solid var(--h-border); border-radius: 12px; padding: 5px; height: 56px;}
.qty-btn { width: 40px; height: 100%; display: flex; justify-content: center; align-items: center; font-size: 20px; cursor: pointer; color: var(--h-dark); transition: var(--transition); }
.qty-btn:hover { color: var(--h-btn-green); }
.qty-input { width: 50px; text-align: center; border: none; background: transparent; font-weight: 700; font-size: 16px; outline: none; font-family: var(--font-body);}

.btn-add { flex: 1; padding: 0 40px; font-size: 18px; height: 56px; }

/* Meta info */
.product-meta { font-size: 14px; color: var(--h-gray); display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--h-border);}
.product-meta span { color: var(--h-dark); font-weight: 600; margin-right: 5px;}
.product-meta a { transition: var(--transition); }
.product-meta a:hover { color: var(--h-btn-green); text-decoration: underline;}

/* Trust badges */
.trust-badges { display: flex; gap: 20px; margin-top: 30px; background: var(--h-cream); padding: 20px; border-radius: 16px; border: 1px solid var(--h-border);}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: var(--h-dark); }
.trust-item svg { width: 24px; height: 24px; stroke: var(--h-btn-green); fill: none; stroke-width: 2;}

/* --- TABS / ACCORDIONS (Bento stil) --- */
.product-extra-info { margin-top: 60px; max-width: 1000px; }
.tab-content { padding: 30px; font-size: 16px; color: var(--h-gray); line-height: 1.7; }
.tab-content h4 { color: var(--h-dark); font-family: var(--font-head); font-size: 18px; margin: 20px 0 10px; }
.tab-content ul { list-style: disc; margin-left: 20px; margin-bottom: 20px; }

/* --- RELATED PRODUCTS --- */
.related-products { padding: 60px 0 80px; }

/* --- ABOUT US STYLES --- */
.about-hero { padding: 40px 0 60px; text-align: center; }
.about-title { font-family: var(--font-head); font-size: clamp(40px, 5vw, 64px); line-height: 1.1; letter-spacing: -1.5px; color: var(--h-dark); margin-bottom: 20px; }
.about-title span { color: var(--h-btn-green); }
.about-subtitle { font-size: 18px; color: var(--h-gray); max-width: 700px; margin: 0 auto 50px; line-height: 1.6; }

.about-image-main { width: 100%; height: 500px; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-soft); margin-bottom: 80px;}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.story-text h2 { font-family: var(--font-head); font-size: 40px; margin-bottom: 24px; line-height: 1.1; letter-spacing: -1px; color: var(--h-dark);}
.story-text p { font-size: 17px; color: var(--h-gray); margin-bottom: 20px; line-height: 1.7; }
.story-text p:last-child { margin-bottom: 0; }

.story-image-side { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-float); position: relative;}
.story-image-side::after { content: ''; position: absolute; inset: 0; border-radius: 24px; border: 1px solid rgba(0,0,0,0.05); pointer-events: none;}

.values-header { text-align: center; margin-bottom: 50px; }
.values-header h2 { font-family: var(--font-head); font-size: 40px; color: var(--h-dark); letter-spacing: -1px; margin-bottom: 10px;}

/* --- FOOTER --- */
.footer { background: var(--h-cream); color: var(--h-dark); padding: 80px 0 30px; border-top: 1px solid var(--h-border); position: relative; z-index: 2;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-about img { max-height: 60px;} 
.footer-about p { color: var(--h-gray); font-size: 15px; margin-top: 20px; max-width: 320px; line-height: 1.6;}
.footer h4 { font-family: var(--font-head); font-size: 18px; margin-bottom: 24px; color: var(--h-dark); font-weight: 700;}
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: var(--h-gray); font-size: 15px; transition: color 0.2s; font-weight: 500;}
.footer ul li a:hover { color: var(--h-btn-green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.05); color: var(--h-gray); font-size: 14px; font-weight: 500;}
.payment-icons { display: flex; gap: 15px; align-items: center; }
.payment-icons img { height: 28px; width: auto; object-fit: contain; }

/* =========================================
   MOBILE RESPONSIVENESS (PERFECTED)
   ========================================= */
.mobile-filter-btn { display: none; }

@media (max-width: 1024px) {
    .hero-grid, .story-inner { grid-template-columns: 1fr; gap: 40px;}
    .feature-push-inner { flex-direction: column-reverse; } 
    .feature-push-image { border-left: none; border-bottom: 1px solid var(--h-border); padding: 40px; }
    .cat-grid, .product-grid, .testi-grid, .values-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .benefits-wrapper { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px;}
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    
    .nav-links { display: none; }
    .hamburger { display: block; }
    .search-box input { display: none; }
    .search-box { background: transparent; border: none; padding: 0; }
    
    .shop-container { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .mobile-filter-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--h-cream); border: 1px solid var(--h-border); padding: 10px 20px; border-radius: 12px; font-weight: 600; cursor: pointer; }
    .product-grid-single { grid-template-columns: 1fr; gap: 40px;}
    .product-gallery-main img { max-height: 400px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .top-bar { font-size: 11px; padding: 8px; }
    .header-inner { min-height: 70px; padding: 10px 0;}
    .logo img { max-height: 40px; } 
    .header-actions { gap: 15px; }

    .mobile-menu-header { margin-bottom: 30px; border-bottom: 1px solid var(--h-border); padding-bottom: 20px;}
    .mobile-menu-logo { max-height: 45px; }

    .hero { padding: 20px 0 40px; }
    .hero-grid { padding: 30px 20px; gap: 30px; border-radius: 20px; }
    .hero-badge { margin-bottom: 15px; font-size: 11px; padding: 6px 12px;}
    .hero-title { font-size: 32px; letter-spacing: -1px; margin-bottom: 15px; }
    .hero-desc { font-size: 15px; margin-bottom: 25px; }
    .hero-visual { height: 300px; border-radius: 16px; }
    .btn-primary { width: 100%; padding: 14px 20px; font-size: 15px; }
    
    .telop { padding: 10px 15px; border-radius: 10px; gap: 10px; }
    .telop-icon { width: 30px; height: 30px; }
    .telop-icon svg { width: 15px; height: 15px; }
    .telop-text h4 { font-size: 13px; }
    .telop-text p { font-size: 11px; }
    .telop-1 { top: 15px; left: -10px; }
    .telop-2 { bottom: 15px; right: -10px; }

    .categories { padding: 10px 0 30px; }
    .cat-item { padding: 20px 10px; gap: 10px; border-radius: 16px; }
    .cat-img { width: 80px; height: 80px; }
    .cat-info h3 { font-size: 16px; }
    .cat-info p { font-size: 12px; }

    .feature-push { margin: 30px 0; }
    .feature-push-inner { border-radius: 20px;}
    .feature-push-content { padding: 30px 20px; }
    .feature-push-content h2 { font-size: 28px; margin-bottom: 10px; }
    .feature-push-content .price { font-size: 24px; margin-bottom: 15px; }
    .feature-push-content p { font-size: 14px; margin-bottom: 20px; }
    .feature-push-content ul li { font-size: 13px; margin-bottom: 10px; gap: 8px;}
    .feature-push-content ul li svg { width: 18px; height: 18px; }
    .feature-push-image { padding: 20px; }

    .brands-section { padding: 20px 0 30px; }
    .brands-grid { gap: 20px; justify-content: space-evenly;}
    .brands-grid img { max-width: 80px; }

    .products { padding: 10px 0 40px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
    .section-title h2 { font-size: 28px; }
    .section-title p { font-size: 14px; }
    
    .filter-controls { width: 100%; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 5px; gap: 8px;}
    .filter-controls::-webkit-scrollbar { display: none; }
    .filter-btn { padding: 8px 16px; font-size: 13px; white-space: nowrap;}

    .product-grid, .arch-grid { gap: 15px; grid-template-columns: 1fr 1fr;}
    .product-card { padding: 15px; border-radius: 16px; }
    .card-badge { top: 10px; left: 10px; padding: 4px 8px; font-size: 10px; border-radius: 4px;}
    .card-img { height: 140px; margin-bottom: 15px; padding: 10px; border-radius: 8px;}
    .card-cat { font-size: 10px; margin-bottom: 4px; }
    .card-title { font-size: 14px; }
    .card-bottom { margin-top: 15px; padding-top: 15px; }
    .card-price { font-size: 16px; }
    .card-old-price { font-size: 11px; }
    .add-btn { width: 34px; height: 34px; border-radius: 8px;}
    .add-btn svg { width: 16px; height: 16px; }

    .story-section { padding: 30px 0 40px; }
    .story-inner { gap: 30px; }
    .story-content h2 { font-size: 32px; margin-bottom: 15px;}
    .story-content p { font-size: 15px; margin-bottom: 15px;}
    .story-image img { border-radius: 16px;}

    .testi-grid { grid-template-columns: 1fr; gap: 15px;}
    .testi-card { padding: 20px; border-radius: 16px;}
    
    .faq-section { padding: 30px 0; }
    .faq-title { font-size: 28px; margin-bottom: 30px; }
    details { border-radius: 16px;}
    summary { font-size: 15px; padding: 15px 20px; }
    .faq-content { padding: 0 20px 20px; font-size: 14px; }

    .newsletter-wrapper { padding: 30px 20px; border-radius: 20px; margin: 30px 0; gap: 15px;}
    .newsletter-wrapper h2 { font-size: 24px; }
    .newsletter-wrapper p { font-size: 14px; }
    .nl-form-box { flex-direction: column; background: transparent; padding: 0; box-shadow: none;}
    .nl-form-box input { border-radius: 12px; margin-bottom: 10px; background: #fff; padding: 15px; width: 100%;}
    .nl-form-box button { width: 100%; border-radius: 12px; padding: 15px; }
    .nl-checkbox { font-size: 12px; align-items: flex-start;}

    .benefits-section { margin: 10px 0 40px; }
    .benefits-wrapper { grid-template-columns: 1fr; padding: 20px; gap: 15px; border-radius: 20px;}
    .benefit-main h3 { font-size: 20px; margin-bottom: 15px;}
    .benefit-card { padding: 20px; border-radius: 16px;}
    .benefit-icon-img { height: 80px; }

    .footer { padding: 40px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
    .footer-about img { max-height: 50px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .payment-icons { justify-content: center; }
    
    .shop-header { padding: 20px 0; }
    .shop-title { font-size: 32px; }
    .shop-controls { flex-direction: column; align-items: flex-start; gap: 15px; padding: 15px;}
    .sort-box select { width: 100%; }
    
    .product-gallery-main { padding: 20px; border-radius: 16px; margin-bottom: 15px;}
    .product-gallery-main img { max-height: 300px; }
    .thumb-item { height: 80px; padding: 10px; border-radius: 12px;}

    .product-title-single { font-size: 32px; }
    .product-price-single { flex-direction: column; align-items: flex-start; gap: 5px; margin-bottom: 20px;}
    .price-current { font-size: 28px; }
    
    .add-to-cart-wrapper { flex-direction: column; gap: 15px; margin-bottom: 30px;}
    .qty-selector { justify-content: space-between; width: 100%; height: 50px;}
    .btn-add { width: 100%; height: 50px; font-size: 16px;}

    .trust-badges { flex-direction: column; gap: 15px; padding: 15px;}

    .product-extra-info { margin-top: 40px; }
    .tab-content { padding: 20px; font-size: 15px; }

    .related-products { padding: 40px 0; }
    
    .about-hero { padding: 30px 0 40px; }
    .about-title { font-size: 36px; }
    .about-subtitle { font-size: 15px; margin-bottom: 30px; }
    .about-image-main { height: 250px; border-radius: 16px; margin-bottom: 40px; }

    .story-text h2 { font-size: 32px; margin-bottom: 15px; }
    .story-text p { font-size: 15px; }

    .values-section { padding: 50px 0; margin-bottom: 40px;}
    .values-header h2 { font-size: 32px; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; }
    .value-card { padding: 30px 20px; }
}
/* =========================================
   O NAMA STRANICA (VALUES & STORY)
   ========================================= */
.story-text-wrapper { padding: 80px 0; }
.story-text-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.story-text-inner h2 { font-family: var(--font-head); font-size: 40px; color: var(--h-dark); margin-bottom: 24px; letter-spacing: -1px;}
.story-text-inner p { font-size: 16px; color: var(--h-gray); margin-bottom: 20px; line-height: 1.8;}
.story-text-inner strong { color: var(--h-btn-green); }

.values-section { padding: 40px 0 80px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto;}
.value-card { background: var(--h-cream); border: 1px solid var(--h-border); border-radius: 20px; padding: 30px; display: flex; align-items: center; gap: 25px; transition: var(--transition); }
.value-card:hover { border-color: var(--h-btn-green); background: #fff; box-shadow: var(--shadow-hover); transform: translateY(-3px);}

/* Ograničavanje SVG ikonica */
.value-icon { width: 60px; height: 60px; min-width: 60px; background: rgba(26, 60, 52, 0.08); border-radius: 16px; display: flex; justify-content: center; align-items: center; color: var(--h-btn-green);}
.value-icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 2;}

.value-content h4 { font-family: var(--font-head); font-size: 19px; color: var(--h-dark); margin-bottom: 8px; font-weight: 700;}
.value-content p { font-size: 15px; color: var(--h-gray); line-height: 1.6; margin: 0;}

@media (max-width: 768px) {
    .story-text-wrapper { padding: 50px 0; }
    .story-text-inner h2 { font-size: 30px; }
    .values-section { padding: 20px 0 50px; }
    .values-grid { grid-template-columns: 1fr; gap: 20px;}
    .value-card { flex-direction: column; text-align: center; gap: 15px; padding: 25px 20px;}
}
/* =========================================
   OFF-CANVAS MINI KORPA (SLIDE-OUT)
   ========================================= */
.mini-cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px); z-index: 99998; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.mini-cart-overlay.active { opacity: 1; visibility: visible; }

.mini-cart-sidebar { position: fixed; top: 0; right: -450px; width: 400px; max-width: 100%; height: 100vh; background: #fff; z-index: 99999; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; }
.mini-cart-sidebar.active { right: 0; }

.mini-cart-header { display: flex; justify-content: space-between; align-items: center; padding: 25px; border-bottom: 1px solid var(--h-border); background: var(--h-cream); }
.mini-cart-header h3 { font-family: var(--font-head); font-size: 20px; color: var(--h-dark); margin: 0; }
.close-mini-cart { color: var(--h-gray); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; background: #fff; width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow-soft); }
.close-mini-cart:hover { color: var(--h-red); transform: rotate(90deg); }

.widget_shopping_cart_content { padding: 25px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; }
.woocommerce-mini-cart { list-style: none; padding: 0; margin: 0; flex: 1; }
.woocommerce-mini-cart-item { display: flex; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid var(--h-border); padding-bottom: 20px; align-items: center; }
.woocommerce-mini-cart-item img { width: 70px; height: 70px; object-fit: contain; border-radius: 12px; background: var(--h-cream); border: 1px solid var(--h-border); }
.woocommerce-mini-cart-item a.remove { color: var(--h-red) !important; font-size: 24px; font-weight: bold; text-decoration: none; margin-left: auto; transition: var(--transition); }
.woocommerce-mini-cart-item a.remove:hover { transform: scale(1.2); }
.woocommerce-mini-cart-item a:not(.remove) { font-weight: 600; color: var(--h-dark); text-decoration: none; font-size: 15px; display: block; margin-bottom: 5px; line-height: 1.4; }
.woocommerce-mini-cart-item .quantity { color: var(--h-gray); font-size: 14px; }

.woocommerce-mini-cart__total { border-top: 2px solid var(--h-border); padding-top: 20px; display: flex; justify-content: space-between; font-weight: 700; font-size: 18px; color: var(--h-dark); margin-top: auto; }
.woocommerce-mini-cart__buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.woocommerce-mini-cart__buttons a { display: block; text-align: center; padding: 16px; border-radius: 12px; font-family: var(--font-head); font-weight: 700; text-decoration: none; transition: var(--transition); font-size: 16px; }
.woocommerce-mini-cart__buttons a.button:not(.checkout) { background: var(--h-cream); color: var(--h-dark); border: 1px solid var(--h-border); }
.woocommerce-mini-cart__buttons a.button.checkout { background: var(--h-btn-green); color: #fff; }
.woocommerce-mini-cart__buttons a:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
/* --- POPRAVKA ZA FEATURE-PUSH BULLETS I DUGME --- */
.short-desc-bullets ul {
    margin-bottom: 30px !important;
}

.feature-push-content .btn-primary {
    align-self: flex-start !important;
}

/* --- POPRAVKA ZA FAQ ICON I HOVER U BENEFITS --- */
details summary::-webkit-details-marker {
    display: none;
}

details[open] summary .faq-icon {
    transform: rotate(45deg);
}

.benefits-wrapper .benefit-main .btn-primary:hover {
    background-color: #15312a !important; /* Boja za hover */
    transform: scale(1.03) !important;
}

.HK-circle {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}
/* ==========================================
   MOJ NALOG (WOOCOMMERCE LOGIN & FORME)
   ========================================== */
.woocommerce-account .woocommerce {
    max-width: 800px;
    width: 90% !important; /* <--- Dodato da diše na svim ekranima */
    margin: 60px auto !important; /* <--- Odvaja formu od headera i footera */
    background: var(--h-surface);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--h-border);
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        width: 92% !important; /* <--- Savršeno za mobilni */
        margin: 40px auto !important;
        padding: 35px 25px !important;
        border-radius: 16px;
    }
}