:root {
    --color-hot-pink: #e22e9c;
    /* Exact Logo Pink */
    --color-magenta: #c21e82;
    /* Darker shade for contrast */
    --color-gold: #e5c26e;
    /* Keeping Gold as it complements Pink well */
    --color-rose-pink: #feb3ba;
    /* Logo Soft Pink */
    --color-cream: #ffffec;
    /* Logo Cream */
    --color-leaf-green: #4CAF50;
    --color-dark: #2c2c2c;
    --color-light: #ffffff;
    --color-bg: #fff9fb;
    --font-heading: 'Futura', 'Century Gothic', sans-serif;
    /* Geometric Sans for Crumbl look */
    --font-body: 'Montserrat', sans-serif;
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.05);
    /* Softer, more diffused shadow */
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smoother easing */
    --gradient-primary: linear-gradient(135deg, #e22e9c, #c21e82);
    --gradient-gold: linear-gradient(135deg, #e5c26e, #d4af37, #e5c26e);
    --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    --gradient-body: #ffffff;
    /* Pure white background for cleanliness */
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    /* Reset to standard size */
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background: var(--gradient-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Removed gradientBG animation for cleaner look */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-top: 0;
    font-weight: 900;
    /* Bolder headings */
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
header {
    background: #ffb9cd !important;
    /* Fixed color always */
    padding: 0.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Left Nav, Center Logo, Right Nav */
    align-items: center;
    box-shadow: 0 4px 30px rgba(226, 46, 156, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 46, 156, 0.2);
}

.nav-left {
    justify-self: start;
}

.nav-right {
    justify-self: end;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    justify-self: center;
}

.logo img {
    height: 60px;
    /* Reduced from 80px */
    width: auto;
    border-radius: 50%;
    border: 2px solid white;
    /* White border for better contrast on pink */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    /* Dark shadow for visibility */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 550;
    color: #000;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    /* Reduced from 40px */
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    /* Reduced from 1.1rem */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.nav-text {
    position: relative;
}

.nav-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    /* White underline for visibility */
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover .nav-text::after {
    width: 100%;
}

nav a:hover {
    color: white;
    /* White text on hover for better contrast on pink header */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 8px;
    box-shadow: 0 2px 5px rgba(255, 105, 180, 0.4);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    /* Full screen on desktop */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: flex-end;
    /* Align content to right */
    color: white;
    text-align: left;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100.1%;
    /* Slight overlap to prevent sub-pixel gaps */
    height: 100.1%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}


/* Minimal Hero Content */
.hero-content-minimal {
    position: relative;
    z-index: 10;
    padding: 3rem;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    /* Slightly more opaque */
    backdrop-filter: blur(10px);
    border-radius: 30px;
    /* Fully rounded */
    color: var(--color-dark);
    margin-right: 5%;
    /* Float from right */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* Floating shadow */
}

.hero-content-minimal h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-hot-pink);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-text i {
    transition: transform 0.3s;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 35vh;
        /* Smaller height for mobile */
        min-height: auto;
    }

    .hero-content-minimal {
        display: none;
        /* Hide text on mobile */
    }

    /* Header Full Width on Mobile */
    header {
        display: flex !important;
        /* Switch to flex for mobile */
        padding: 0.5rem 1rem !important;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        justify-self: auto;
        /* Reset grid property */
        margin: 0;
    }

    .logo img {
        height: 40px;
        /* Smaller logo for mobile */
    }

    .logo-text {
        font-size: 1rem;
        /* Smaller text */
    }
}

/* Sections */
.container {
    width: 100%;
    max-width: 1200px;
    /* Fixed max-width for consistency */
    padding: 0 2rem;
    margin: 0 auto;
    /* Center the container */
}

.section-title {
    text-align: center;
    color: var(--color-magenta);
    margin-bottom: 4rem;
    font-size: 3rem;
    /* Reduced size */
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Features / About Icons */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    text-align: center;
    margin-bottom: 4rem;
}

.feature-item {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    background: white;
}

.feature-icon {
    font-size: 4rem;
    background: -webkit-linear-gradient(45deg, var(--color-hot-pink), var(--color-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.feature-item h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Reduced min-width */
    gap: 2rem;
    /* Reduced gap */
}

.product-card {
    background: white;
    border-radius: 20px;
    /* Restored rounded corners */
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 220px;
    /* Fixed width for circle */
    height: 220px;
    /* Fixed height for circle */
    border-radius: 50%;
    /* Circular shape */
    overflow: hidden;
    position: relative;
    background: #fff;
    margin: 2rem auto 0;
    /* Center horizontally */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    /* Reduced padding */
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
}

.product-category {
    color: var(--color-leaf-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.product-title {
    font-size: 1.3rem;
    /* Reduced font size */
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.product-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.5rem;
    /* Reduced font size */
    font-weight: 700;
    color: var(--color-hot-pink);
    margin-bottom: 1.5rem;
    display: block;
}

.add-to-cart {
    display: inline-block;
    width: 100%;
    padding: 12px;
    /* Reduced padding */
    background: var(--color-dark);
    /* Crumbl style: Black buttons often used */
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    /* Reduced font size */
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 194, 110, 0.5);
    background: var(--gradient-gold);
    color: var(--color-dark);
}

/* Product Detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-gallery {
    display: flex;
    gap: 2rem;
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80px;
}

.thumb-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    /* Circular thumbnails */
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumb-img:hover,
.thumb-img.active {
    opacity: 1;
    border-color: var(--color-hot-pink);
    transform: scale(1.1);
}

.main-image img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    /* Circular main image */
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        flex-direction: column-reverse;
    }

    .thumbnails {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .thumbnails .thumb-img {
        width: 60px;
    }
}

/* About Section */
.about-section {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.about-image {
    flex: 1;
    min-width: 400px;
    background-image: url('../images/10.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.about-content {
    flex: 1;
    min-width: 400px;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 251, 0.9));
}

.about-content h2 {
    color: var(--color-magenta);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* Notices */
.notice-section {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem;
    border-radius: 30px;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.notice-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.notice-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}

.notice-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.notice-list li {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.notice-list li i {
    margin-right: 15px;
    color: var(--color-gold);
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: white;
    padding: 6rem 2rem 2rem;
    margin-top: auto;
    position: relative;
}

.footer-content {
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
}

.footer-section h3 {
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    transition: var(--transition);
    font-size: 2.5rem;
    /* Increased icon size */
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #666;
}

.developer-credit {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888;
}

.developer-credit a {
    color: var(--color-gold);
    font-weight: 600;
    position: relative;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.developer-credit a:hover::after {
    width: 100%;
}

/* Cart & Admin Tables */
.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
    margin-bottom: 2rem;
}

.cart-table th {
    color: #888;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cart-table tr {
    background: white;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.cart-table tr:hover {
    transform: scale(1.01);
}

.cart-table td {
    padding: 1.5rem;
}

.cart-table td:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.cart-table td:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.cart-total {
    text-align: right;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

/* Admin */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: var(--color-dark);
    color: white;
    padding: 2rem;
    flex-shrink: 0;
}

.sidebar h2 {
    color: var(--color-gold);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.8rem;
}

.sidebar a {
    display: flex;
    align-items: center;
    color: #ccc;
    padding: 15px 20px;
    text-decoration: none;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 600;
}

.sidebar a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.sidebar a:hover,
.sidebar a.active {
    background-color: var(--color-hot-pink);
    color: white;
    transform: translateX(5px);
}

.main-content {
    flex-grow: 1;
    padding: 3rem;
    background-color: #f4f4f4;
}

.status-pending {
    color: #ff9800;
    font-weight: bold;
    background: rgba(255, 152, 0, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

.status-completed {
    color: #4caf50;
    font-weight: bold;
    background: rgba(76, 175, 80, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

.status-cancelled {
    color: #f44336;
    font-weight: bold;
    background: rgba(244, 67, 54, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

/* Responsive & Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    margin: 3px 0;
    transition: 0.4s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Other Responsive Adjustments */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* .hero height handled in earlier media query */

    .about-section {
        flex-direction: column;
    }

    .about-image {
        min-height: 300px;
    }

    .admin-dashboard {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo img {
        height: 45px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Crumbl-style Showcase Section */
.showcase-section {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    /* Increased gap to accommodate vertical pop-out */
    background: white;
    padding: 4rem 0;
    align-items: center;
}

.showcase-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    min-height: 350px;
    border-radius: 40px;
    padding: 2rem 4rem;
    position: relative;
    overflow: visible;
    background-color: white;
    /* Removed box-shadow and border as requested */
    transition: all 0.4s ease;
    gap: 50px;
    /* Added gap as requested */
}

.showcase-card:hover {
    background-color: var(--theme-color);
    /* No shadow on hover either, to keep it flat/clean or maybe a subtle one? User said "dont add box shadow" */
}

.showcase-image {
    flex: 0 0 350px;
    /* Removed negative horizontal margins */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(1.35);
    /* Make it large to pop out vertically */
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.45) rotate(5deg);
    /* Pop out even more on hover */
}

.showcase-content {
    flex: 1;
    padding-left: 3rem;
    z-index: 5;
    text-align: left;
    transition: color 0.3s ease;
}

.showcase-title {
    font-family: 'Futura', 'Century Gothic', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-dark);
    text-transform: capitalize;
}

.showcase-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    /* Line clamping */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover Text Colors */
.showcase-card:hover .showcase-title,
.showcase-card:hover .showcase-desc {
    color: white;
}

/* Alternating Layout (Left-Right) */
.showcase-card.reverse {
    flex-direction: row-reverse;
}

.showcase-card.reverse .showcase-image {
    /* No negative margins needed */
}

.showcase-card.reverse .showcase-content {
    padding-left: 0;
    padding-right: 3rem;
    text-align: right;
}

.showcase-card.reverse .showcase-actions {
    justify-content: flex-end;
}

/* Buttons */
.showcase-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-pill {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Solid Button (Order Now) */
.btn-solid {
    background: var(--color-dark);
    color: white;
    border: 2px solid var(--color-dark);
}

.showcase-card:hover .btn-solid {
    background: white;
    color: var(--theme-color);
    border-color: white;
}

/* Outline Button (Learn More) */
.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.showcase-card:hover .btn-outline {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white !important;
    color: var(--color-dark) !important;
    border-color: white !important;
}

.btn-pill:hover {
    transform: translateY(-3px);
}


.link-text {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-text:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Support Page */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: white;
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-hot-pink);
}

.support-icon {
    font-size: 3rem;
    color: var(--color-hot-pink);
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.support-card p {
    color: #666;
    margin-bottom: 0;
}

/* Support Tabs */
.support-tabs-container {
    background-color: white;
    padding: 2rem 0 0 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.support-tabs {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    cursor: pointer;
    color: #666;
    position: relative;
    transition: var(--transition);
}

.support-tab:hover {
    color: var(--color-hot-pink);
}

.support-tab i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.support-tab span {
    font-weight: 500;
    font-size: 1rem;
}

.support-tab.active {
    color: black;
}

.support-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: black;
}

.tab-content {
    display: none;
    padding: 4rem 0;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Contact Options */
.contact-options {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: black;
}

.contact-option-btn:hover {
    border-color: var(--color-hot-pink);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-option-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-option-icon {
    color: #ccc;
}

/* Suggestion Form */
.suggestion-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

/* FAQ Styles */
.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
    color: var(--color-dark);
}

.faq-category-title:first-of-type {
    margin-top: 0;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding-top: 80px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-content a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-content a:hover {
    color: var(--color-hot-pink);
}

body.no-scroll {
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Showcase Cards */
    .showcase-section {
        gap: 3rem;
        /* Increased gap for better separation */
        padding: 2rem 0;
    }

    .showcase-card {
        flex-direction: row;
        /* Horizontal layout */
        padding: 1rem;
        min-height: auto;
        text-align: left;
        gap: 0.5rem;
        width: 100%;
        border-radius: 15px;
        align-items: center;
        margin-bottom: 1rem;
        /* Extra margin for safety */
    }

    .showcase-card.reverse {
        flex-direction: row-reverse;
        /* Alternating layout */
    }

    .showcase-image {
        margin: 0;
        flex: 0 0 110px;
        /* Fixed small width for image */
    }

    .showcase-image img {
        width: 100%;
        height: auto;
        transform: scale(1);
    }

    .showcase-card:hover .showcase-image img {
        transform: scale(1.05);
    }

    .showcase-content {
        padding: 0 0 0 0.8rem;
        text-align: left !important;
        flex: 1;
    }

    .showcase-card.reverse .showcase-content {
        padding: 0 0.8rem 0 0;
        text-align: right !important;
    }

    .showcase-title {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .showcase-desc {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .showcase-actions {
        justify-content: flex-start !important;
        gap: 0.5rem;
    }

    .showcase-card.reverse .showcase-actions {
        justify-content: flex-end !important;
    }

    .btn-pill {
        padding: 4px 10px;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .btn-solid,
    .btn-outline {
        border-width: 1px;
    }
}

/* Chatbot Widget */
.chatbot-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-hot-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(226, 46, 156, 0.4);
    transition: var(--transition);
    z-index: 9999;
}

.chatbot-btn:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    /* Hidden by default */
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    border: 1px solid #eee;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: var(--color-hot-pink);
    color: white;
    padding: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-message.bot {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: #333;
}

.chat-message.user {
    background: var(--color-hot-pink);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chatbot-input-area {
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chat-option-btn {
    background: white;
    border: 1px solid var(--color-hot-pink);
    color: var(--color-hot-pink);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.chat-option-btn:hover {
    background: var(--color-hot-pink);
    color: white;
}

.chat-input-field {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.chat-input-field:focus {
    border-color: var(--color-hot-pink);
}

.chat-send-btn {
    background: var(--color-hot-pink);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.chat-send-btn:hover {
    background: var(--color-dark);
}

/* Additional Mobile Sizing Adjustments */
@media (max-width: 768px) {

    /* Event Card (Christmas Special) */
    .notice-section {
        padding: 2rem 1rem !important;
        margin-top: 2rem;
        border-radius: 20px;
    }

    .notice-section h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .notice-section p {
        font-size: 1rem !important;
    }

    .notice-list {
        gap: 1rem;
    }

    .notice-list li {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1rem;
    }

    .footer-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.95rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Event Sidebar Widget */
.event-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(100%);
    /* Hidden by default */
    background: transparent;
    /* Transparent wrapper */
    z-index: 9998;
    /* Below mobile menu overlay */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    filter: drop-shadow(-5px 5px 15px rgba(0, 0, 0, 0.2));
    /* Shadow on the whole shape */
}

.event-sidebar.active {
    transform: translateY(-50%) translateX(0);
}

.event-toggle-btn {
    position: absolute;
    left: -40px;
    /* Width of button */
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 120px;
    background: var(--event-color, var(--color-hot-pink));
    color: white;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* box-shadow handled by parent filter */
    animation: pulse-sidebar 2s infinite;
    border: 2px solid white;
    border-right: none;
}

@keyframes pulse-sidebar {
    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.05);
    }

    100% {
        transform: translateY(-50%) scale(1);
    }
}

.event-toggle-btn i {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-content {
    width: 300px;
    padding: 2rem;
    text-align: center;
    background: var(--event-color, var(--color-hot-pink));
    /* Use theme color background */
    color: white;
    /* White text */
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    position: relative;
    border: 2px solid white;
    /* White border for pop effect */
    border-right: none;
}

.event-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.countdown-mini {
    background: rgba(0, 0, 0, 0.2);
    /* Semi-transparent dark background */
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    color: white;
    display: inline-block;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-close-event {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.btn-close-event:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Mobile Adjustments for Sidebar */
@media (max-width: 768px) {
    .event-content {
        width: 260px;
        padding: 1.5rem;
    }

    .event-toggle-btn {
        width: 35px;
        left: -35px;
    }

    .vertical-text {
        font-size: 0.7rem;
    }
}

/* Desktop Scheme for Event Widget */
@media (min-width: 769px) {
    .event-sidebar {
        top: auto;
        bottom: 0;
        right: 0;
        left: auto;
        width: 0;
        height: 0;
        transform: none !important;
        background: transparent;
        filter: none;
        animation: none;
        z-index: 10000;
        transition: none;
    }

    .event-sidebar.active {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        transform: none !important;
    }

    /* The Corner Triangle Trigger */
    .event-toggle-btn {
        display: flex;
        /* Visible on desktop now */
        position: fixed;
        bottom: 0;
        right: 0;
        left: auto;
        top: auto;
        width: 120px;
        height: 120px;
        background: var(--event-color, var(--color-hot-pink));
        clip-path: polygon(100% 0, 0 100%, 100% 100%);
        /* Triangle shape */
        border-radius: 0;
        transform: none;
        animation: none;
        cursor: pointer;
        z-index: 10001;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: none;
        /* clip-path cuts shadow, use filter on parent if needed */
    }

    .event-toggle-btn:hover {
        width: 140px;
        /* Expand on hover */
        height: 140px;
    }

    /* Icon/Text inside the triangle */
    .event-toggle-btn i {
        position: absolute;
        bottom: 25px;
        right: 25px;
        font-size: 2rem;
        margin: 0;
        transform: rotate(0deg);
        transition: transform 0.4s ease;
    }

    .event-toggle-btn:hover i {
        transform: scale(1.2) rotate(-10deg);
    }

    .vertical-text {
        display: none;
        /* Hide text, just icon for cleaner look */
    }

    /* The Modal Content */
    .event-content {
        position: relative;
        transform: scale(0.92);
        width: 500px;
        max-width: 90vw;
        height: auto;
        max-height: 85vh;
        border-radius: 30px;
        padding: 3rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.0) 35%), #fff;
        color: var(--color-dark);
        border: none;
        z-index: 10002;
        overflow: auto;
        border-top: 10px solid var(--event-color);
    }

    /* Event-specific decoration (Christmas Special) */
    .event-sidebar[data-event="christmas-special"] .event-content {
        padding-top: 3.5rem;
    }

    .event-sidebar[data-event="christmas-special"] .event-content::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.18;
        background:
            radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
            radial-gradient(circle at 28% 42%, rgba(255, 255, 255, 0.8) 0 1.5px, transparent 3px),
            radial-gradient(circle at 62% 22%, rgba(255, 255, 255, 0.85) 0 2px, transparent 3px),
            radial-gradient(circle at 78% 55%, rgba(255, 255, 255, 0.75) 0 1.5px, transparent 3px),
            radial-gradient(circle at 88% 28%, rgba(255, 255, 255, 0.85) 0 2px, transparent 3px),
            linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.03) 100%);
    }

    .event-sidebar[data-event="christmas-special"] .event-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 56px;
        pointer-events: none;
        background:
            repeating-linear-gradient(135deg,
                rgba(255, 255, 255, 0.65) 0 10px,
                rgba(255, 255, 255, 0) 10px 20px),
            linear-gradient(90deg, var(--event-color), rgba(255, 255, 255, 0.15));
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .event-content h3 {
        color: var(--event-color);
        font-size: 2.5rem;
        text-shadow: none;
    }

    .event-content p {
        color: #666;
        font-size: 1.1rem;
    }

    .countdown-mini {
        background: var(--event-color);
        color: white;
        border: none;
        font-size: 1.2rem;
        padding: 15px 30px;
        margin-top: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-close-event {
        top: 20px;
        right: 20px;
        background: #f0f0f0;
        color: #333;
    }

    .btn-close-event:hover {
        background: #e0e0e0;
    }

    /* Active State (Modal Open) */
    .event-sidebar.active .event-content {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: scale(1);
    }

    /* Backdrop */
    .event-sidebar.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        z-index: 10000;
        animation: fadeIn 0.3s ease;
    }

    /* Hide trigger when open? Optional. Let's keep it but maybe shrink it or change icon */
    .event-sidebar.active .event-toggle-btn {
        transform: scale(0);
        /* Hide trigger when modal is open */
    }
}

/* Cart Page Enhancements */
.cart-page-content {
    padding-bottom: 5rem;
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
    /* Vertical gap between rows */
}

.cart-table tr {
    background: white;
    box-shadow: var(--shadow-card);
    border-radius: 15px;
    transition: var(--transition);
}

.cart-table td {
    padding: 1.5rem;
    border: none;
}

.discount-form {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.discount-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.discount-input:focus {
    outline: none;
    border-color: var(--color-hot-pink);
}

.btn-discount {
    padding: 12px 25px;
    background: var(--color-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-discount:hover {
    background: var(--color-hot-pink);
    transform: translateY(-2px);
}

.cart-summary-box {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 100px;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
    box-shadow: 0 10px 20px rgba(226, 46, 156, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.btn-checkout:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(226, 46, 156, 0.4);
}

/* Product Page Enhancements */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 15px;
    width: fit-content;
}

.quantity-input {
    width: 60px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.quantity-input:focus {
    outline: none;
}

.add-to-cart-btn {
    flex-grow: 1;
    padding: 18px;
    background: var(--color-dark);
    color: white;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--color-hot-pink);
    transform: translateY(-3px);
}

/* Checkout Page Enhancements */
.checkout-page-content {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.checkout-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-hot-pink);
    background: #fff;
}

.payment-box {
    background: #fdf2f8;
    padding: 2rem;
    border-radius: 20px;
    border: 2px dashed var(--color-rose-pink);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-pay {
    width: 100%;
    padding: 20px;
    background: var(--color-leaf-green);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.btn-pay:hover {
    background: #43a047;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.3);
}

@media (max-width: 768px) {
    .checkout-grid {
        flex-direction: column;
    }
}