* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.logo-img{
    width: 5%;
    border-radius: 50px;
    margin-right:2%;
    margin-left: 1%;
}
.product-page {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}
nav.navbar.navbar-expand-lg {

    width: 100% !important;
    z-index: 9999 !important;
    background-color: #f8f9fa !important; /* Ова е bg-light бојата */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.product-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
        padding-top: 5%;
}


.product-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue-circle-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 2%;
    z-index: 1;
}

.main-product-img {
    width: 100%;
    max-width: 350px;
    z-index: 2;
    border-radius:2%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.468);
}


.product-info {
    flex: 1;
}

.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.product-info h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-rating {
    color: #f1c40f;
    margin-bottom: 20px;
}

.product-price {
    font-size: 26px;
    color: #68b7de;
    font-weight: bold;
    margin-bottom: 20px;

}

.product-description {
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}


.purchase-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.purchase-box select, .qty-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    background-color: #68b7de;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #0056b3;
}


.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background: #e7f3ff;
    color: #0056b3;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}
.product-tabs-section {
    padding: 50px 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.tabs-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #edf2f7;
    margin-bottom: 30px;
}

.tab-link {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.tab-link.active {
    color: #007bff;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #007bff;
}

.tab-content {
    display: none;
    line-height: 1.8;
    color: #4a5568;
}

.tab-content.active {
    display: block;
}


.info-block {
    margin-top: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

.info-block h3 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 20px;
}

.info-block.warning {
    background: #fff5f5;
    border-left: 5px solid #feb2b2;
}

.info-block.highlight {
    background: #ebf8ff;
    border-left: 5px solid #63b3ed;
}

.side-effects-list {
    display: flex;
    justify-content: space-between;
}

.side-effects-list ul {
    flex: 1;
}


.info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

.info-row span:first-child {
    width: 200px;
    font-weight: bold;
    color: #2d3748;
}


.review {
    padding: 20px 0;
    border-bottom: 1px solid #edf2f7;
}

.stars {
    color: #f6ad55;
    margin-left: 10px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #edf2f7;
    margin-bottom: 30px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
}


.tabs-header::-webkit-scrollbar {
    display: none;
}

.tab-link {
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    flex: 0 0 auto; 
}
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}
.product-card {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.img-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.rating {
    color: #ffcc00;
    font-size: 14px;
    margin-bottom: 8px;
}

.product-details h3 {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    min-height: 40px; 
}

.price-range {
    color: #68b7de; 
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 15px;
}

.buy-btn {
    background: none;
    border: 1px solid #63b3ed;
    color: #63b3ed;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #63b3ed;
    color: white;
}
.add-to-cart-btn:disabled {
    background-color: #a0aec0; /* Сива боја или побледа сина */
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .side-effects-list {
        flex-direction: column; 
    }
    
    .info-row {
        flex-direction: column; 
    }
    
    .info-row span:first-child {
        width: 100%;
        margin-bottom: 5px;
        color: #007bff; 
    }

    .shipping-flex {
        flex-direction: column; 
    }
}

@media (max-width: 850px) {
    .product-container {
        flex-direction: column;
        text-align: center;
    }
.blue-circle-bg {
    position: absolute;
    width: 370px;
    height: 400px;
    background: radial-gradient(circle, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 2%;
    z-index: 1;
}
.product-description{
    text-align: justify;
    line-height: 1.6;
}
.product-second-description{
    text-align: justify;
    line-height: 1.6;
}
.logo-img{
    width: 20%;
}
}


.full-footer {
    width: 100%;
    background-color: #f8f9fa; 
    border-top: 1px solid #ddd;
    padding-top: 50px;
    margin-top: 50px;
    color: #333;

}


.footer-inner {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 40px 20px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #68b7de;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #68b7de;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #68b7de;
}

.secure-badge {
    margin-top: 15px;
    background: #e7f3ff;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #68b7de;
    display: inline-block;
}


.footer-copyright {
    width: 100%;
    background-color: #eee;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #777;
}
.logo-img2{
    width: 30%;
    border-radius: 60px;
    margin-bottom: 10px;
    margin-top: -5%;
}


@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.floating-cart {
    color: rgba(0, 0, 0, 0.55) !important; 
    transition: color 0.3s ease;
    text-decoration: none;
    margin-right: 13%;
}

.floating-cart:hover {
    color: #68b7de !important; 
}


@media (max-width: 991px) {
    .floating-cart {
        position: fixed !important;
        bottom: 25px !important;
        right: 20px !important;
        background-color: #68b7de !important; 
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 50px !important;
        z-index: 10000 !important;
        display: flex !important; 
        align-items: center;
        box-shadow: 0px 6px 20px rgba(0,0,0,0.25) !important;
        margin-right: 0;
    }

   
    .floating-cart svg {
        fill: white !important;
    }
}