:root {
    --bg-color: #2b1217; /* New Brand Dark Red */
    --text-primary: #ffffff;
    --text-secondary: #ffd1cc; /* New Brand Beige */
    --accent: #FF0000; /* New Brand Pure Red */
    --accent-hover: #f0646c; /* New Brand Coral Red */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.09);
    --glow-color: rgba(255, 0, 0, 0.12); 
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .title {
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: -0.02em;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--glow-color) 0%, rgba(28,13,13,0) 70%);
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
    filter: blur(80px);
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

/* Layout */
.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    min-height: 100vh;
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo {
    height: 60px; /* Adjust size based on actual logo */
    width: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 77, 77, 0.4));
}

.title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--accent);
    line-height: 1.1;
}

.subtitle {
    color: var(--text-primary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    opacity: 0.8;
}

/* Toggle Switch */
.toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.toggle-container {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 5px;
    position: relative;
    backdrop-filter: blur(10px);
}

.toggle-bg {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc(50% - 5px);
    background: var(--accent);
    border-radius: 25px;
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 1;
}

.toggle-btn {
    flex: 1;
    padding: 12px 32px;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
    border-radius: 25px;
}

.toggle-btn.active {
    color: #ffffff;
}

.toggle-container[data-active="piercing"] .toggle-bg {
    transform: translateX(100%);
}

/* Sections */
.pricing-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.pricing-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Bento Grid (Tatouage) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    background: var(--glass-hover);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.1);
}

.icon-svg {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-big {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Bricolage Grotesque', sans-serif;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--text-primary);
}

.price-big .currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: top;
    margin-left: 4px;
    color: var(--text-secondary);
}

.price-big .to {
    font-size: 2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: auto;
    font-weight: 300;
}

.highlight-card {
    background: rgba(255, 77, 77, 0.05);
    border-color: rgba(255, 77, 77, 0.2);
}

.span-full {
    grid-column: 1 / -1;
}

.info-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-bg);
    padding: 40px;
}

.info-content {
    max-width: 600px;
}

.info-content h3 {
    font-size: 2rem;
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Piercing Categories */
.piercing-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-block {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 40px;
    transition: var(--transition);
}

.category-block:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 77, 77, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.category-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 15px 40px;
}

.price-list li {
    display: flex;
    align-items: baseline;
    font-size: 1.1rem;
}

.item-name {
    color: var(--text-secondary);
    font-weight: 400;
}

.line {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.15);
    margin: 0 15px;
    position: relative;
    top: -6px;
}

.item-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* Buttons */
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Bricolage Grotesque', sans-serif;
    transition: var(--transition);
}

.action-btn span {
    transition: transform 0.3s ease;
}

.action-btn:hover {
    background: #fff;
    color: var(--bg-color);
    transform: scale(1.03);
}

.action-btn:hover span {
    transform: translateX(5px);
}

.cta-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-container {
        padding: 40px 15px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-content {
        margin-bottom: 20px;
    }
    
    .price-list {
        grid-template-columns: 1fr;
    }
    
    .category-block {
        padding: 25px 20px;
    }
}
