/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #f4f1eb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #f4f1eb;
    color: #4a4a4a;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 2px solid #e8dcc6;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-list a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
}

.nav-list a:hover {
    color: #8b6f47;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #4a4a4a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4a4a4a;
    margin-top: 62px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Mobile fallback for video */
@media (max-width: 768px) {
    .hero-video {
        display: block;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(244, 241, 235, 0.3), rgba(244, 241, 235, 0.3)), url('images/P1033234.JPG');
        background-size: cover;
        background-position: center;
        z-index: -3;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 241, 235, 0.7);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background-color: #8b6f47;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: 2px solid #8b6f47;
}

.cta-button:hover {
    background-color: #7a5f3f;
    border-color: #7a5f3f;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    position: relative;
    margin-top: -10rem;
}

.about-logo {
    position: absolute;
    top: -20px;
    left: -40px;
    z-index: 10;
}

.about-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transform: rotate(-12deg);
    opacity: 0.9;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #4a4a4a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.inline-logo {
    height: 250px;
    width: auto;
    object-fit: contain;
}

.about-text-part {
    margin-left: -3.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Products Section */
.products {
    background-color: #f8f6f1;
    position: relative;
    overflow: hidden;
}

/* Shop Section */
.shop {
    background-color: #f4f1eb;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.shop-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.shop-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.shop-grid {
    display: none;
}

.shop-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 3px solid #e8dcc6;
}

.shop-item:hover {
    transform: translateY(-5px);
}

.shop-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.shop-item h3 {
    padding: 1rem 1rem 0.5rem;
    color: #4a4a4a;
    font-weight: bold;
    font-size: 1.3rem;
}

.shop-item .price {
    padding: 0 1rem;
    color: #8b6f47;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.shop-item .description {
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.add-to-cart {
    background-color: #8b6f47;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0 1rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: calc(100% - 2rem);
}

.add-to-cart:hover {
    background-color: #7a5f3f;
}

/* カテゴリー展開機能のスタイル */
.category-expand {
    background: linear-gradient(135deg, #2c5530, #3d7040);
    color: white;
    border: none;
    padding: 1rem 2rem;
    margin: 0 1rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s ease;
    width: calc(100% - 2rem);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.category-expand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.category-expand:hover {
    background: linear-gradient(135deg, #3d7040, #4a8050);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.category-expand:hover::before {
    left: 100%;
}

.category-products {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
    margin: 0 1rem;
    padding: 0 1rem;
    background: linear-gradient(145deg, #f8f8f8, #e8e8e8);
    border-radius: 15px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-products.expanded {
    max-height: 2000px;
    padding: 2rem 1.5rem;
    margin: 0 1rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.sub-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
    border-top: 4px solid #e8dcc6;
    height: fit-content;
}

.sub-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-top-color: #8b6f47;
}

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

.sub-product:nth-child(1) { animation-delay: 0.1s; }
.sub-product:nth-child(2) { animation-delay: 0.2s; }
.sub-product:nth-child(3) { animation-delay: 0.3s; }

.sub-product img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.sub-product img:hover {
    transform: scale(1.08);
}

.sub-product h4 {
    color: #2c5530;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.sub-product .price {
    color: #8b6f47;
    font-weight: bold;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.sub-product .sub-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
    max-width: 200px;
}

.sub-product .add-to-cart {
    width: 80%;
    margin: 0;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #8b6f47, #a07c59);
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 111, 71, 0.3);
    font-weight: bold;
}

.sub-product .add-to-cart:hover {
    background: linear-gradient(135deg, #a07c59, #b58a6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 111, 71, 0.4);
}

@media (max-width: 768px) {
    .category-products.expanded {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1.5rem 1.2rem 2rem;
        max-height: 2500px;
    }
    
    .sub-product {
        padding: 1.2rem;
        margin: 0.3rem;
    }
    
    .sub-product img {
        width: 90px;
        height: 90px;
        margin-bottom: 0.8rem;
    }
    
    .sub-product h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .sub-product .price {
        font-size: 1rem;
        margin: 0.3rem 0;
    }
    
    .sub-product .sub-description {
        font-size: 0.85rem;
        margin: 0 0 1rem 0;
        line-height: 1.4;
    }
    
    .sub-product .add-to-cart {
        width: 95%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .category-expand {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shop-item {
        max-width: 100%;
        margin: 0 auto;
    }
}

.cart-summary {
    display: none;
}

.cart-summary h3 {
    color: #4a4a4a;
    margin-bottom: 1rem;
    text-align: center;
}

#cart-items {
    margin-bottom: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.cart-total {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.checkout-btn {
    background-color: #8b6f47;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
    font-size: 1.1rem;
}

.checkout-btn:hover {
    background-color: #7a5f3f;
}

/* Blog Section */
.blog {
    background-color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.blog-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background-color: #f8f6f1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 3px solid #e8dcc6;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #4a4a4a;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.blog-date {
    color: #8b6f47;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #8b6f47;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #7a5f3f;
    text-decoration: underline;
}

.products::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 60px;
    height: 60px;
    background: url('images/momo.png') no-repeat center;
    background-size: contain;
    opacity: 0.2;
    animation: float 10s ease-in-out infinite;
}

.products::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -3%;
    width: 70px;
    height: 70px;
    background: url('images/budou.png') no-repeat center;
    background-size: contain;
    opacity: 0.2;
    animation: float 12s ease-in-out infinite reverse;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 3px solid #4a4a4a;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    color: #4a4a4a;
    font-weight: bold;
}

.product-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* Story Section */
.story {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 5%;
    width: 50px;
    height: 50px;
    background: url('images/momo.png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    animation: float 14s ease-in-out infinite;
}

.story::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 55px;
    height: 55px;
    background: url('images/budou.png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    animation: float 16s ease-in-out infinite reverse;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Access Section */
.access {
    background-color: #f8f6f1;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.access-info h3 {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.access-info p {
    margin-bottom: 0.5rem;
}

.access-map {
    background-color: #e9e6e0;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: #666;
}

.access-map iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content > p {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #4a4a4a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #8b6f47;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7a5f3f;
}

.submit-button {
    background-color: #8b6f47;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.submit-button:hover {
    background-color: #7a5f3f;
}

/* Footer */
.footer {
    background-color: #4a4a4a;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-social h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    border-color: transparent;
}

.social-link.tiktok:hover {
    background-color: #000;
    border-color: #ff0050;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-info {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Mobile Navigation Header (hidden on desktop) */
.mobile-nav-header {
    display: none;
}

.mobile-nav-logo {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #f4f1eb;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .mobile-nav-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 2rem 0 2rem;
        border-bottom: 2px solid #e8dcc6;
        height: 100px;
    }
    
    .mobile-nav-logo {
        display: block;
        height: 90px;
        width: auto;
        object-fit: contain;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        text-align: left;
        padding: 0 2rem 2rem 2rem;
        height: auto;
        margin-top: -100px;
        min-height: calc(100vh - 100px);
    }
    
    .nav-list li {
        border-bottom: 1px solid #e8dcc6;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        color: #4a4a4a;
        text-decoration: none;
    }
    
    .hero {
        height: 70vh;
        margin-top: 102px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text {
        margin-top: -2rem;
    }
    
    .about-text h3 {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }
    
    .inline-logo {
        height: 80px;
        flex-shrink: 0;
    }
    
    .about-text-part {
        margin-left: -1rem;
        white-space: nowrap;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        height: 100px;
    }
    
    .logo-image {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-text {
        margin-top: 0;
    }
    
    .about-text h3 {
        flex-direction: row;
        gap: 0.3rem;
        margin-bottom: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .inline-logo {
        height: 100px;
        flex-shrink: 0;
    }
    
    .about-text-part {
        margin-left: -0.5rem;
        font-size: 1rem;
        white-space: nowrap;
    }
    
    .logo {
        height: 80px;
    }
    
    .logo-image {
        height: 70px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        justify-content: center;
    }
    
    /* 480px以下での商品展開の追加調整 */
    .category-products.expanded {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.5rem 1rem 2.5rem;
        max-height: 3000px;
    }
    
    .sub-product {
        padding: 1rem;
        margin: 0.2rem;
    }
    
    .sub-product img {
        width: 80px;
        height: 80px;
        margin-bottom: 0.6rem;
    }
    
    .sub-product h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .sub-product .price {
        font-size: 0.95rem;
    }
    
    .sub-product .sub-description {
        font-size: 0.8rem;
        margin: 0 0 0.8rem 0;
        max-width: none;
    }
    
    .sub-product .add-to-cart {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }
    
    .category-expand {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .shop-item h3 {
        font-size: 1.2rem;
        padding: 0.8rem 1rem 0.4rem;
    }
    
    .shop-item .description {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status.loading {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}