/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #f39b00;
}

.breadcrumb span {
    color: #999;
}

.product-wraper {
    max-width: 1400px;
    padding: 20px 20px;
    display: block;
    margin: 0 auto;
}

/* Product Layout */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .product-section {
        display: block;
        width: 100%;
        grid-template-columns: 1fr;
    }
    .main-image img {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 12px;
    }
    .description > img {
        width: 100%;
    }

    .description p > img {
        width: 100%;
        height: auto;
    }
}
/* Product Gallery */
.product-gallery {
    position: relative;
}

.badge-new {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #f39b00;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    z-index: 10;
}

.main-image {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-bottom: 16px;
}

.main-image img {
    max-height: 350px;
    object-fit: contain;
}

.thumbnails {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.nav-btn:hover {
    color: #1a1a1a;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

.thumb-list {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.thumb {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.thumb:hover,
.thumb.active {
    border-color: #f39b00;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-info {
    display: block;
}
.product-info h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}
.description {
    width: 100%;
}
.description > h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}
.description > h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}
.description > ul {
    margin-left: 15px;
    padding-bottom: 10px;
}


.description > h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1;
}

.product-subtitle {
    color: #666;
    margin-bottom: 24px;
}

.description-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.description p {
    color: #666;
    margin-bottom: 16px;
}

/* Buttons */
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}

.btn-primary {
    background-color: #f39b00;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #f39b00;
}

.btn-outline {
    background: transparent;
    color: #f39b00;
    border: 1px solid #f39b00;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: #f39b00;
    color: white;
}

/* Pharmacy Logos */
.pharmacy-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
}

.pharmacy-logos a {
    transition: opacity 0.2s;
}

.pharmacy-logos a:hover {
    opacity: 0.7;
}

.pharmacy-logos img {
    height: 32px;
    object-fit: contain;
}

/* Accordion */
.additional-info-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.accordion-icon {
    color: #f39b00;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    user-select: none;
}

.accordion-title {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 15px;
}

.accordion-content {
    display: none;
    padding: 0 16px 16px 44px;
    color: #333;
    font-size: 14px;
    white-space: pre-line;
}

.accordion-item.open .accordion-content {
    display: block;
}

@media (max-width: 480px) {
    .thumb  {
        width: 50px;
        height: 50px;
    }

}