* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header { 
    background: #131921; 
    color: white; 
    padding: 1rem 0; 
    position: sticky; 
    top: 0; 
    z-index: 999; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); 
}

header a { 
    text-decoration: none; 
    color: white; 
    transition: all 0.3s; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
}

header a:hover { 
    color: #ff9900; 
}

.header-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    max-width: 1600px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    gap: 3rem;
}

.logo { 
    font-weight: bold; 
    font-size: 1.3rem; 
    min-width: fit-content;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar-left { 
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu { 
    display: flex; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    gap: 3rem; 
    align-items: center;
    justify-content: center;
}

.nav-menu li a { 
    font-size: 0.95rem; 
    font-weight: 500; 
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-menu li a:hover {
    background: rgba(255, 153, 0, 0.1);
    color: #ff9900;
}

.nav-menu li a i { 
    font-size: 1.1rem; 
}

.header-right { 
    display: flex; 
    gap: 2rem; 
    align-items: center; 
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link { 
    font-size: 0.95rem; 
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(255, 153, 0, 0.1);
    color: #ff9900;
}

.nav-link i { 
    font-size: 1.1rem; 
}

/* ===== PROFILIS DROPDOWN ===== */
.profile-dropdown { 
    position: relative; 
}

.profile-btn { 
    background: none; 
    border: none; 
    color: white; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    font-size: 0.95rem; 
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s;
    border-radius: 6px;
}

.profile-btn:hover { 
    background: rgba(255, 153, 0, 0.1);
    color: #ff9900; 
}

.profile-btn i { 
    font-size: 1.1rem; 
}

.dropdown-menu { 
    position: absolute; 
    top: 100%; 
    right: 0; 
    background: white; 
    border-radius: 8px; 
    min-width: 200px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.active { 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem;
    padding: 0.85rem 1.25rem; 
    color: #0f1111; 
    text-decoration: none; 
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover { 
    background: #f3f4f6;
    color: #667eea;
}

.dropdown-item i { 
    font-size: 1rem;
    min-width: 20px;
}

.cart-btn { 
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.cart-btn:hover {
    background: rgba(255, 153, 0, 0.1);
}

.cart-badge { 
    position: absolute; 
    top: -8px; 
    right: -8px; 
    background: #ff9900; 
    color: white; 
    border-radius: 50%; 
    width: 22px; 
    height: 22px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.75rem; 
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===== MOBILŪS HEADER STILIAI ===== */
@media (max-width: 1024px) {
    .header-container { 
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .nav-menu { 
        gap: 2rem; 
    }
    
    .header-right { 
        gap: 1.5rem; 
    }
}

@media (max-width: 768px) {
    .header-container { 
        padding: 0 1rem; 
        gap: 1rem;
    }
    
    .navbar-left { 
        flex: 1;
        justify-content: center;
    }
    
    .nav-menu { 
        gap: 1rem; 
    }
    
    .nav-menu li a span,
    .nav-link span,
    .profile-btn span {
        display: none;
    }
    
    .header-right { 
        gap: 1rem; 
    }
    
    .nav-menu li a,
    .nav-link,
    .profile-btn {
        padding: 0.4rem;
    }
    
    .nav-menu li a i,
    .nav-link i,
    .profile-btn i,
    .cart-btn i { 
        font-size: 1.2rem; 
    }
    
    .dropdown-menu {
        right: -1rem;
    }
}

@media (max-width: 480px) {
    .header-container { 
        gap: 0.75rem; 
        padding: 0 0.5rem;
    }
    
    .logo img { 
        height: 35px; 
    }
    
    .nav-menu { 
        gap: 0.75rem; 
    }
    
    .header-right { 
        gap: 0.75rem; 
    }
}

/* Footer Styles */
footer {
    background: #131921;
    color: white;
    padding: 3rem 20px 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ff9900;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff9900;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.footer-socials a:hover {
    background: #ff9900;
    color: #131921;
}

/* Main Content */
main {
    flex: 1;
    padding: 40px 0;
}

/* Form Styles */
.form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
}

.form-card h1,
.form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #0f1111;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #0f1111;
    font-size: 0.95rem;
}

.form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Button Styles */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-block {
    width: 100%;
}

/* Alert Styles */
.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border-left: 4px solid #3c3;
    flex-direction: column;
    text-align: center;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    line-height: 1.6;
}

.form-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Produkto kortos stiliai */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 240px;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    background: #ffffff;
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f0f0f0;
}

.product-info h4 {
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    color: #0f1111;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.5rem;
    color: #b12704;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card .btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(90deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    text-align: center;
    display: block;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ===== KREPŠELIS ===== */
.cart-section { margin: 2rem 0; }
.cart-items { margin: 2rem 0; }

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 4px;
}

.ci-info { display: flex; flex-direction: column; gap: 0.5rem; }
.ci-title { font-weight: 600; color: #0f1111; font-size: 1rem; }
.ci-options { font-size: 0.9rem; color: #6b7280; }
.ci-price { font-size: 1.1rem; font-weight: 700; color: #667eea; }

.ci-actions { display: flex; align-items: center; gap: 0.5rem; }

.qty-btn { 
    width: 32px; 
    height: 32px; 
    border: 1px solid #cbd5e1; 
    background: white; 
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: bold; 
    transition: all 0.3s; 
}
 qty-btn:hover { background: #f3f4f6; }

.qty-value { 
    min-width: 45px; 
    text-align: center; 
    font-weight: 700;
    font-size: 1.2rem;
    color: #0f1111;
    padding: 0 0.5rem;
}

.remove-btn { 
    width: 32px; 
    height: 32px; 
    border: 1px solid #ef4444; 
    background: white; 
    color: #ef4444; 
    border-radius: 4px; 
    cursor: pointer; 
    margin-left: 0.5rem; 
    transition: all 0.3s; 
}
.remove-btn:hover { background: #ef4444; color: white; }

.cart-summary { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid #e5e7eb; }
.cart-summary h3 { font-size: 1.3rem; color: #0f1111; margin-bottom: 0.75rem; }
.cart-summary h2 { font-size: 1.8rem; color: #667eea; font-weight: 700; }

.login-alert {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.login-alert h3 { color: #92400e; margin: 0 0 0.75rem 0; font-size: 1.2rem; }
.login-alert p { color: #b45309; margin: 0 0 1rem 0; font-size: 0.95rem; }

.login-alert-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.login-alert .btn { padding: 0.75rem 1.5rem; font-size: 0.95rem; }

.delivery-info {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.delivery-info h4 { margin: 0 0 0.75rem 0; color: #374151; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.delivery-info p { margin: 0.25rem 0; color: #6b7280; font-size: 0.95rem; line-height: 1.6; }
.delivery-info strong { color: #0f1111; }

.edit-link { display: inline-block; margin-top: 0.75rem; color: #667eea; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.edit-link:hover { text-decoration: underline; }

.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.warning-box h4 { margin: 0 0 0.5rem 0; color: #92400e; font-size: 1rem; }
.warning-box p { margin: 0 0 0.75rem 0; color: #b45309; font-size: 0.9rem; }
.warning-box a { display: inline-block; padding: 0.5rem 1rem; background: #f59e0b; color: white; border-radius: 6px; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.warning-box a:hover { background: #d97706; }

.delivery-methods {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.delivery-methods h4 { margin: 0 0 1rem 0; color: #374151; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }

.delivery-method-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-method-option:hover { border-color: #667eea; background: #f0f4ff; }
.delivery-method-option input[type="radio"] { margin-right: 1rem; cursor: pointer; width: 18px; height: 18px; }

.delivery-method-info { flex: 1; }
.delivery-method-name { font-weight: 600; color: #0f1111; font-size: 0.95rem; }
.delivery-method-desc { font-size: 0.85rem; color: #6b7280; margin-top: 0.25rem; }
.delivery-method-price { font-size: 1.1rem; font-weight: 700; color: #667eea; min-width: 80px; text-align: right; }

.testi-apsipirkima { margin-top: 1rem; }

/* ===== PRODUKTO DETALIŲ PUSLAPIS ===== */
.product-detail { 
    display: flex; 
    gap: 1.5rem; 
    margin: 1.5rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-images { 
    flex: 0 0 35%; 
    max-width: 380px;
}

.product-info-detail { 
    flex: 1; 
    min-width: 0;
}

.main-image { 
    margin-bottom: 0.75rem; 
}

.main-image img { 
    width: 100%; 
    height: auto; 
    max-height: 400px; 
    border-radius: 10px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
    object-fit: contain; 
    cursor: zoom-in;
}

.thumbnail-images { 
    display: flex; 
    gap: 6px; 
    margin-top: 0.5rem; 
    flex-wrap: wrap; 
}

.thumbnail { 
    width: 65px; 
    height: 65px; 
    object-fit: contain; 
    border-radius: 6px; 
    border: 2px solid #e0e7ff; 
    cursor: pointer; 
    transition: all 0.3s; 
    padding: 2px; 
    background: white; 
    flex-shrink: 0;
}

.thumbnail:hover { 
    border-color: #667eea; 
    transform: scale(1.05); 
}

.thumbnail.active { 
    border-color: #667eea; 
    box-shadow: 0 0 6px rgba(102,126,234,0.3); 
}

/* ===== PRODUKTO NUOTRAUKOS PADIDINIMAS ===== */
.image-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 17, 0.88);
    backdrop-filter: blur(2px);
    z-index: 4000;
    padding: 20px;
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox-content {
    width: min(96vw, 1200px);
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-content img {
    max-width: 100%;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.2s ease;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.06);
}

body.lightbox-open {
    overflow: hidden;
}

/* ===== PRODUKTO INFORMACIJA ===== */
.product-info-detail h1 { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #0f1111; 
    margin-bottom: 0.5rem; 
    line-height: 1.3;
}

.title-row { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin-bottom: 0.5rem; 
}

.category-row { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    flex-wrap: wrap; 
    margin-bottom: 0.75rem; 
}

.category-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 0.45rem 0.9rem; 
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    color: #4f46e5; 
    border-radius: 20px; 
    font-weight: 600; 
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.08);
}

.category-badge i { 
    font-size: 0.95rem; 
}

/* ===== CENA ===== */
.price-info { 
    display: flex; 
    align-items: baseline; 
    gap: 1rem; 
    margin: 0.75rem 0; 
    padding: 0.75rem 0.9rem; 
    background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
    flex-wrap: wrap;
}

.total-price { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: #667eea;
}

.base-price { 
    font-size: 0.8rem; 
    color: #9ca3af; 
    text-decoration: line-through; 
}

.price-with-vat {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.price-with-vat span {
    color: #667eea;
    font-weight: 600;
}

.price-without-vat {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.price-without-vat span {
    color: #9ca3af;
    font-weight: 600;
}

/* ===== SANDĖLIO STATUSAS ===== */
.stock-status { 
    margin: 0.5rem 0; 
}

.in-stock { 
    color: #059669; 
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 0.85rem;
}

.in-stock i { 
    font-size: 1rem;
}

.out-of-stock { 
    color: #dc2626; 
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 0.85rem;
}

.out-of-stock i { 
    font-size: 1rem;
}

/* ===== PASIRINKIMAI (VARIANTAI) ===== */
.product-options { 
    margin: 1rem 0; 
    padding: 0.9rem; 
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 8px; 
    border: 1px solid #e5e7eb;
}

.product-options h3 { 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: #0f1111; 
    margin-bottom: 0.65rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
}

.product-options h3 i {
    color: #667eea;
    font-size: 1rem;
}

.option-group { 
    margin-bottom: 0.8rem; 
}

.option-group:last-child { 
    margin-bottom: 0; 
}

.option-label { 
    display: block; 
    font-weight: 700; 
    color: #1f2937; 
    margin-bottom: 0.4rem; 
    font-size: 0.85rem;
    text-transform: capitalize;
}

.option-select { 
    margin-top: 0.2rem; 
}

.option-select-input { 
    width: 100%; 
    padding: 0.6rem 0.8rem; 
    border: 2px solid #e5e7eb; 
    border-radius: 6px; 
    background: white; 
    font-size: 0.85rem; 
    color: #111827;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    padding-right: 2.3rem;
}

.option-select-input:hover { 
    border-color: #667eea;
    background-color: #f0f4ff;
}

.option-select-input:focus { 
    border-color: #667eea; 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 
}

/* ===== MYGTUKA STILIAI ===== */
.product-actions { 
    display: flex; 
    gap: 0.65rem; 
    margin: 1.25rem 0; 
    flex-wrap: wrap; 
}

.btn-large { 
    padding: 0.8rem 1.2rem; 
    font-size: 0.9rem; 
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
}

.btn-primary:not(:disabled) { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.btn-primary:not(:disabled):hover { 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.35);
}

.btn-secondary { 
    background: #e5e7eb;
    color: #6b7280;
}

.btn-secondary:hover:not(:disabled) { 
    background: #d1d5db;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== APRAŠYMAS (PILNAS PLOTIS) ===== */
.product-description-wide {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: none;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-description-wide h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.product-description-wide p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { 
    margin: 0.75rem 0; 
    padding: 0.65rem 0.75rem; 
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 6px; 
    font-size: 0.8rem;
    border-left: 4px solid #667eea;
}

.breadcrumb a { 
    color: #667eea; 
    text-decoration: none; 
    font-weight: 600;
    transition: all 0.3s;
}

.breadcrumb a:hover { 
    color: #764ba2;
    text-decoration: underline; 
}

.breadcrumb span { 
    color: #6b7280;
    font-weight: 600;
}

/* ===== BADGE'AI ===== */
.product-badge { 
    display: inline-flex; 
    align-items: center; 
    padding: 0.45rem 0.8rem; 
    border-radius: 18px; 
    font-weight: 700; 
    font-size: 0.7rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-new { 
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.badge-popular { 
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #be185d;
}

.badge-sale { 
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
}

.badge-default { 
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    color: #4f46e5;
}

/* ===== HEADER STILIAI ===== */
header { 
    background: #131921; 
    color: white; 
    padding: 1rem 0; 
    position: sticky; 
    top: 0; 
    z-index: 999; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); 
}

header a { 
    text-decoration: none; 
    color: white; 
    transition: all 0.3s; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
}

header a:hover { 
    color: #ff9900; 
}

.header-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    max-width: 1600px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    gap: 3rem;
}

.logo { 
    font-weight: bold; 
    font-size: 1.3rem; 
    min-width: fit-content;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar-left { 
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu { 
    display: flex; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    gap: 3rem; 
    align-items: center;
    justify-content: center;
}

.nav-menu li a { 
    font-size: 0.95rem; 
    font-weight: 500; 
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-menu li a:hover {
    background: rgba(255, 153, 0, 0.1);
    color: #ff9900;
}

.nav-menu li a i { 
    font-size: 1.1rem; 
}

.header-right { 
    display: flex; 
    gap: 2rem; 
    align-items: center; 
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link { 
    font-size: 0.95rem; 
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(255, 153, 0, 0.1);
    color: #ff9900;
}

.nav-link i { 
    font-size: 1.1rem; 
}

/* ===== PROFILIS DROPDOWN ===== */
.profile-dropdown { 
    position: relative; 
}

.profile-btn { 
    background: none; 
    border: none; 
    color: white; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    font-size: 0.95rem; 
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s;
    border-radius: 6px;
}

.profile-btn:hover { 
    background: rgba(255, 153, 0, 0.1);
    color: #ff9900; 
}

.profile-btn i { 
    font-size: 1.1rem; 
}

.dropdown-menu { 
    position: absolute; 
    top: 100%; 
    right: 0; 
    background: white; 
    border-radius: 8px; 
    min-width: 200px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.active { 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem;
    padding: 0.85rem 1.25rem; 
    color: #0f1111; 
    text-decoration: none; 
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover { 
    background: #f3f4f6;
    color: #667eea;
}

.dropdown-item i { 
    font-size: 1rem;
    min-width: 20px;
}

.cart-btn { 
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.cart-btn:hover {
    background: rgba(255, 153, 0, 0.1);
}

.cart-badge { 
    position: absolute; 
    top: -8px; 
    right: -8px; 
    background: #ff9900; 
    color: white; 
    border-radius: 50%; 
    width: 22px; 
    height: 22px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.75rem; 
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===== MOBILŪS HEADER STILIAI ===== */
@media (max-width: 1024px) {
    .header-container { 
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .nav-menu { 
        gap: 2rem; 
    }
    
    .header-right { 
        gap: 1.5rem; 
    }
}

@media (max-width: 768px) {
    .header-container { 
        padding: 0 1rem; 
        gap: 1rem;
    }
    
    .navbar-left { 
        flex: 1;
        justify-content: center;
    }
    
    .nav-menu { 
        gap: 1rem; 
    }
    
    .nav-menu li a span,
    .nav-link span,
    .profile-btn span {
        display: none;
    }
    
    .header-right { 
        gap: 1rem; 
    }
    
    .nav-menu li a,
    .nav-link,
    .profile-btn {
        padding: 0.4rem;
    }
    
    .nav-menu li a i,
    .nav-link i,
    .profile-btn i,
    .cart-btn i { 
        font-size: 1.2rem; 
    }
    
    .dropdown-menu {
        right: -1rem;
    }
}

@media (max-width: 480px) {
    .header-container { 
        gap: 0.75rem; 
        padding: 0 0.5rem;
    }
    
    .logo img { 
        height: 35px; 
    }
    
    .nav-menu { 
        gap: 0.75rem; 
    }
    
    .header-right { 
        gap: 0.75rem; 
    }
}

/* Footer Styles */
footer {
    background: #131921;
    color: white;
    padding: 3rem 20px 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ff9900;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff9900;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.footer-socials a:hover {
    background: #ff9900;
    color: #131921;
}

/* Main Content */
main {
    flex: 1;
    padding: 40px 0;
}

/* Form Styles */
.form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
}

.form-card h1,
.form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #0f1111;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #0f1111;
    font-size: 0.95rem;
}

.form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Button Styles */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-block {
    width: 100%;
}

/* Alert Styles */
.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border-left: 4px solid #3c3;
    flex-direction: column;
    text-align: center;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    line-height: 1.6;
}

.form-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Produkto kortos stiliai */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 240px;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    background: #ffffff;
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f0f0f0;
}

.product-info h4 {
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    color: #0f1111;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.5rem;
    color: #b12704;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card .btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(90deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    text-align: center;
    display: block;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ===== KREPŠELIS ===== */
.cart-section { margin: 2rem 0; }
.cart-items { margin: 2rem 0; }

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 4px;
}

.ci-info { display: flex; flex-direction: column; gap: 0.5rem; }
.ci-title { font-weight: 600; color: #0f1111; font-size: 1rem; }
.ci-options { font-size: 0.9rem; color: #6b7280; }
.ci-price { font-size: 1.1rem; font-weight: 700; color: #667eea; }

.ci-actions { display: flex; align-items: center; gap: 0.5rem; }

.qty-btn { 
    width: 32px; 
    height: 32px; 
    border: 1px solid #cbd5e1; 
    background: white; 
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: bold; 
    transition: all 0.3s; 
}
 qty-btn:hover { background: #f3f4f6; }

.qty-value { 
    min-width: 45px; 
    text-align: center; 
    font-weight: 700;
    font-size: 1.2rem;
    color: #0f1111;
    padding: 0 0.5rem;
}

.remove-btn { 
    width: 32px; 
    height: 32px; 
    border: 1px solid #ef4444; 
    background: white; 
    color: #ef4444; 
    border-radius: 4px; 
    cursor: pointer; 
    margin-left: 0.5rem; 
    transition: all 0.3s; 
}
.remove-btn:hover { background: #ef4444; color: white; }

.cart-summary { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid #e5e7eb; }
.cart-summary h3 { font-size: 1.3rem; color: #0f1111; margin-bottom: 0.75rem; }
.cart-summary h2 { font-size: 1.8rem; color: #667eea; font-weight: 700; }

.login-alert {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.login-alert h3 { color: #92400e; margin: 0 0 0.75rem 0; font-size: 1.2rem; }
.login-alert p { color: #b45309; margin: 0 0 1rem 0; font-size: 0.95rem; }

.login-alert-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.login-alert .btn { padding: 0.75rem 1.5rem; font-size: 0.95rem; }

.delivery-info {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.delivery-info h4 { margin: 0 0 0.75rem 0; color: #374151; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.delivery-info p { margin: 0.25rem 0; color: #6b7280; font-size: 0.95rem; line-height: 1.6; }
.delivery-info strong { color: #0f1111; }

.edit-link { display: inline-block; margin-top: 0.75rem; color: #667eea; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.edit-link:hover { text-decoration: underline; }

.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.warning-box h4 { margin: 0 0 0.5rem 0; color: #92400e; font-size: 1rem; }
.warning-box p { margin: 0 0 0.75rem 0; color: #b45309; font-size: 0.9rem; }
.warning-box a { display: inline-block; padding: 0.5rem 1rem; background: #f59e0b; color: white; border-radius: 6px; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.warning-box a:hover { background: #d97706; }

.delivery-methods {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.delivery-methods h4 { margin: 0 0 1rem 0; color: #374151; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }

.delivery-method-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-method-option:hover { border-color: #667eea; background: #f0f4ff; }
.delivery-method-option input[type="radio"] { margin-right: 1rem; cursor: pointer; width: 18px; height: 18px; }

.delivery-method-info { flex: 1; }
.delivery-method-name { font-weight: 600; color: #0f1111; font-size: 0.95rem; }
.delivery-method-desc { font-size: 0.85rem; color: #6b7280; margin-top: 0.25rem; }
.delivery-method-price { font-size: 1.1rem; font-weight: 700; color: #667eea; min-width: 80px; text-align: right; }

.testi-apsipirkima { margin-top: 1rem; }

/* ===== PRODUKTO DETALIŲ PUSLAPIS ===== */
.product-detail { 
    display: flex; 
    gap: 1.5rem; 
    margin: 1.5rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-images { 
    flex: 0 0 35%; 
    max-width: 380px;
}

.product-info-detail { 
    flex: 1; 
    min-width: 0;
}

.main-image { 
    margin-bottom: 0.75rem; 
}

.main-image img { 
    width: 100%; 
    height: auto; 
    max-height: 400px; 
    border-radius: 10px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
    object-fit: contain; 
}

.thumbnail-images { 
    display: flex; 
    gap: 6px; 
    margin-top: 0.5rem; 
    flex-wrap: wrap; 
}

.thumbnail { 
    width: 65px; 
    height: 65px; 
    object-fit: contain; 
    border-radius: 6px; 
    border: 2px solid #e0e7ff; 
    cursor: pointer; 
    transition: all 0.3s; 
    padding: 2px; 
    background: white; 
    flex-shrink: 0;
}

.thumbnail:hover { 
    border-color: #667eea; 
    transform: scale(1.05); 
}

.thumbnail.active { 
    border-color: #667eea; 
    box-shadow: 0 0 6px rgba(102,126,234,0.3); 
}

/* ===== PRODUKTO INFORMACIJA ===== */
.product-info-detail h1 { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #0f1111; 
    margin-bottom: 0.5rem; 
    line-height: 1.3;
}

.title-row { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin-bottom: 0.5rem; 
}

.category-row { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    flex-wrap: wrap; 
    margin-bottom: 0.75rem; 
}

.category-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 0.45rem 0.9rem; 
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    color: #4f46e5; 
    border-radius: 20px; 
    font-weight: 600; 
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.08);
}

.category-badge i { 
    font-size: 0.95rem; 
}

/* ===== CENA ===== */
.price-info { 
    display: flex; 
    align-items: baseline; 
    gap: 1rem; 
    margin: 0.75rem 0; 
    padding: 0.75rem 0.9rem; 
    background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
    flex-wrap: wrap;
}

.total-price { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: #667eea;
}

.base-price { 
    font-size: 0.8rem; 
    color: #9ca3af; 
    text-decoration: line-through; 
}

.price-with-vat {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.price-with-vat span {
    color: #667eea;
    font-weight: 600;
}

.price-without-vat {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.price-without-vat span {
    color: #9ca3af;
    font-weight: 600;
}

/* ===== SANDĖLIO STATUSAS ===== */
.stock-status { 
    margin: 0.5rem 0; 
}

.in-stock { 
    color: #059669; 
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 0.85rem;
}

.in-stock i { 
    font-size: 1rem;
}

.out-of-stock { 
    color: #dc2626; 
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 0.85rem;
}

.out-of-stock i { 
    font-size: 1rem;
}

/* ===== PASIRINKIMAI (VARIANTAI) ===== */
.product-options { 
    margin: 1rem 0; 
    padding: 0.9rem; 
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 8px; 
    border: 1px solid #e5e7eb;
}

.product-options h3 { 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: #0f1111; 
    margin-bottom: 0.65rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
}

.product-options h3 i {
    color: #667eea;
    font-size: 1rem;
}

.option-group { 
    margin-bottom: 0.8rem; 
}

.option-group:last-child { 
    margin-bottom: 0; 
}

.option-label { 
    display: block; 
    font-weight: 700; 
    color: #1f2937; 
    margin-bottom: 0.4rem; 
    font-size: 0.85rem;
    text-transform: capitalize;
}

.option-select { 
    margin-top: 0.2rem; 
}

.option-select-input { 
    width: 100%; 
    padding: 0.6rem 0.8rem; 
    border: 2px solid #e5e7eb; 
    border-radius: 6px; 
    background: white; 
    font-size: 0.85rem; 
    color: #111827;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    padding-right: 2.3rem;
}

.option-select-input:hover { 
    border-color: #667eea;
    background-color: #f0f4ff;
}

.option-select-input:focus { 
    border-color: #667eea; 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 
}

/* ===== MYGTUKA STILIAI ===== */
.product-actions { 
    display: flex; 
    gap: 0.65rem; 
    margin: 1.25rem 0; 
    flex-wrap: wrap; 
}

.btn-large { 
    padding: 0.8rem 1.2rem; 
    font-size: 0.9rem; 
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
}

.btn-primary:not(:disabled) { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.btn-primary:not(:disabled):hover { 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.35);
}

.btn-secondary { 
    background: #e5e7eb;
    color: #6b7280;
}

.btn-secondary:hover:not(:disabled) { 
    background: #d1d5db;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== APRAŠYMAS (PILNAS PLOTIS) ===== */
.product-description-wide {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: none;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-description-wide h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.product-description-wide p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { 
    margin: 0.75rem 0; 
    padding: 0.65rem 0.75rem; 
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 6px; 
    font-size: 0.8rem;
    border-left: 4px solid #667eea;
}

.breadcrumb a { 
    color: #667eea; 
    text-decoration: none; 
    font-weight: 600;
    transition: all 0.3s;
}

.breadcrumb a:hover { 
    color: #764ba2;
    text-decoration: underline; 
}

.breadcrumb span { 
    color: #6b7280;
    font-weight: 600;
}

/* ===== BADGE'AI ===== */
.product-badge { 
    display: inline-flex; 
    align-items: center; 
    padding: 0.45rem 0.8rem; 
    border-radius: 18px; 
    font-weight: 700; 
    font-size: 0.7rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-new { 
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.badge-popular { 
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #be185d;
}

.badge-sale { 
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
}

.badge-default { 
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    color: #4f46e5;
}

/* ===== HEADER STILIAI ===== */
@media (max-width: 768px) {
    .header-container { 
        padding: 0 1rem; 
        gap: 1rem;
    }
    
    .navbar-left { 
        flex: 1;
        justify-content: center;
    }
    
    .navbar-center {
        display: none;
    }
    
    .nav-menu { 
        gap: 1rem; 
    }
    
    .nav-menu li a span,
    .nav-link span,
    .profile-btn span {
        display: none;
    }
    
    .header-right { 
        gap: 1rem; 
    }
    
    .nav-menu li a i,
    .nav-link i,
    .profile-btn i,
    .cart-btn i { 
        font-size: 1.2rem; 
    }
    
    .dropdown-menu {
        right: -1rem;
    }
}

@media (max-width: 480px) {
    .header-container { 
        gap: 0.75rem; 
        padding: 0 0.5rem;
    }
    
    .logo img { 
        height: 35px; 
    }
    
    .nav-menu { 
        gap: 0.75rem; 
    }
    
    .header-right { 
        gap: 0.75rem; 
    }
}

/* ===== MOBILŪS STILIAI ===== */
@media (max-width: 968px) {
    .product-detail { 
        flex-direction: column; 
        gap: 1rem; 
        margin: 1rem 0;
    }
    
    .product-images { 
        flex: 1; 
        max-width: 100%; 
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 0.75rem;
    }
    .ci-actions {
        grid-column: 2;
        justify-content: flex-end;
    }
    .login-alert-buttons {
        flex-direction: column;
    }
    .login-alert .btn {
        width: 100%;
    }
    
    .product-detail { 
        flex-direction: column; 
        gap: 1rem; 
        margin: 1rem 0;
    }
    
    .product-images { 
        flex: 1; 
        max-width: 100%; 
    }
    
    .product-info-detail { 
        width: 100%; 
    }
    
    .main-image img { 
        width: 100%; 
        height: auto; 
        max-height: 280px; 
        border-radius: 8px;
    }
    
    .thumbnail { 
        width: 60px; 
        height: 60px;
        border-radius: 5px;
    }
    
    .thumbnail-images { 
        gap: 6px; 
        margin-top: 0.5rem;
    }

    .image-lightbox {
        padding: 10px;
    }

    .image-lightbox-content {
        width: 100%;
        max-height: 86vh;
    }

    .image-lightbox-content img {
        max-height: 86vh;
        border-radius: 8px;
    }

    .image-lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .product-info-detail h1 { 
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .title-row { 
        gap: 10px;
        margin-bottom: 0.5rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .category-row { 
        margin-bottom: 0.75rem;
    }
    
    .category-badge { 
        font-size: 0.8rem; 
        padding: 0.4rem 0.8rem;
    }
    
    .price-info { 
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        margin: 0.75rem 0;
    }
    
    .total-price { 
        font-size: 1.6rem;
    }
    
    .base-price {
        font-size: 0.8rem;
    }
    
    .stock-status { 
        margin: 0.5rem 0;
    }
    
    .in-stock,
    .out-of-stock { 
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }
    
    .product-options { 
        margin: 0.75rem 0; 
        padding: 0.75rem;
    }
    
    .product-options h3 { 
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .option-group { 
        margin-bottom: 0.75rem;
    }
    
    .option-label { 
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .option-select-input { 
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .product-actions { 
        flex-direction: column; 
        gap: 0.65rem;
        margin: 1rem 0;
    }
    
    .btn-large { 
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: auto;
        flex: 1;
    }
    
    .product-description { 
        margin-top: 1rem; 
        padding: 1rem;
    }
    
    .product-description h3 { 
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-description p { 
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .breadcrumb {
        margin: 0.75rem 0;
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Download button for cart items with design */
.ci-download-btn { 
    display: inline-block; 
    font-size: 0.85rem; 
    color: #667eea; 
    text-decoration: none; 
    margin-top: 0.5rem; 
    padding: 0.4rem 0.8rem; 
    border: 1px solid #667eea; 
    border-radius: 4px; 
    transition: all 0.3s; 
    cursor: pointer;
}
.ci-download-btn:hover { 
    background: #667eea; 
    color: white; 
}

.custom-input-field {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    font-size: 0.85rem;
    color: #111827;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-input-field:hover {
    border-color: #667eea;
    background-color: #f0f4ff;
}

.custom-input-field:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}