/**
 * Review Box Brand-Compliant Styles
 * Following Stegt Flaesk Brand Guidelines
 * All classes prefixed with rb-brand- to avoid conflicts
 */

/* Brand Colors */
:root {
    --rb-brand-green: #4A7C59;
    --rb-brand-green-dark: #3a6346;
    --rb-brand-charcoal: #2C2C2C;
    --rb-brand-gold: #D4A017;
    --rb-brand-cream: #F9F7F2;
    --rb-brand-error: #DC2626;
    --rb-gray-50: #F9FAFB;
    --rb-gray-100: #F3F4F6;
    --rb-gray-200: #E5E7EB;
    --rb-gray-300: #D1D5DB;
    --rb-gray-400: #9CA3AF;
    --rb-gray-500: #6B7280;
    --rb-gray-600: #4B5563;
}

/* Base Container - No white background */
.rb-brand-review-box {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--rb-brand-charcoal);
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Hero Image - Large, Prominent with Lightbox */
.rb-brand-hero-image {
    width: 100%;
    height: 500px;
    margin-bottom: 32px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rb-brand-hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.rb-brand-hero-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.rb-brand-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.rb-brand-hero-image:hover img {
    transform: scale(1.02);
    opacity: 0.95;
}

.rb-brand-hero-expand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    color: var(--rb-brand-charcoal);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.rb-brand-hero-image:hover .rb-brand-hero-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

.rb-brand-hero-expand-icon svg {
    width: 24px;
    height: 24px;
}

/* Hero Rating Overlay */
.rb-brand-hero-rating-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 32px;
    z-index: 10;
}

.rb-brand-hero-rating-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.rb-brand-hero-rating-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    max-width: 200px;
    margin: 0 auto;
}

.rb-brand-hero-rating-number {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--rb-brand-charcoal);
    line-height: 1;
}

.rb-brand-hero-rating-stars {
    display: flex;
    gap: 4px;
    color: var(--rb-brand-gold);
    font-size: 1.5rem;
    justify-content: center;
}

.rb-brand-hero-rating-stars svg,
.rb-brand-hero-rating-stars .star {
    width: 28px;
    height: 28px;
}

.rb-brand-hero-category-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.rb-brand-hero-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rb-brand-hero-category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.rb-brand-hero-category-label {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--rb-brand-charcoal);
}

.rb-brand-hero-category-number {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--rb-brand-green);
    line-height: 1;
}

@media (max-width: 1024px) {
    .rb-brand-hero-image {
        height: 400px;
        border-radius: 16px;
    }
    
    .rb-brand-hero-image img {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .rb-brand-hero-image {
        height: 300px;
        margin-bottom: 24px;
        border-radius: 12px;
    }
    
    .rb-brand-hero-image img {
        min-height: 300px;
    }
    
    .rb-brand-hero-expand-icon {
        width: 48px;
        height: 48px;
        top: 16px;
        right: 16px;
    }
    
    .rb-brand-hero-expand-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .rb-brand-hero-rating-overlay {
        padding: 20px 12px 16px;
    }
    
    .rb-brand-hero-rating-content {
        gap: 16px;
    }
    
    .rb-brand-hero-rating-main {
        padding: 16px 20px;
        max-width: 160px;
        border-radius: 12px;
    }
    
    .rb-brand-hero-rating-number {
        font-size: 2.25rem;
    }
    
    .rb-brand-hero-rating-stars {
        font-size: 1.125rem;
        gap: 3px;
    }
    
    .rb-brand-hero-rating-stars svg,
    .rb-brand-hero-rating-stars .star {
        width: 20px;
        height: 20px;
    }
    
    .rb-brand-hero-category-ratings {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .rb-brand-hero-category-item {
        padding: 8px 14px;
        gap: 8px;
        border-radius: 10px;
        flex: 0 1 auto;
        min-width: 0;
    }
    
    .rb-brand-hero-category-label {
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    
    .rb-brand-hero-category-number {
        font-size: 1.125rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .rb-brand-hero-image {
        height: 250px;
        border-radius: 10px;
    }
    
    .rb-brand-hero-image img {
        min-height: 250px;
    }
    
    .rb-brand-hero-expand-icon {
        width: 44px;
        height: 44px;
        top: 12px;
        right: 12px;
    }
    
    .rb-brand-hero-rating-overlay {
        padding: 16px 10px 12px;
    }
    
    .rb-brand-hero-rating-content {
        gap: 12px;
    }
    
    .rb-brand-hero-rating-main {
        padding: 14px 18px;
        max-width: 140px;
        border-radius: 10px;
    }
    
    .rb-brand-hero-rating-number {
        font-size: 2rem;
    }
    
    .rb-brand-hero-rating-stars {
        font-size: 1rem;
        gap: 2px;
    }
    
    .rb-brand-hero-rating-stars svg,
    .rb-brand-hero-rating-stars .star {
        width: 18px;
        height: 18px;
    }
    
    .rb-brand-hero-category-ratings {
        gap: 6px;
        justify-content: center;
    }
    
    .rb-brand-hero-category-item {
        padding: 6px 12px;
        gap: 6px;
        border-radius: 8px;
        font-size: 0.75rem;
    }
    
    .rb-brand-hero-category-label {
        font-size: 0.75rem;
    }
    
    .rb-brand-hero-category-number {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .rb-brand-hero-image {
        height: 220px;
    }
    
    .rb-brand-hero-image img {
        min-height: 220px;
    }
    
    .rb-brand-hero-rating-overlay {
        padding: 14px 8px 10px;
    }
    
    .rb-brand-hero-rating-main {
        padding: 12px 16px;
        max-width: 120px;
    }
    
    .rb-brand-hero-rating-number {
        font-size: 1.75rem;
    }
    
    .rb-brand-hero-rating-stars svg,
    .rb-brand-hero-rating-stars .star {
        width: 16px;
        height: 16px;
    }
    
    .rb-brand-hero-category-ratings {
        gap: 4px;
    }
    
    .rb-brand-hero-category-item {
        padding: 5px 10px;
        gap: 5px;
    }
    
    .rb-brand-hero-category-label {
        font-size: 0.6875rem;
    }
    
    .rb-brand-hero-category-number {
        font-size: 0.9375rem;
    }
}

/* Header Section */
.rb-brand-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rb-gray-200);
}

.rb-brand-title-section {
    margin-bottom: 20px;
}

.rb-brand-restaurant-name {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--rb-brand-charcoal);
    margin: 0 0 12px 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .rb-brand-restaurant-name {
        font-size: 1.5rem;
    }
}

.rb-brand-review-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
}

.rb-brand-review-date-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rb-gray-500);
}

.rb-brand-review-date time {
    font-size: 0.875rem;
    color: var(--rb-brand-charcoal);
}

/* Toolbar - Brand Compliant Icon Buttons */
.rb-brand-toolbar {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
}

.rb-brand-toolbar-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    border: 2px solid var(--rb-gray-200) !important;
    background: white !important;
    color: var(--rb-gray-400) !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.rb-brand-toolbar-btn:hover {
    border-color: var(--rb-brand-green) !important;
    color: var(--rb-brand-green) !important;
    background: rgba(74, 124, 89, 0.05) !important;
}

.rb-brand-toolbar-btn--active,
.rb-brand-toolbar-btn.in-comparison,
.rb-brand-toolbar-btn.in-wishlist,
.rb-brand-wishlist-btn.remove-from-wishlist-button {
    border-color: var(--rb-brand-green) !important;
    background: var(--rb-brand-green) !important;
    color: white !important;
}

.rb-brand-toolbar-btn--active:hover,
.rb-brand-toolbar-btn.in-comparison:hover,
.rb-brand-toolbar-btn.in-wishlist:hover,
.rb-brand-wishlist-btn.remove-from-wishlist-button:hover {
    background: var(--rb-brand-green-dark) !important;
    border-color: var(--rb-brand-green-dark) !important;
    color: white !important;
}

.rb-brand-toolbar-btn--active .rb-brand-icon,
.rb-brand-toolbar-btn.in-wishlist .rb-brand-icon,
.rb-brand-wishlist-btn.remove-from-wishlist-button .rb-brand-icon,
.rb-brand-toolbar-btn--active svg,
.rb-brand-toolbar-btn.in-wishlist svg,
.rb-brand-wishlist-btn.remove-from-wishlist-button svg {
    color: white !important;
    fill: white !important;
}

.rb-brand-toolbar-btn .rb-brand-icon,
.rb-brand-toolbar-btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure wishlist/comparison buttons work with existing JavaScript */
.rb-brand-wishlist-btn.add-to-wishlist-button,
.rb-brand-wishlist-btn.remove-from-wishlist-button,
.rb-brand-wishlist-btn.wishlist-login-required,
.rb-brand-comparison-btn.flaeske-comparison-btn {
    /* Inherits from rb-brand-toolbar-btn with !important rules above */
}

/* Heart filled icon when in wishlist - ensure it's visible */
.rb-brand-wishlist-btn.remove-from-wishlist-button .rb-brand-icon--small,
.rb-brand-wishlist-btn.remove-from-wishlist-button svg {
    width: 20px !important;
    height: 20px !important;
    color: white !important;
    fill: white !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Meta Info Section - Brand Compliant */
.rb-brand-meta-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--rb-gray-50);
    border-radius: 12px;
    border: 1px solid var(--rb-gray-200);
}

@media (max-width: 767px) {
    .rb-brand-meta-section {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}

.rb-brand-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.875rem;
}

.rb-brand-meta-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    color: var(--rb-gray-500);
}

.rb-brand-meta-value {
    color: var(--rb-brand-charcoal);
    font-weight: 600;
}

.rb-brand-meta-link {
    color: var(--rb-brand-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.rb-brand-meta-link:hover {
    color: var(--rb-brand-green-dark);
}

.rb-brand-meta-item--action {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--rb-gray-200);
}

/* Icons */
.rb-brand-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rb-brand-icon--small {
    width: 16px;
    height: 16px;
}

.rb-brand-icon--large {
    width: 24px;
    height: 24px;
}

/* Buttons - Brand Compliant (Matching UI Kit) */
.rb-brand-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--rb-brand-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.rb-brand-btn-primary:hover {
    background: var(--rb-brand-green-dark);
    color: white;
    text-decoration: none;
}

.rb-brand-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--rb-brand-green);
    border: 2px solid var(--rb-brand-green);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.rb-brand-btn-secondary:hover {
    background: var(--rb-brand-green);
    color: white;
    text-decoration: none;
}

.rb-brand-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rb-brand-charcoal);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    white-space: nowrap;
}

.rb-brand-btn-text:hover {
    color: var(--rb-brand-green);
    text-decoration: none;
}

.rb-brand-btn-text .rb-brand-icon {
    color: var(--rb-gray-400);
    transition: color 0.2s;
}

.rb-brand-btn-text:hover .rb-brand-icon {
    color: var(--rb-brand-green);
}

/* Toolbar - All buttons together */
.rb-brand-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.rb-brand-toolbar .rb-brand-btn-primary,
.rb-brand-toolbar .rb-brand-btn-secondary {
    margin: 0;
}

/* Overall Rating */
.rb-brand-overall-rating {
    margin: 32px 0;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--rb-gray-200);
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.rb-brand-overall-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.rb-brand-overall-number {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rb-brand-charcoal);
    line-height: 1;
}

@media (max-width: 767px) {
    .rb-brand-overall-number {
        font-size: 2.5rem;
    }
}

.rb-brand-overall-stars {
    display: flex;
    gap: 4px;
    color: var(--rb-brand-gold);
    align-items: center;
}

.rb-brand-overall-stars .star,
.rb-brand-overall-stars svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    color: var(--rb-brand-gold);
}

.rb-brand-star {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .rb-brand-star,
    .rb-brand-overall-stars .star,
    .rb-brand-overall-stars svg {
        width: 20px;
        height: 20px;
    }
}

/* Category Ratings */
.rb-brand-category-section {
    margin: 32px 0;
}

.rb-brand-category-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rb-brand-charcoal);
    margin: 0 0 20px 0;
}

.rb-brand-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

@media (max-width: 767px) {
    .rb-brand-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.rb-brand-category-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--rb-gray-200);
}

.rb-brand-category-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--rb-brand-charcoal);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rb-brand-category-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rb-brand-category-number {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rb-brand-charcoal);
}

.rb-brand-category-stars {
    display: flex;
    gap: 2px;
    color: var(--rb-brand-gold);
    align-items: center;
}

.rb-brand-category-stars .star,
.rb-brand-category-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    color: var(--rb-brand-gold);
}

.rb-brand-category-star {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Description Section */
.rb-brand-description {
    margin: 32px 0;
}

.rb-brand-description-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rb-brand-charcoal);
    margin: 0 0 16px 0;
}

.rb-brand-description-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--rb-brand-charcoal);
}

.rb-brand-description-content p {
    margin: 0 0 16px 0;
}

.rb-brand-description-content p:last-child {
    margin-bottom: 0;
}

/* Pros & Cons */
.rb-brand-pros-cons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

@media (max-width: 767px) {
    .rb-brand-pros-cons {
        grid-template-columns: 1fr;
    }
}

.rb-brand-pros-section,
.rb-brand-cons-section {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--rb-gray-200);
}

.rb-brand-pros-section {
    background: rgba(74, 124, 89, 0.05);
    border-color: rgba(74, 124, 89, 0.2);
}

.rb-brand-cons-section {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.2);
}

.rb-brand-pros-title,
.rb-brand-cons-title {
    font-family: 'Merriweather', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--rb-brand-charcoal);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rb-brand-pros-title .rb-brand-icon,
.rb-brand-cons-title .rb-brand-icon {
    flex-shrink: 0;
    color: var(--rb-brand-charcoal);
}

.rb-brand-pros-content,
.rb-brand-cons-content {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--rb-brand-charcoal);
}

.rb-brand-pros-content p,
.rb-brand-cons-content p {
    margin: 0 0 8px 0;
}

.rb-brand-pros-content p:last-child,
.rb-brand-cons-content p:last-child {
    margin-bottom: 0;
}

/* Map Section */
.rb-brand-map-section {
    margin: 32px 0;
}

.rb-brand-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.rb-brand-map-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--rb-brand-charcoal);
}

.rb-brand-map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--rb-brand-green);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.rb-brand-map-link:hover {
    color: var(--rb-brand-green-dark);
    text-decoration: none;
}

.rb-brand-map-link .rb-brand-arrow {
    color: var(--rb-brand-gold);
    transition: transform 0.2s;
}

.rb-brand-map-link:hover .rb-brand-arrow {
    transform: translateX(2px);
}

.rb-brand-map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
}

/* Map Marker Styles */
.rb-brand-map-marker {
    background: transparent !important;
    border: none !important;
}

@media (max-width: 767px) {
    .rb-brand-map-container {
        height: 300px;
    }
}

/* User Reviews Section */
.rb-brand-user-reviews {
    margin: 32px 0;
    padding-top: 32px;
    border-top: 1px solid var(--rb-gray-200);
}

/* Review Form Section */
.rb-brand-review-form {
    margin: 32px 0;
    padding-top: 32px;
    border-top: 1px solid var(--rb-gray-200);
}

/* Primary Review Form - Prominent placement after map */
.rb-brand-review-form-primary {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, var(--rb-brand-cream) 0%, rgba(74, 124, 89, 0.03) 100%);
    border: 2px solid var(--rb-brand-green);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.rb-brand-review-form-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rb-brand-green) 0%, var(--rb-brand-gold) 100%);
}

.rb-brand-review-form-primary h3,
.rb-brand-review-form-primary h4 {
    color: var(--rb-brand-charcoal);
    font-family: 'Merriweather', serif;
    font-weight: 700;
    margin-bottom: 16px;
}

.rb-brand-review-form-primary p {
    color: var(--rb-brand-charcoal);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.rb-brand-review-form-primary .form-group,
.rb-brand-review-form-primary .form-row {
    margin-bottom: 20px;
}

.rb-brand-review-form-primary input[type="text"],
.rb-brand-review-form-primary input[type="email"],
.rb-brand-review-form-primary textarea,
.rb-brand-review-form-primary select {
    border: 2px solid var(--rb-gray-300);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rb-brand-review-form-primary input[type="text"]:focus,
.rb-brand-review-form-primary input[type="email"]:focus,
.rb-brand-review-form-primary textarea:focus,
.rb-brand-review-form-primary select:focus {
    border-color: var(--rb-brand-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
    outline: none;
}

.rb-brand-review-form-primary button[type="submit"],
.rb-brand-review-form-primary .submit-button {
    background: linear-gradient(135deg, var(--rb-brand-green) 0%, var(--rb-brand-green-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.rb-brand-review-form-primary button[type="submit"]:hover,
.rb-brand-review-form-primary .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.rb-brand-review-form-primary button[type="submit"]:active,
.rb-brand-review-form-primary .submit-button:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .rb-brand-review-form-primary {
        margin: 32px 0;
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .rb-brand-review-form-primary h3,
    .rb-brand-review-form-primary h4 {
        font-size: 1.5rem;
    }
    
    .rb-brand-review-form-primary p {
        font-size: 1rem;
    }
    
    .rb-brand-review-form-primary button[type="submit"],
    .rb-brand-review-form-primary .submit-button {
        width: 100%;
        padding: 16px;
    }
}

/* Error Message */
.rb-brand-error {
    padding: 16px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    color: var(--rb-brand-error);
    margin: 20px 0;
}

.rb-brand-error p {
    margin: 0;
    font-weight: 600;
}

/* Correction Button - Brand Compliant Text Link Style */
.rb-brand-correction-btn.flaeske-correction-trigger {
    /* Override any frontend.css styles */
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    color: var(--rb-brand-charcoal) !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: color 0.2s !important;
    white-space: nowrap !important;
}

.rb-brand-correction-btn.flaeske-correction-trigger:hover {
    background: none !important;
    border: none !important;
    color: var(--rb-brand-green) !important;
    text-decoration: none !important;
}

.rb-brand-correction-btn.flaeske-correction-trigger .rb-brand-icon {
    color: var(--rb-gray-400) !important;
    transition: color 0.2s !important;
}

.rb-brand-correction-btn.flaeske-correction-trigger:hover .rb-brand-icon {
    color: var(--rb-brand-green) !important;
}

/* Meat Quality Stars */
.rb-brand-meat-quality-stars {
    color: var(--rb-brand-gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

/* Serving Days Links */
.rb-brand-serving-days {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.rb-brand-serving-days .rb-brand-meta-link:not(:last-child)::after {
    content: ',';
    margin-left: 4px;
    color: var(--rb-gray-400);
}

/* Services Display */
.rb-brand-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Cooking Methods & Pork Types */
.rb-brand-methods-list,
.rb-brand-pork-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Compact Style */
.rb-brand-review-box.style-compact .rb-brand-overall-number {
    font-size: 2.5rem;
}

.rb-brand-review-box.style-compact .rb-brand-category-grid {
    grid-template-columns: 1fr;
}

/* Minimal Style */
.rb-brand-review-box.style-minimal {
    background: transparent;
}

.rb-brand-review-box.style-minimal .rb-brand-overall-rating,
.rb-brand-review-box.style-minimal .rb-brand-category-section,
.rb-brand-review-box.style-minimal .rb-brand-description,
.rb-brand-review-box.style-minimal .rb-brand-pros-cons,
.rb-brand-review-box.style-minimal .rb-brand-review-section {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.rb-brand-review-box.style-minimal .rb-brand-section-title,
.rb-brand-review-box.style-minimal .rb-brand-section-header {
    border-bottom: none;
    padding-bottom: 0;
}

/* Review Content Sections */
.rb-brand-review-content {
    margin-top: 32px;
}

.rb-brand-review-section {
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--rb-gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.rb-brand-section-title {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--rb-brand-charcoal);
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--rb-gray-200);
}

/* Section Header with Side Rating Badge */
.rb-brand-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--rb-gray-200);
}

.rb-brand-section-header .rb-brand-section-title {
    margin: 0;
    flex: 1;
    padding-bottom: 0;
    border-bottom: none;
}

.rb-brand-section-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 8px 16px;
    background: var(--rb-brand-cream);
    border-radius: 12px;
    border: 1px solid var(--rb-gray-200);
    min-width: 80px;
    flex-shrink: 0;
}

.rb-brand-rating-number {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--rb-brand-charcoal);
    line-height: 1;
}

.rb-brand-rating-stars {
    display: flex;
    gap: 2px;
    color: var(--rb-brand-gold);
    font-size: 0.75rem;
}

.rb-brand-rating-stars svg,
.rb-brand-rating-stars .star {
    width: 14px;
    height: 14px;
}

/* Smaller, Subtle Images with Lightbox */
.rb-brand-section-image {
    margin-bottom: 20px;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
}

.rb-brand-section-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rb-brand-section-image a {
    display: block;
    position: relative;
    cursor: pointer;
}

.rb-brand-section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.2s;
}

.rb-brand-section-image:hover img {
    opacity: 0.9;
}

.rb-brand-image-expand-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--rb-brand-charcoal);
}

.rb-brand-image-expand-icon svg {
    width: 16px;
    height: 16px;
}

.rb-brand-section-image:hover .rb-brand-image-expand-icon {
    opacity: 1;
}

.rb-brand-section-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.rb-brand-section-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--rb-brand-charcoal);
}

.rb-brand-section-content p {
    margin-bottom: 1em;
}

.rb-brand-section-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .rb-brand-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rb-brand-section-rating-badge {
        align-self: flex-end;
    }
    
    .rb-brand-section-image {
        max-width: 100%;
    }
}

/* Image Gallery - Smaller Thumbnails */
.rb-brand-image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.rb-brand-image-item {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.rb-brand-image-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rb-brand-image-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.rb-brand-image-item:hover img {
    opacity: 0.85;
}

.rb-brand-image-item .rb-brand-image-expand-icon {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    color: var(--rb-brand-charcoal);
}

.rb-brand-image-item .rb-brand-image-expand-icon svg {
    width: 12px;
    height: 12px;
}

.rb-brand-image-item:hover .rb-brand-image-expand-icon {
    opacity: 1;
}

@media (max-width: 767px) {
    .rb-brand-image-item {
        width: 100px;
        height: 100px;
    }
}

/* Introduction Section - Image in Top Corner */
.rb-brand-intro-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--rb-gray-200);
    gap: 20px;
}

.rb-brand-intro-header .rb-brand-section-title {
    margin: 0;
    flex: 1;
    padding-bottom: 0;
    border-bottom: none;
}

.rb-brand-intro-image-corner {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
}

.rb-brand-intro-image-corner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rb-brand-intro-image-corner a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-intro-image-corner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.rb-brand-intro-image-corner:hover img {
    opacity: 0.9;
}

.rb-brand-intro-image-corner .rb-brand-image-expand-icon {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    color: var(--rb-brand-charcoal);
}

.rb-brand-intro-image-corner:hover .rb-brand-image-expand-icon {
    opacity: 1;
}

.rb-brand-intro-image-corner .rb-brand-image-expand-icon svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 767px) {
    .rb-brand-intro-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rb-brand-intro-image-corner {
        align-self: flex-end;
        width: 100px;
        height: 100px;
    }
}

/* Extra Info Box */
.rb-brand-extra-info {
    margin-top: 24px;
    padding: 20px;
    background: var(--rb-gray-50);
    border-radius: 12px;
    border: 1px solid var(--rb-gray-200);
}

.rb-brand-extra-info p {
    margin-bottom: 1em;
}

.rb-brand-extra-info p:last-child {
    margin-bottom: 0;
}

/* Video Containers - Side by Side */
.rb-brand-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.rb-brand-video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: var(--rb-gray-100);
    box-sizing: border-box;
    display: block;
}

.rb-brand-video-container > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 12px;
    display: block;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
}

.rb-brand-video-container iframe,
.rb-brand-video-container embed,
.rb-brand-video-container object,
.rb-brand-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 12px;
    display: block;
    max-width: 100% !important;
    max-height: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
}

.rb-brand-video-16-9 {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.rb-brand-video-vertical {
    aspect-ratio: 9 / 16;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
}

/* Ensure videos section container doesn't overflow */
.rb-brand-videos-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.rb-brand-videos-section .rb-brand-section-body {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.rb-brand-videos-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .rb-brand-videos-grid {
        gap: 16px;
    }
    
    .rb-brand-video-vertical {
        max-width: 240px;
    }
}

@media (max-width: 767px) {
    .rb-brand-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rb-brand-video-vertical {
        max-width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .rb-brand-videos-grid {
        gap: 16px;
    }
    
    .rb-brand-video-container {
        border-radius: 10px;
    }
    
    .rb-brand-video-container iframe,
    .rb-brand-video-container embed,
    .rb-brand-video-container object {
        border-radius: 10px;
    }
}


/* Lightbox Styles */
.rb-brand-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(4px);
}

.rb-brand-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.rb-brand-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.rb-brand-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 100001;
}

.rb-brand-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Premium Image Layouts for Appetizer & Dessert Sections */
/* Single Image - Large, Integrated */
.rb-brand-premium-single-image {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--rb-gray-50);
}

.rb-brand-premium-single-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.rb-brand-premium-single-image a {
    display: block;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-premium-single-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.rb-brand-premium-single-image:hover img {
    transform: scale(1.02);
}

.rb-brand-premium-single-image .rb-brand-image-expand-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--rb-brand-charcoal);
    z-index: 10;
}

.rb-brand-premium-single-image:hover .rb-brand-image-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Dual Image - Side by Side */
.rb-brand-premium-dual-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.rb-brand-premium-dual-image .rb-brand-premium-image-item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--rb-gray-50);
    aspect-ratio: 4 / 3;
}

.rb-brand-premium-dual-image .rb-brand-premium-image-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.rb-brand-premium-dual-image .rb-brand-premium-image-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-premium-dual-image .rb-brand-premium-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.rb-brand-premium-dual-image .rb-brand-premium-image-item:hover img {
    transform: scale(1.05);
}

.rb-brand-premium-dual-image .rb-brand-image-expand-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    color: var(--rb-brand-charcoal);
    z-index: 10;
}

.rb-brand-premium-dual-image .rb-brand-premium-image-item:hover .rb-brand-image-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Hero + Grid Layout - Premium Magazine Style */
.rb-brand-premium-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.rb-brand-premium-hero-main {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--rb-gray-50);
    aspect-ratio: 4 / 3;
}

.rb-brand-premium-hero-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.rb-brand-premium-hero-main a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-premium-hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rb-brand-premium-hero-main:hover img {
    transform: scale(1.03);
}

.rb-brand-premium-hero-main .rb-brand-image-expand-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--rb-brand-charcoal);
    z-index: 10;
}

.rb-brand-premium-hero-main:hover .rb-brand-image-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

.rb-brand-premium-hero-thumbs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rb-brand-premium-thumb-item {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--rb-gray-50);
    position: relative;
}

.rb-brand-premium-thumb-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.rb-brand-premium-thumb-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-premium-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.rb-brand-premium-thumb-item:hover img {
    transform: scale(1.05);
}

.rb-brand-premium-thumb-item .rb-brand-image-expand-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--rb-brand-charcoal);
    z-index: 10;
}

.rb-brand-premium-thumb-item:hover .rb-brand-image-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Grid layout for 3+ thumbnails */
.rb-brand-premium-thumbs-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
}

.rb-brand-premium-thumbs-grid .rb-brand-premium-thumb-item {
    aspect-ratio: 4 / 3;
}

/* Mobile Responsive - Premium Layouts */
@media (max-width: 1024px) {
    .rb-brand-premium-hero-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .rb-brand-premium-hero-thumbs {
        flex-direction: row;
        gap: 12px;
    }
    
    .rb-brand-premium-thumbs-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
    
    .rb-brand-premium-thumbs-grid .rb-brand-premium-thumb-item {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 767px) {
    .rb-brand-premium-single-image {
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .rb-brand-premium-single-image .rb-brand-image-expand-icon {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }
    
    .rb-brand-premium-dual-image {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .rb-brand-premium-dual-image .rb-brand-premium-image-item {
        border-radius: 10px;
        aspect-ratio: 16 / 9;
    }
    
    .rb-brand-premium-hero-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .rb-brand-premium-hero-main {
        border-radius: 12px;
        aspect-ratio: 16 / 9;
    }
    
    .rb-brand-premium-hero-thumbs {
        flex-direction: row;
        gap: 8px;
    }
    
    .rb-brand-premium-thumbs-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        gap: 8px;
    }
    
    .rb-brand-premium-thumb-item {
        border-radius: 10px;
        aspect-ratio: 1 / 1;
    }
    
    .rb-brand-premium-thumb-item .rb-brand-image-expand-icon {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
    }
    
    .rb-brand-premium-thumb-item .rb-brand-image-expand-icon svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .rb-brand-premium-dual-image {
        gap: 10px;
    }
    
    .rb-brand-premium-hero-thumbs {
        gap: 6px;
    }
    
    .rb-brand-premium-thumbs-grid {
        gap: 6px;
    }
}

/* Premium Integrated Review Sections - Flæsk, Kartofler, Sovs, Tilbehør */
.rb-brand-review-integrated {
    margin-bottom: 40px;
}

/* Header Image Layout - Images as Prominent Headers */
.rb-brand-review-header-image {
    margin-bottom: 40px;
}

.rb-brand-review-header-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--rb-gray-100);
}

.rb-brand-review-header-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.rb-brand-review-header-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-review-header-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.rb-brand-review-header-image-wrapper:hover img {
    transform: scale(1.05);
}

.rb-brand-review-header-image-wrapper .rb-brand-image-expand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    color: var(--rb-brand-charcoal);
    z-index: 20;
    backdrop-filter: blur(4px);
}

.rb-brand-review-header-image-wrapper:hover .rb-brand-image-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Overlay with Title and Rating */
.rb-brand-review-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 40px 32px 32px;
    z-index: 10;
}

.rb-brand-review-header-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.rb-brand-section-title-header {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    flex: 1;
}

.rb-brand-review-rating-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.rb-brand-rating-header-main {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rb-brand-review-rating-header:hover .rb-brand-rating-header-main {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.rb-brand-rating-number-header {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--rb-brand-charcoal);
    line-height: 1;
}

.rb-brand-rating-stars-header {
    display: flex;
    gap: 4px;
    color: var(--rb-brand-gold);
    font-size: 1.125rem;
}

.rb-brand-rating-stars-header svg,
.rb-brand-rating-stars-header .star {
    width: 24px;
    height: 24px;
}

.rb-brand-review-content-below-header {
    padding: 0;
}

.rb-brand-review-content-below-header .rb-brand-review-content-wrapper {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--rb-brand-charcoal);
}

.rb-brand-review-content-below-header .rb-brand-review-content-wrapper p {
    margin-bottom: 1.25em;
}

.rb-brand-review-content-below-header .rb-brand-review-content-wrapper p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive - Header Image */
@media (max-width: 1024px) {
    .rb-brand-review-header-image-wrapper {
        height: 350px;
        border-radius: 16px;
    }
    
    .rb-brand-section-title-header {
        font-size: 2rem;
    }
    
    .rb-brand-rating-number-header {
        font-size: 1.75rem;
    }
    
    .rb-brand-rating-stars-header svg,
    .rb-brand-rating-stars-header .star {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 767px) {
    .rb-brand-review-header-image {
        margin-bottom: 32px;
    }
    
    .rb-brand-review-header-image-wrapper {
        height: 280px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .rb-brand-review-header-overlay {
        padding: 32px 20px 20px;
    }
    
    .rb-brand-review-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .rb-brand-section-title-header {
        font-size: 1.75rem;
    }
    
    .rb-brand-review-rating-header {
        align-self: flex-end;
        padding: 12px 20px;
    }
    
    .rb-brand-rating-number-header {
        font-size: 1.5rem;
    }
    
    .rb-brand-rating-stars-header svg,
    .rb-brand-rating-stars-header .star {
        width: 18px;
        height: 18px;
    }
    
    .rb-brand-review-content-below-header .rb-brand-review-content-wrapper {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .rb-brand-review-header-image-wrapper .rb-brand-image-expand-icon {
        width: 48px;
        height: 48px;
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .rb-brand-review-header-image-wrapper {
        height: 240px;
        border-radius: 10px;
    }
    
    .rb-brand-review-header-overlay {
        padding: 24px 16px 16px;
    }
    
    .rb-brand-section-title-header {
        font-size: 1.5rem;
    }
    
    .rb-brand-review-rating-header {
        padding: 10px 16px;
    }
    
    .rb-brand-rating-number-header {
        font-size: 1.25rem;
    }
    
    .rb-brand-rating-stars-header svg,
    .rb-brand-rating-stars-header .star {
        width: 16px;
        height: 16px;
    }
}

.rb-brand-review-integrated-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--rb-gray-200);
    gap: 20px;
}

.rb-brand-review-integrated-header .rb-brand-section-title {
    margin: 0;
    flex: 1;
    padding-bottom: 0;
    border-bottom: none;
}

.rb-brand-review-rating-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--rb-brand-cream) 0%, rgba(74, 124, 89, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid var(--rb-gray-200);
    flex-shrink: 0;
}

.rb-brand-review-rating-inline .rb-brand-rating-number {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--rb-brand-charcoal);
    line-height: 1;
}

.rb-brand-review-rating-inline .rb-brand-rating-stars {
    display: flex;
    gap: 3px;
    color: var(--rb-brand-gold);
    font-size: 0.875rem;
}

.rb-brand-review-rating-inline .rb-brand-rating-stars svg,
.rb-brand-review-rating-inline .rb-brand-rating-stars .star {
    width: 18px;
    height: 18px;
}

/* Split Layout: Image and Content Side by Side */
.rb-brand-review-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.rb-brand-review-image-column {
    position: sticky;
    top: 24px;
}

.rb-brand-review-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--rb-gray-50);
    aspect-ratio: 4 / 3;
}

.rb-brand-review-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.rb-brand-review-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-review-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rb-brand-review-image-wrapper:hover img {
    transform: scale(1.03);
}

.rb-brand-review-image-wrapper .rb-brand-image-expand-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--rb-brand-charcoal);
    z-index: 10;
}

.rb-brand-review-image-wrapper:hover .rb-brand-image-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

.rb-brand-review-content-column {
    display: flex;
    flex-direction: column;
}

.rb-brand-review-content-wrapper {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--rb-brand-charcoal);
}

.rb-brand-review-content-wrapper p {
    margin-bottom: 1.25em;
}

.rb-brand-review-content-wrapper p:last-child {
    margin-bottom: 0;
}

.rb-brand-review-content-wrapper h4,
.rb-brand-review-content-wrapper h5 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--rb-brand-charcoal);
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.rb-brand-review-content-wrapper h4 {
    font-size: 1.25rem;
}

.rb-brand-review-content-wrapper h5 {
    font-size: 1.125rem;
}

/* Image Only Layout */
.rb-brand-review-image-only {
    width: 100%;
    margin-bottom: 0;
}

.rb-brand-review-image-only .rb-brand-review-image-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Content Only Layout */
.rb-brand-review-content-only {
    width: 100%;
}

.rb-brand-review-content-only .rb-brand-review-content-wrapper {
    max-width: none;
}

/* Multi-Image Layout for Tilbehør */
.rb-brand-review-multi-image-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rb-brand-review-images-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rb-brand-review-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.rb-brand-review-image-item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--rb-gray-200);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--rb-gray-50);
    aspect-ratio: 4 / 3;
    position: relative;
}

.rb-brand-review-image-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.rb-brand-review-image-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-review-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.rb-brand-review-image-item:hover img {
    transform: scale(1.05);
}

.rb-brand-review-image-item .rb-brand-image-expand-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    color: var(--rb-brand-charcoal);
    z-index: 10;
}

.rb-brand-review-image-item:hover .rb-brand-image-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile Responsive - Integrated Review Sections */
@media (max-width: 1024px) {
    .rb-brand-review-split-layout {
        gap: 24px;
    }
    
    .rb-brand-review-image-column {
        position: static;
    }
}

@media (max-width: 767px) {
    .rb-brand-review-integrated {
        margin-bottom: 32px;
    }
    
    .rb-brand-review-integrated-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .rb-brand-review-rating-inline {
        align-self: flex-end;
        padding: 8px 16px;
    }
    
    .rb-brand-review-rating-inline .rb-brand-rating-number {
        font-size: 1.25rem;
    }
    
    .rb-brand-review-rating-inline .rb-brand-rating-stars svg,
    .rb-brand-review-rating-inline .rb-brand-rating-stars .star {
        width: 16px;
        height: 16px;
    }
    
    .rb-brand-review-split-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rb-brand-review-image-wrapper {
        border-radius: 12px;
        aspect-ratio: 16 / 9;
    }
    
    .rb-brand-review-image-wrapper .rb-brand-image-expand-icon {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }
    
    .rb-brand-review-content-wrapper {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .rb-brand-review-images-dual {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .rb-brand-review-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .rb-brand-review-image-item {
        border-radius: 10px;
        aspect-ratio: 16 / 9;
    }
    
    .rb-brand-review-image-item .rb-brand-image-expand-icon {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
    
    .rb-brand-review-image-item .rb-brand-image-expand-icon svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .rb-brand-review-images-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .rb-brand-review-image-item {
        aspect-ratio: 16 / 9;
    }
}

/* Header Image Slider for Appetizer & Dessert */
.rb-brand-review-header-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: var(--rb-gray-100);
}

.rb-brand-header-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.rb-brand-header-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.rb-brand-header-slide.active {
    opacity: 1;
    z-index: 2;
}

.rb-brand-header-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.rb-brand-header-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.rb-brand-header-slide:hover img {
    transform: scale(1.05);
}

.rb-brand-header-slide .rb-brand-image-expand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    color: var(--rb-brand-charcoal);
    z-index: 20;
    backdrop-filter: blur(4px);
}

.rb-brand-header-slide:hover .rb-brand-image-expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Slider Navigation Buttons */
.rb-brand-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: var(--rb-brand-charcoal);
    backdrop-filter: blur(4px);
}

.rb-brand-slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rb-brand-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.rb-brand-slider-prev {
    left: 20px;
}

.rb-brand-slider-next {
    right: 20px;
}

.rb-brand-slider-nav svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.rb-brand-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 30;
}

.rb-brand-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rb-brand-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.rb-brand-slider-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive - Header Slider */
@media (max-width: 1024px) {
    .rb-brand-review-header-slider {
        height: 350px;
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .rb-brand-review-header-slider {
        height: 280px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .rb-brand-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .rb-brand-slider-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .rb-brand-slider-prev {
        left: 12px;
    }
    
    .rb-brand-slider-next {
        right: 12px;
    }
    
    .rb-brand-slider-dots {
        bottom: 16px;
        gap: 8px;
    }
    
    .rb-brand-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .rb-brand-header-slide .rb-brand-image-expand-icon {
        width: 48px;
        height: 48px;
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .rb-brand-review-header-slider {
        height: 240px;
        border-radius: 10px;
    }
    
    .rb-brand-slider-nav {
        width: 36px;
        height: 36px;
    }
    
    .rb-brand-slider-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .rb-brand-slider-prev {
        left: 8px;
    }
    
    .rb-brand-slider-next {
        right: 8px;
    }
    
    .rb-brand-slider-dots {
        bottom: 12px;
        gap: 6px;
    }
    
    .rb-brand-slider-dot {
        width: 8px;
        height: 8px;
    }
}

.rb-brand-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 100001;
}

.rb-brand-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.rb-brand-lightbox-prev {
    left: 20px;
}

.rb-brand-lightbox-next {
    right: 20px;
}

.rb-brand-lightbox-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .rb-brand-action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .rb-brand-btn-primary,
    .rb-brand-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .rb-brand-btn-text {
        width: 100%;
        justify-content: center;
    }
}

