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

/* --- Global Sale Banner --- */
.wg-store-notice {
    background-color: var(--wg-charcoal);
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 1rem;
    font-family: var(--wg-font-headings);
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 100;
}

.wg-store-notice span#wg-countdown-timer {
    color: var(--wg-light-pink);
    font-weight: bold;
    font-variant-numeric: tabular-nums;
    margin-left: 5px;
}

/* --- Boutique Personality Layer --- */
.wg-grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%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.04;
    pointer-events: none;
    z-index: 9999;
}

.bg-blob {
    position: fixed;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--wg-hot-pink); border-radius: 50% 30% 70% 40%; }
.blob-2 { bottom: -10%; right: -5%; width: 40vw; height: 40vw; background: var(--wg-green); border-radius: 30% 60% 40% 70%; }
.blob-3 { top: 40%; left: 20%; width: 25vw; height: 25vw; background: var(--wg-light-pink); border-radius: 40% 50% 60% 30%; }

/* --- Typographic Polish (Act 2) --- */
h1, h2 {
    position: relative;
    display: inline-block;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 12px;
    background: var(--wg-light-pink);
    z-index: -1;
    border-radius: 20px 5px 15px 3px;
    transform: rotate(-1deg);
    opacity: 0.7;
}

.section-title {
    text-align: center;
    display: block; /* Center the underline */
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* --- Sticker Product Aesthetic (Act 3) --- */
ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    background: #ffffff;
    border: 8px solid #ffffff !important; /* White sticker border */
    border-radius: 12px;
    padding: 0.5rem !important;
    text-align: center;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.04) !important; /* Hard offset shadow */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

ul.products li.product:hover {
    transform: scale(1.04) rotate(1.5deg) !important; /* Playful Wiggle/Tilt */
    box-shadow: 12px 12px 0px rgba(234, 85, 157, 0.15) !important;
    z-index: 10;
}

ul.products li.product a img {
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: var(--wg-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wg-font-headings);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

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

.site-main {
    padding: 2rem 0;
}

/* --- Site Header --- */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--wg-light-pink);
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 1.5rem 2rem;
    }
}

.site-branding .branding-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-branding .logo-placeholder {
    width: 110px;
    height: 110px;
    position: absolute;
    left: -115px; /* Pull it outside the flex flow */
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.site-branding .brand-mark-img {
    width: 100%;
    height: auto;
    display: block;
}

.site-branding .branding-link:hover .logo-placeholder {
    transform: translateY(-50%) rotate(-15deg) scale(1.1);
}

.site-branding {
    position: relative; /* Anchor the absolute logo */
    margin-left: 115px; /* Compensate for the absolute logo so it doesn't overlap the screen edge */
}

.site-branding .site-title {
    margin: 0;
    font-size: 2.2rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.site-branding .branding-link:hover .site-title {
    color: var(--color-secondary);
}

.site-branding .site-logo-img {
    max-height: 80px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .site-branding {
        margin-left: 0;
        margin-top: 50px;
    }
    
    .site-branding .logo-placeholder {
        width: 80px;
        height: 80px;
        left: 50%;
        top: -10px;
        transform: translate(-50%, -100%);
    }

    .site-branding .branding-link:hover .logo-placeholder {
        transform: translate(-50%, -100%) rotate(-15deg) scale(1.1);
    }
}

.main-navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .main-navigation ul {
        flex-direction: row;
        gap: 2rem;
    }
}

.main-navigation a {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
}

/* Header Cart */
.header-cart a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-weight: 700;
}

.header-cart a:hover {
    color: var(--color-primary);
}

.header-cart .cart-count {
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    padding: 0.2rem 0.6rem;
    font-size: 0.85rem;
}

/* --- Site Footer --- */
.site-footer {
    background-color: var(--wg-off-white);
    border-top: 1px dashed var(--wg-light-pink);
    color: var(--color-text);
    padding: 3rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* --- Footer Socials --- */
.footer-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-socials a {
    color: var(--color-text);
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    opacity: 1;
    color: var(--color-primary);
    transform: translateY(-3px);
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 2rem;
        text-align: left;
    }
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-navigation a {
    color: var(--color-text);
    opacity: 0.8;
}

.footer-navigation a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.site-info p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* --- Front Page: Hero Section --- */
.hero-section {
    background-color: var(--wg-off-white);
    background-image: linear-gradient(rgba(45, 52, 54, 0.4), rgba(45, 52, 54, 0.4)), url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 1rem;
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 8rem 2rem;
    }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-title .highlight-pink {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.button.hero-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button.hero-button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* --- Front Page: Featured Products --- */
.featured-products {
    padding: 2rem 0 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* --- Shop Layout & Sidebar --- */
.shop-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.shop-sidebar {
    width: 100%;
}

.shop-sidebar .widget {
    margin-bottom: 2.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.shop-sidebar .widget-title {
    font-family: var(--wg-font-headings);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    border-bottom: 2px solid var(--wg-light-pink);
    padding-bottom: 0.5rem;
}

.shop-sidebar ul {
    list-style: none;
    padding: 0;
}

.shop-sidebar ul li {
    margin-bottom: 0.75rem;
}

.shop-sidebar ul li a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-sidebar ul li a:hover {
    color: var(--color-primary);
}

@media (min-width: 992px) {
    .shop-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .shop-sidebar {
        width: 280px;
        flex-shrink: 0;
        position: sticky;
        top: 2rem;
    }

    .woocommerce-content {
        flex-grow: 1;
    }
}

/* --- Shop Controls (Search + Sort) --- */
.wg-shop-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--wg-light-pink);
}

/* Search Form Styling */
.wg-shop-controls .woocommerce-product-search {
    display: flex;
    flex-grow: 1;
    max-width: 400px;
}

.wg-shop-controls .woocommerce-product-search input[type="search"] {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-icon);
    border-radius: 8px 0 0 8px;
    font-family: var(--wg-font-body);
    outline: none;
}

.wg-shop-controls .woocommerce-product-search button {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.wg-shop-controls .woocommerce-product-search button:hover {
    background-color: var(--color-secondary);
}

/* Sort Dropdown Styling */
.wg-shop-controls select.orderby {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-icon);
    border-radius: 8px;
    font-family: var(--wg-font-body);
    background-color: #ffffff;
    color: var(--color-text);
    outline: none;
    cursor: pointer;
    min-width: 200px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232D3436%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}

.wg-shop-controls select.orderby:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(234, 85, 157, 0.2);
}

/* Ensure select2 matches if active */
.select2-container--default .select2-selection--single {
    border: 2px solid var(--color-icon) !important;
    border-radius: 8px !important;
    height: 46px !important;
    padding: 0.5rem !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
}

/* --- WooCommerce Products Grid & Cards --- */
ul.products::before,
ul.products::after {
    display: none !important;
}

ul.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

@media (min-width: 768px) {
    ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card Base & Hover Effect */
ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Product Image */
ul.products li.product a img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    width: 100%;
    height: auto;
    display: block;
}

/* Product Title */
ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--wg-font-headings);
    color: var(--wg-charcoal);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    padding: 0;
}

/* Product Price */
ul.products li.product .price {
    font-family: var(--wg-font-body);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

/* Add to Cart Button */
ul.products li.product .button.add_to_cart_button {
    background-color: var(--color-secondary);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto;
    display: inline-block;
    text-decoration: none;
}

ul.products li.product .button.add_to_cart_button:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    color: #ffffff;
}

/* --- Single Product Page --- */
.single-product .product {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .single-product .product {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.single-product .woocommerce-product-gallery {
    margin-bottom: 2rem;
}

.single-product .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: block;
}

.single-product .summary {
    display: flex;
    flex-direction: column;
}

.single-product .product_title {
    font-family: var(--wg-font-headings);
    color: var(--color-text);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.single-product .price {
    font-family: var(--wg-font-body);
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.single-product .woocommerce-product-details__short-description {
    font-family: var(--wg-font-body);
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.single-product form.cart {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.single-product .quantity input.qty {
    width: 4rem;
    height: 3.2rem;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: var(--wg-font-body);
}

.single-product .single_add_to_cart_button {
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    height: 3.2rem;
}

.single-product .single_add_to_cart_button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Vertical Product Sections (Replaced Tabs) */
.wg-vertical-product-sections {
    margin-top: 4rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 3rem;
}

.wg-product-section {
    margin-bottom: 3rem;
}

.wg-product-section .wg-section-title {
    font-family: var(--wg-font-headings);
    color: var(--color-text);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.wg-product-section p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* --- WooCommerce Cart Page --- */
.woocommerce-cart .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
}

@media (min-width: 992px) {
    .woocommerce-cart .woocommerce {
        flex-direction: row;
        align-items: flex-start;
    }
}

.woocommerce-cart .woocommerce-cart-form {
    flex: 1 1 65%;
}

.woocommerce-cart .cart-collaterals {
    flex: 1 1 35%;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Shop Table (Cart & Checkout) */
.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    text-align: left;
    font-family: var(--wg-font-body);
}

.shop_table th {
    font-family: var(--wg-font-headings);
    color: var(--color-text);
    padding: 1rem;
    border-bottom: 2px solid #eaeaea;
}

.shop_table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eaeaea;
    vertical-align: middle;
}

/* Cart Product Thumbnails */
.shop_table.cart .product-thumbnail img {
    width: 80px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Cart Links */
.shop_table.cart .product-name a {
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.1rem;
}
.shop_table.cart .product-name a:hover {
    color: var(--color-primary);
}

/* Remove Button */
.shop_table.cart .product-remove a.remove {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}
.shop_table.cart .product-remove a.remove:hover {
    color: var(--color-secondary);
}

/* --- WooCommerce Checkout Page --- */
.woocommerce-checkout {
    padding: 2rem 0;
}

.woocommerce-checkout .checkout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 992px) {
    .woocommerce-checkout .checkout {
        flex-direction: row;
        align-items: flex-start;
    }
    
    #customer_details {
        flex: 1 1 60%;
    }

    #order_review_heading,
    #order_review {
        flex: 1 1 40%;
    }
}

#customer_details .col-1,
#customer_details .col-2 {
    width: 100%;
    margin-bottom: 2rem;
}

#order_review {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Checkout Headings */
.woocommerce-checkout h3,
#order_review_heading {
    font-family: var(--wg-font-headings);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

/* --- Form Inputs --- */
.woocommerce form .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--wg-font-body);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-icon);
    border-radius: 8px;
    font-family: var(--wg-font-body);
    font-size: 1rem;
    color: var(--color-text);
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(234, 85, 157, 0.2);
}

/* --- Buttons --- */
/* Secondary Action (Update Cart) */
.woocommerce button.button[name="update_cart"] {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.woocommerce button.button[name="update_cart"]:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Primary Actions (Proceed to Checkout, Place Order) */
.woocommerce a.checkout-button,
.woocommerce button.button#place_order {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1.5rem;
}

.woocommerce a.checkout-button:hover,
.woocommerce button.button#place_order:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Cart Collaterals Heading */
.cart-collaterals h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Checkout Payment Methods */
#payment {
    background: var(--color-background);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

#payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

#payment ul.payment_methods li {
    margin-bottom: 1rem;
}

#payment div.payment_box {
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
}
