:root {
    --canela-nature-bg: #FCF9F2;
    --canela-nature-surface: #F5EFE0;
    --canela-nature-tone: #4A6741;
    --canela-nature-tone-hover: #385131;
    --canela-nature-ink: #2D241E;
    --canela-nature-gradient: linear-gradient(135deg, #4A6741 0%, #2E3B23 100%);
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Mulish', sans-serif;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.bark-top-bar {
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.bark-main-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bark-content-shell {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.bark-product-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .bark-product-layout {
        flex-direction: row;
    }
    .bark-visual-vault {
        width: 50%;
        display: flex;
        flex-direction: row-reverse;
        gap: 1rem;
    }
}

/* Gallery CSS Only */
.bark-presentation-frame {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.bark-slide-deck {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

@media (min-width: 768px) {
    .bark-slide-deck {
        min-width: 400px;
    }
    
}

.bark-view-unit {
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;
}

.bark-thumb-strip {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .bark-thumb-strip {
        flex-direction: column;
        margin-top: 0;
        width: 80px;
    }
}

.bark-thumb-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.2s;
    opacity: 0.6;
}

.bark-thumb-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#img1:checked ~ .bark-presentation-frame .bark-slide-deck { transform: translateX(0%); }
#img2:checked ~ .bark-presentation-frame .bark-slide-deck { transform: translateX(-100%); }
#img3:checked ~ .bark-presentation-frame .bark-slide-deck { transform: translateX(-200%); }
#img4:checked ~ .bark-presentation-frame .bark-slide-deck { transform: translateX(-300%); }

#img1:checked ~ .bark-thumb-strip label[for="img1"],
#img2:checked ~ .bark-thumb-strip label[for="img2"],
#img3:checked ~ .bark-thumb-strip label[for="img3"],
#img4:checked ~ .bark-thumb-strip label[for="img4"] {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--canela-nature-tone);
}

.bark-item-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.bark-info-text {
    font-size: 1rem;
    color: #444;
}

.bark-para-entry {
    margin-bottom: 1.25rem;
}

.bark-action-hub {
    text-align: center;
    margin: 3rem 0;
}

.bark-prime-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(74, 103, 65, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bark-prime-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(74, 103, 65, 0.5);
    background-color: var(--canela-nature-tone-hover) !important;
}

.bark-feedback-wall {
    margin-top: 4rem;
}

.bark-wall-heading {
    font-family: var(--font-display);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.bark-review-card {
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.bark-user-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bark-user-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.bark-user-name {
    font-weight: 700;
    display: block;
}

.bark-stars {
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.bark-review-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.bark-date-line {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
}

.bark-footer-base {
    margin-top: 5rem;
    padding: 3rem 1rem;
    background: #2D241E;
    color: #F5EFE0;
    text-align: center;
}

.bark-legal-brand {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.bark-legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bark-legal-links a {
    color: white;
    font-size: 0.8rem;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.bark-legal-links a:hover {
    opacity: 1;
}

.hidden { display: none; }