/* =========================================
   БЕЛО HEADER МЕНИ + HOVER + MEGA MENU
========================================= */
/* Ги крие точките комплетно на десктоп за да не го рушат flex распоредот */
.swiper-dots {
    display: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: #111;
}

/* HEADER - СРЕДЕН ДА Е НАЈГОРЕ И УПАЛЕН ЦЕЛО ВРЕМЕ */
.site-header {
    position: fixed; /* Стои фиксно додека скролаш */
    top: 0; /* Залепен најгоре */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    z-index: 1000;
    background-color: #ffffff; /* Упален цело време */
    color: #000000; /* Црн текст */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Мала сенка за убав изглед */
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease;
}

.site-header.hide-header {
    transform: translateY(-120%);
    opacity: 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    color: black;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    font-family: 'Cormorant Garamond', serif;
    color: inherit;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.icon-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: transform 0.2s ease;
}

.icon-btn:hover {
    transform: scale(1.05);
}

/* =========================================
   MEGA MENU
========================================= */
.clothing-wrapper,
.tailoring-wrapper,
.occasion-wrapper {
    display: inline-block;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 40px 8% 60px 8%;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.clothing-wrapper:hover .mega-menu,
.tailoring-wrapper:hover .mega-menu,
.occasion-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, visibility 0s linear 0s;
}

.clothing-wrapper:hover > a,
.tailoring-wrapper:hover > a,
.occasion-wrapper:hover > a {
    text-decoration: underline !important;
    text-underline-offset: 6px;
    cursor: pointer !important;
    color: #000000 !important;
}

.clothing-wrapper > a,
.tailoring-wrapper > a,
.occasion-wrapper > a {
    position: relative;
    cursor: pointer !important;
}

.clothing-wrapper > a::after,
.tailoring-wrapper > a::after,
.occasion-wrapper > a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    z-index: 998;
}

/* CLOTHING MENU */
.mega-menu-left { display: flex; gap: 120px; }
.mega-menu-column { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.mega-menu-column h4 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 5px; color: #000000; }
.mega-menu-column a { font-family: 'Inter', sans-serif !important; font-size: 14px !important; letter-spacing: 1.5px !important; color: #555555 !important; font-weight: 400 !important; text-decoration: none; transition: color 0.3s ease !important; }
.mega-menu-column a:hover { color: #000000 !important; opacity: 1 !important; }
.mega-menu-right { display: flex; gap: 30px; }
.mega-img-wrapper { width: 250px; height: 330px; overflow: hidden; }
.mega-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mega-img-wrapper:hover img { transform: scale(1.04); }

/* TAILORING MENU */
.tailoring-grid { display: flex; gap: 30px; width: 100%; justify-content: center; }
.tailoring-card { position: relative; flex: 1; max-width: 380px; height: 330px; overflow: hidden; display: block; text-decoration: none; }
.tailoring-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tailoring-card:hover img { transform: scale(1.04); }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%); z-index: 1; pointer-events: none; }
.card-title { position: absolute; bottom: 25px; left: 30px; color: #ffffff; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; letter-spacing: 1px; z-index: 2; }

/* OCCASION MENU */
.occasion-left { width: 25%; }
.occasion-right { display: flex; gap: 30px; justify-content: flex-end; }
.occasion-card { position: relative; width: 250px; height: 330px; overflow: hidden; display: block; text-decoration: none; }
.occasion-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.occasion-card:hover img { transform: scale(1.04); }
.occasion-card .card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 40%; background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%); z-index: 1; pointer-events: none; }
.occasion-card .card-title { position: absolute; bottom: 20px; right: 20px; color: #ffffff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; z-index: 2; }

/* =========================================
   ПРОДУКТ СЕКЦИЈА
========================================= */
.product-section {
    display: flex;
    align-items: flex-start;
    width: 100%;
    background-color: #ffffff; 
}

.product-images {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.product-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.product-details {
    flex: 1; 
    position: sticky; 
    top: 100px; 
    padding: 60px 5% 60px 5%; 
}

.details-content {
    max-width: 500px;
    margin: 0 auto; 
}

.product-title {
    font-family: 'Cormorant Garamond', serif; 
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.color-selection {
    font-family: 'Inter', sans-serif;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.color-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.color-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative;
}

.color-btn.active::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
}

.color-btn.grey { background-color: #8a8d91; }
.color-btn.navy { background-color: black; }

.size-selection {
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}

.size-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.size-guide {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.size-btn:hover:not(.disabled) {
    border-color: #1a1a1a;
}

.size-btn.selected {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.size-btn.disabled {
    color: #ccc;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.size-btn.disabled::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ccc;
    top: 50%;
    left: 0;
    transform: rotate(-45deg);
}

.size-recommendation {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    padding: 15px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.size-recommendation strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.add-to-cart-btn {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding: 18px;
    background-color: #151b22;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 40px;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #2a3644;
}

/* =========================================
   АНИМИРАНИ ТАБОВИ
========================================= */
.accordion-tabs {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.tab {
    background: none;
    border: none;
    padding-bottom: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #888; 
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease;
}

.tab:hover {
    color: #1a1a1a;
}

.tab.active {
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.accordion-content-wrapper {
    position: relative;
    min-height: 160px; 
}

.tab-pane {
    display: none; 
}

.tab-pane p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.tab-pane p strong {
    color: #1a1a1a;
    font-weight: 500;
}

.tab-pane .sku {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #888;
}

.tab-pane.active {
    display: block;
    animation: fadeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   СЛИЧНИ ПРОДУКТИ (SIMILAR PRODUCTS)
========================================= */
.similar-products {
    background-color: #ffffff;
    padding: 100px 5% 80px 5%;
    border-top: 1px solid #f0f0f0;
}

.similar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.similar-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto;
}

.similar-card {
    flex: 1;
    max-width: 400px;
    text-decoration: none;
    display: block;
    color: #1a1a1a;
}

.similar-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    margin-bottom: 25px;
}

.similar-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.similar-card:hover .similar-img-wrapper img {
    transform: scale(1.04);
}

.similar-info {
    text-align: center;
}

.similar-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.similar-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
}

/* РЕСПОНЗИВНОСТ (МОБИЛЕН) */
@media (max-width: 900px) {
    .product-section {
        flex-direction: column;
    }
    
    .product-details {
        position: static; 
        width: 100%;
        padding: 40px 20px;
    }
    
    .product-images {
        width: 100%;
    }
    
    .similar-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .similar-card {
        width: 100%;
    }
}

/* =========================================
   СЕКЦИЈА: ФУТЕР (FOOTER)
========================================= */
.site-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 160px 8% 30px 8%; 
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.newsletter-box {
    display: flex;
    border: 1px solid #000000;
    max-width: 300px;
    height: 45px;
}

.newsletter-input {
    flex: 1;
    padding: 0 15px;
    border: none;
    outline: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #333;
}

.newsletter-btn {
    background: transparent;
    border: none;
    border-left: 1px solid #000000;
    padding: 0 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #000000;
    text-decoration: none;
    position: relative;
    width: fit-content;
    font-weight: 400;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 30px;
}

.bottom-left, 
.bottom-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.bottom-center {
    display: flex;
    gap: 40px; 
    align-items: center;
}

.bottom-center p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #000000;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link::after {
    display: none;
}

.social-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.social-icon {
    width: 22px;
    height: 22px;
}
/* ========================================= */
/* --- SEARCH PANEL (RIGHT SLIDER) --- */
/* ========================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 10005; 
    transition: opacity 0.5s ease;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-panel {
    position: fixed;
    top: 0;
    right: -100%; 
    left: auto;
    width: 600px; 
    max-width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 10006;
    transition: right 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 80px 60px; 
    display: flex;
    flex-direction: column;
    color: #000000;
    box-shadow: -10px 0 40px rgba(0,0,0,0.06); 
}

.search-panel.active {
    right: 0; 
}

.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    position: absolute;
    top: 45px;
    right: 50px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    padding: 10px;
}

.search-close-btn:hover {
    transform: rotate(90deg);
    opacity: 0.5;
}

.search-content {
    margin-top: 80px;
}

.search-title {
    font-family: 'Inter', sans-serif; 
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: #666666;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5; 
    padding-bottom: 15px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; 
    color: #000000;
    background: transparent;
}

.search-input::placeholder {
    color: #cccccc;
    font-style: italic;
    font-weight: 300;
}

.search-submit-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    padding-left: 20px;
    transition: opacity 0.3s ease;
}

.search-submit-btn:hover {
    opacity: 0.5;
}

.search-suggestions {
    margin-top: 50px; 
}

.suggestions-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888888; 
    margin-bottom: 25px;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px; 
}

.suggestions-list li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; 
    color: #000000;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.suggestions-list li a:hover {
    opacity: 0.5;
    transform: translateX(8px);
}

/* ========================================= */
/* --- CART PANEL (SHOPPING BAG) --- */
/* ========================================= */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transition: .4s;
    z-index: 10005;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 10006;
    transition: right .6s ease;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px 20px;
    border-bottom: 1px solid #eeeeee;
}

.cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #000000;
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    transition: transform 0.4s ease, opacity 0.3s ease;
    padding: 5px;
}

.cart-close-btn:hover {
    transform: rotate(90deg);
    opacity: 0.5;
}

.cart-content {
    flex: 1;
    padding: 30px 50px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.cart-item-img-wrapper {
    width: 120px;
    height: 160px;
    background-color: #f9f9f9;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.cart-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.cart-item-meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #777777;
    margin-bottom: 5px;
}

.cart-item-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #dddddd;
}

.qty-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #000000;
    transition: background-color 0.3s;
}

.qty-btn:hover {
    background-color: #f0f0f0;
}

.qty-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 0 10px;
}

.cart-item-remove {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #000000;
}

.cart-footer {
    padding: 30px 50px;
    border-top: 1px solid #eeeeee;
    background-color: #ffffff;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-shipping-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #777777;
    margin-bottom: 25px;
}

.cart-checkout-btn {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cart-checkout-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
========================================= */
@media (max-width: 991px) {
    /* HEADER ADJUSTMENTS - Spored prvprimer.JPG */
    .site-header {
        padding: 20px 25px;
    }
    
    .nav-links, .desktop-profile {
        display: none !important;
    }

    .mobile-hamburger {
        display: flex !important;
    }
    
    .logo {
        font-size: 26px;
    }

    /* PRODUCT SECTION FIXES */
    .product-details {
        padding: 30px 20px;
    }

    /* FOOTER FIXES */
    .site-footer {
        padding: 80px 20px 30px 20px;
    }
    .footer-top, .footer-bottom, .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    /* CART PANEL ADJUSTMENTS - Spored vtor primer.JPG */
    .cart-panel {
        width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 25px 20px;
    }
    
    .cart-title {
        font-size: 28px;
    }

    .cart-content {
        padding: 20px;
    }

    .cart-item {
        gap: 15px;
    }

    .cart-item-img-wrapper {
        width: 130px;
        height: 150px;
    }

    .cart-item-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .cart-item-name {
        font-size: 20px;
        line-height: 1.2;
        max-width: 60%;
    }

    .price-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .currency {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .cart-item-price {
        font-size: 16px;
    }

    .cart-item-meta {
        font-size: 14px;
        color: #888;
    }

    .cart-item-bottom {
        align-items: center;
        margin-top: 15px;
    }

    .cart-footer {
        padding: 20px;
    }

    .cart-subtotal {
        font-size: 18px;
        font-weight: 500;
    }
    /* =========================================
       SWIPE ГАЛЕРИЈА ЗА СЛИКИ (МОБИЛЕН)
    ========================================= */
    .product-images {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Овозможува snap ефект при swipe */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; /* Мазно скролање за iOS */
        scrollbar-width: none; /* Криење на скролбарот за Firefox */
        width: 100%;
        gap: 0;
    }

    /* Криење на скролбарот за Chrome, Safari, Edge */
    .product-images::-webkit-scrollbar {
        display: none;
    }

    .product-images img {
        width: 100%; /* Секоја слика зема 100% од екранот */
        flex: 0 0 100%;
        scroll-snap-align: center; /* Сликата застанува точно на средина */
        object-fit: cover;
    }
/* Ги палиме точките само на мобилен и ги позиционираме под сликата */
    .swiper-dots {
        display: flex; 
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 15px 0;
        background-color: #ffffff;
        width: 100%;
    }

.dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #cccccc;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

.dot.active {
        background-color: #000000;
        transform: scale(1.2);
    }
    /* ... остатокот од твојот мобилен CSS ... */

}
/* Wrapper-от за сликите */
.product-images-wrapper {
    position: relative;
    width: 100%;
}

/* Комплетно ги крие крукчињата на десктоп верзијата */
.swiper-dots {
    display: none; 
}
/* =========================================
   MOBILE MENU PANEL (tret primer.JPG & kateg.JPG)
========================================= */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%; /* Променето од left на right за да се крие од десно */
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 10006;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Мазна транзиција од десно */
    overflow-y: auto;
}

.mobile-menu-panel.active {
    right: 0; /* Променето од left на right за да влезе на екранот */
}

.mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    letter-spacing: 4px;
    color: #000;
    text-decoration: none;
    margin-left: -15px;
}

.mobile-icon, .mobile-close-btn {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.mobile-menu-content {
    padding: 0 25px;
}

.mobile-accordion-btn, .mobile-single-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    text-decoration: none;
}

.caret {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.mobile-accordion.active .caret {
    transform: rotate(180deg);
}

.mobile-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #fafafa;
    padding: 0 15px;
    margin: 0 -25px;
}

.mobile-accordion.active .mobile-accordion-body {
    max-height: 1000px;
    padding: 20px 40px;
}

.mobile-accordion-body a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    margin-bottom: 15px;
}

.mob-cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #000;
}

.mob-cat-images {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.mob-cat-images img {
    width: 50%;
    height: auto;
    object-fit: cover;
}