.own-brand-switcher-wrapper {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    text-align: left;
}

.own-brand-title {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.4em;
    font-weight: 700;
    color: #1a2b4c; /* Dark blue from screenshot */
    font-family: inherit; /* Inherits theme font */
}

.own-brand-saving {
    color: #c20063; /* Pink from screenshot */
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.own-brand-content-area {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

@media (max-width: 767px) {
    .own-brand-content-area {
        flex-direction: column;
    }
}

.own-brand-image-link {
    text-decoration: none;
    flex: 0 0 180px; /* Increased from 150px */
    transition: opacity 0.3s ease;
}

.own-brand-image-link:hover,
.own-brand-product-title-link:hover {
    opacity: 0.8;
}

.own-brand-image-wrap {
    width: 100%;
}

.own-brand-image-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.own-brand-details-section {
    flex: 1;
}

.own-brand-product-title-link {
    text-decoration: none;
}

.own-brand-product-title {
    font-size: 1.2em;
    margin: 0 0 15px; /* Increased margin-bottom from 10px */
    color: #4fa4d1; /* Light blue from screenshot */
    font-weight: 700 !important; /* Force bold as requested */
    font-family: 'urw venus', sans-serif;
    line-height: 1.4;
}

.own-brand-details {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Increased gap from 5px to separate price and button */
    align-items: flex-start;
}

.own-brand-price {
    font-weight: bold;
    font-size: 1.5em;
    color: #333;
}

.own-brand-price del {
    opacity: 0.6;
    margin-right: 5px;
    font-size: 0.7em;
}

.own-brand-btn {
    display: inline-block;
    background-color: #0b50b8; /* Darker blue button */
    color: #ffffff !important; /* Forced white text */
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1em;
    text-decoration: none;
    text-transform: none;
    font-weight: bold;
    margin-top: 5px;
    text-align: center;
}

.own-brand-btn:hover {
    color: #ffffff !important;
    opacity: 0.9;
}