/* ============================================================
   MAIN STYLESHEET - Consolidated from all pages
   ============================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Main palette - consistent across all pages */
    --soft-mint: #C2DD80;
    --soft-blush: #E99CAE;
    --soft-rose: #D56989;
    --soft-ivory: #F3EEF2;
    --accent-dark: #7f4e5e;
    --pure-white: #FFFFFF;
    --text-dark: #4d3f47;
    --text-muted: #6e5b64;
    --deep-warm: #5a4b52;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pure-white);
    color: #3d2e34;
    line-height: 1.7;
    scroll-behavior: smooth;
}

h1, h2, h3, .navbar-brand, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(8deg); }
}

/* ===== BUTTONS ===== */
.btn {
    background-color: var(--soft-rose);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(213, 105, 137, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid transparent;
}

.btn:hover {
    background-color: #c14e72;
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(213, 105, 137, 0.4);
}

.btn-primary {
    background-color: var(--soft-rose);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 18px rgba(213, 105, 137, 0.3);
}

.btn-primary:hover {
    background-color: #b84d6d;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(213, 105, 137, 0.4);
}

.btn-outline-light {
    border-color: var(--soft-mint);
    color: var(--soft-mint);
    background: transparent;
    border: 1px solid var(--soft-mint);
    padding: 0.5rem 1.5rem;
}

.btn-outline-light:hover {
    background-color: var(--soft-mint);
    border-color: var(--soft-mint);
    color: #4d3a40;
}

.btn-outline-primary {
    border-color: var(--soft-rose);
    color: var(--soft-rose);
    background: transparent;
    border: 1px solid var(--soft-rose);
}

.btn-outline-primary:hover {
    background-color: var(--soft-rose);
    color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
    background-color: rgba(217, 105, 137, 0.92) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--pure-white) !important;
}

.navbar-brand i {
    color: var(--soft-mint) !important;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 0;
    margin: 0 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--soft-mint) !important;
}

/* ===== NAVIGATION (alternative for product page) ===== */
.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--soft-mint) !important;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.logo span:first-child {
    color: var(--soft-rose);
}

.logo span:last-child {
    color: var(--soft-mint);
}

/* ===== CART COUNT BADGE ===== */
.cart-count {

    
 display: none;
 

                         position: absolute; 
                         top: -6px; 
                         right: -4px; 
                         background: #FFD700; 
                         color: #4d3f47; 
                         font-weight: 700; 
                         font-size: 0.7rem; 
                         min-width: 32px; 
                         height: 32px; 
                         border-radius: 40px; 
                         display: flex; 
                         align-items: center; 
                         justify-content: center; 
                         border: 2px solid #D56989; 
                         box-shadow: 0 2px 8px rgba(0,0,0,0.2);




}

/* ===== SECTION HEADINGS ===== */
h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #5d4350;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--soft-rose);
    border-radius: 2px;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    color: var(--soft-rose);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--soft-mint);
}

/* ===== HERO SECTION (About page) ===== */
.hero-section {
    background: linear-gradient(rgba(217, 105, 137, 0.4), rgba(194, 221, 128, 0.5)), 
                url('assets/sakuraBG_3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--pure-white);
    padding: 160px 0;
    text-align: center;
    position: relative;
 }

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section h1,
.hero-section p {
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* ===== HERO SECTION (Contact page - with slideshow) ===== */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s ease-in-out, transform 1.2s ease-out;
    will-change: opacity;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
}

.slide:not(.active) {
    opacity: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(213, 105, 137, 0.45), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
}

.slider-arrow:hover {
    background: rgba(213, 105, 137, 0.8);
    transform: translateY(-50%) scale(1.05);
    border-color: var(--soft-mint);
}

.arrow-left { left: 25px; }
.arrow-right { right: 25px; }

.hour-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 15;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--soft-mint);
    letter-spacing: 0.5px;
    border-left: 3px solid var(--soft-mint);
    font-family: 'Inter', monospace;
    pointer-events: none;
}

.hour-badge i { 
    margin-right: 6px; 
    font-size: 0.9rem; 
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(145deg, var(--soft-ivory) 20%, #fbe9ee 100%);
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--soft-rose);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #5f4e57;
    max-width: 700px;
    margin: 0 auto;
}

.header-decoration {
    width: 120px;
    height: 6px;
    background: var(--soft-mint);
    margin: 1.5rem auto 0;
    border-radius: 8px;
}

/* ===== CARDS & FEATURES ===== */
.card-hover {
    background-color: var(--soft-ivory) !important;
    border: 1px solid #f0dbdf;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px !important;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(213, 105, 137, 0.15) !important;
    border-color: var(--soft-rose);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--soft-mint);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #5e4a54;
    transition: all 0.3s ease;
}

.card-hover:hover .feature-icon {
    background: var(--soft-rose);
    color: var(--pure-white);
    transform: rotate(-5deg);
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(213, 105, 137, 0.1) !important;
}

/* ===== TEAM ===== */
.team-member-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: var(--soft-mint);
    border-radius: 50%;
    margin-bottom: 20px;
    padding: 15px;
    transition: transform 0.3s ease;
    border: 3px solid var(--soft-ivory);
    box-shadow: 0 10px 20px rgba(233, 156, 174, 0.3);
}

.team-member-img:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--soft-blush);
}

.bg-light-custom {
    background-color: var(--soft-ivory);
    border-radius: 30px;
    border-left: 5px solid var(--soft-rose);
}

.bg-light {
    background-color: #f7eef2 !important;
}

/* ===== MISSION BOX ===== */
.mission-box {
    background: var(--soft-ivory);
    border-left: 5px solid var(--soft-rose);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(213, 105, 137, 0.1);
    border-radius: 0 30px 30px 0;
}

/* ===== CONTACT ===== */
.contact-item {
    padding: 2rem;
    border-radius: 20px;
    background: var(--soft-ivory);
    height: 100%;
    border: 1px solid #eedfe2 !important;
    transition: background 0.2s;
}

.contact-item i {
    font-size: 2rem;
    color: var(--soft-rose);
    margin-bottom: 1rem;
    display: block;
}

.contact-item:hover {
    background: var(--pure-white);
    border-color: var(--soft-blush) !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 1.6rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4e3f46;
}

.form-label i {
    color: var(--soft-rose);
    margin-right: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #eed9df;
    border-radius: 60px;
    font-size: 1rem;
    transition: all 0.2s;
    background-color: #fefcfd;
}

.form-control:focus {
    outline: none;
    border-color: var(--soft-rose);
    box-shadow: 0 0 0 4px rgba(213, 105, 137, 0.15);
}

textarea.form-control {
    border-radius: 30px;
    resize: vertical;
    min-height: 130px;
}

.form-card {
    background: var(--pure-white);
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(213, 105, 137, 0.25);
    border-bottom: 6px solid var(--soft-blush);
}

.form-title {
    font-size: 2rem;
    color: var(--soft-rose);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b5c64;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.form-message {
    margin-top: 1.2rem;
    font-weight: 500;
    min-height: 2rem;
}

.info-card {
    background: var(--pure-white);
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(194, 221, 128, 0.3);
    border-bottom: 6px solid var(--soft-mint);
    height: fit-content;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(233, 156, 174, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--soft-rose);
}

.info-content h4 {
    font-size: 1.4rem;
    color: var(--soft-rose);
    margin-bottom: 0.2rem;
}

.info-content p {
    color: #5f4e57;
}

.info-content a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed var(--soft-blush);
}

.info-content a:hover {
    color: var(--soft-rose);
}

.social-mini {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-mini a {
    width: 48px;
    height: 48px;
    background-color: var(--soft-ivory);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--soft-rose);
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid #eed9df;
}

.social-mini a:hover {
    background-color: var(--soft-rose);
    color: white;
    border-color: var(--soft-rose);
}

.map-placeholder {
    margin-top: 2.5rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 3px solid white;
    height: 220px;
    background-color: #dfcdd3;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300"><rect width="600" height="300" fill="%23f0dfe4"/><circle cx="300" cy="150" r="50" fill="%23E99CAE" opacity="0.7"/><circle cx="360" cy="130" r="30" fill="%23C2DD80" opacity="0.7"/><circle cx="250" cy="190" r="40" fill="%23D56989" opacity="0.7"/><text x="220" y="160" font-family="Inter" font-size="20" fill="%235a4b52" font-weight="bold">✨ studio ✨</text></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.map-caption {
    background: rgba(243, 238, 242, 0.9);
    backdrop-filter: blur(2px);
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--soft-rose);
    border: 1px solid white;
}

/* ===== IMAGE SLIDER ===== */
.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(213, 105, 137, 0.15);
    background: var(--soft-ivory);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item {
    min-width: 100%;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--soft-ivory);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(243, 238, 242, 0.95);
    padding: 2rem;
    border-left: 6px solid var(--soft-rose);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.slider-caption h5 {
    color: #5d4350;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.slider-caption small {
    color: #95717d;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(213, 105, 137, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--soft-rose);
    transform: scale(1.3);
}

.slider-info {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #5d4350;
    z-index: 10;
    backdrop-filter: blur(5px);
}

/* ===== COMMUNITY / NEWSLETTER ===== */
.community {
    background-color: rgba(233, 156, 174, 0.15);
    padding: 5rem 0;
    text-align: center;
}

.community-icon {
    font-size: 3rem;
    color: var(--soft-rose);
    margin-bottom: 1rem;
}

.community h2 {
    font-size: 2.6rem;
    color: var(--soft-rose);
    margin-bottom: 1rem;
}

.community p {
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    color: #4e3f46;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 0.9rem 1.5rem;
    border-radius: 60px;
    border: 2px solid var(--soft-blush);
    min-width: 280px;
    font-size: 1rem;
    outline: none;
    background: white;
}

.newsletter-input:focus {
    border-color: var(--soft-rose);
}

/* ===== FLOATING BEADS ===== */
.floating-beads {
    position: relative;
    overflow: hidden;
}

.bead {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

.bead-1 {
    width: 200px;
    height: 200px;
    background: var(--soft-blush);
    top: 100px;
    right: -30px;
    animation: float 10s infinite alternate;
}

.bead-2 {
    width: 140px;
    height: 140px;
    background: var(--soft-mint);
    bottom: 30px;
    left: -20px;
    animation: float 8s infinite alternate-reverse;
}

/* ===== FOOTER ===== */
footer {
    background: #D56989;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
}

.footer-logo i {
    color: var(--soft-mint) !important;
}

footer a {
    color: var(--soft-ivory);
    transition: color 0.2s;
    text-decoration: none;
}

footer a:hover {
    color: var(--soft-mint) !important;
}

.footer-link {
    color: #f8eef2;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--soft-mint);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    font-size: 1.8rem;
}

.social-links a {
    color: var(--soft-ivory);
    transition: opacity 0.2s;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.7;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.text-white-50 {
    color: rgba(243, 238, 242, 0.8) !important;
}

.text-primary {
    color: var(--soft-rose) !important;
}

/* ===== LOADING SPINNER ===== */
#loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--soft-rose) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-section {
        padding: 120px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    /* Slider */
    .slider-caption {
        padding: 1.5rem;
    }
    
    .slider-info {
        font-size: 0.8rem;
        top: 10px;
        right: 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Hero slideshow */
    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
    
    .arrow-left { left: 12px; }
    .arrow-right { right: 12px; }
    
    .hour-badge {
        bottom: 12px;
        right: 12px;
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
        padding: 5px 12px;
    }
    
    .slider-dots .dot {
        width: 7px;
        height: 7px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    /* Navigation */
    .navbar .container {
        flex-wrap: wrap;
    }
}

@media (max-width: 550px) {
    .navbar .container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-card,
    .info-card {
        padding: 1.8rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .community h2 {
        font-size: 2rem;
    }
    
    .newsletter-input {
        min-width: 200px;
        width: 100%;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
}