/* ============================================
   Memory of a Star — English Candy Style
   Bright pastels, fun, joyful, bubbly
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ----- CSS Variables ----- */
:root {
    --candy-pink: #ff6b9d;
    --candy-mint: #2dd4a8;
    --candy-lavender: #a78bfa;
    --candy-peach: #ffb380;
    --candy-sky: #60c3ff;
    --candy-lemon: #ffd43b;
    --candy-coral: #ff8a80;
    --bg-color: #fefcfb;
    --text-color: #2d3436;
    --card-bg: #ffffff;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition-bounce: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.3s ease;
}

/* ============================================
   RESET & BASE TYPOGRAPHY
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--candy-pink);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--candy-lavender);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 107, 157, 0.12);
    padding: 0;
    transition: var(--transition-smooth);
}

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

.header-logo a {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender), var(--candy-sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.header-logo a:hover {
    opacity: 0.85;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-bounce);
}

.header-nav a:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--candy-pink);
    transform: translateY(-1px);
}

.header-nav a.active {
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    color: #fff;
}

/* Nav user area */
.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--border-radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-bounce);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.btn-nav:hover {
    background: rgba(167, 139, 250, 0.1);
    color: var(--candy-lavender);
    transform: translateY(-1px);
}

.btn-nav-accent {
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-nav-accent:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.35);
    color: #fff;
}

.cart-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart-badge span {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--candy-coral);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    color: var(--text-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(180deg, #0b0b2e 0%, #1a1044 40%, #2d1b69 70%, #4a2080 100%);
    padding: 110px 0 150px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}

/* Subtle nebula glow */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(255,107,157,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(96,195,255,0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(167,139,250,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ---- Starry sky ---- */
.hero-stars {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Individual star dot */
.hero-stars span {
    position: absolute;
    border-radius: 50%;
    background: #fff;
}

/* Small stars — gentle twinkle */
.hero-stars .star-sm {
    width: 2px; height: 2px;
    animation: twinkle 4s ease-in-out infinite;
}

/* Medium stars — brighter pulse */
.hero-stars .star-md {
    width: 3px; height: 3px;
    animation: twinkle 3s ease-in-out infinite;
    box-shadow: 0 0 4px 1px rgba(255,255,255,0.3);
}

/* Bright stars — flash effect (brille fort un court instant) */
.hero-stars .star-lg {
    width: 4px; height: 4px;
    animation: starFlash 5s ease-in-out infinite;
    box-shadow: 0 0 6px 2px rgba(255,255,255,0.4);
}

/* Shooting / colored accent stars */
.hero-stars .star-accent {
    width: 3px; height: 3px;
    animation: starFlashColor 6s ease-in-out infinite;
}

/* --- Keyframes --- */
@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    40%      { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 0.9; transform: scale(1.2); }
    60%      { opacity: 0.5; transform: scale(1); }
}

/* Flash: mostly dim, then a brief bright burst */
@keyframes starFlash {
    0%, 100% { opacity: 0.15; transform: scale(1); box-shadow: 0 0 4px 1px rgba(255,255,255,0.1); }
    45%      { opacity: 0.2; transform: scale(1); box-shadow: 0 0 4px 1px rgba(255,255,255,0.1); }
    50%      { opacity: 1; transform: scale(2.5); box-shadow: 0 0 20px 6px rgba(255,255,255,0.7), 0 0 40px 12px rgba(167,139,250,0.3); }
    55%      { opacity: 0.3; transform: scale(1); box-shadow: 0 0 4px 1px rgba(255,255,255,0.1); }
}

/* Colored flash: pink/blue accent */
@keyframes starFlashColor {
    0%, 100% { opacity: 0.1; transform: scale(1); box-shadow: none; }
    48%      { opacity: 0.15; transform: scale(1); }
    50%      { opacity: 1; transform: scale(3); box-shadow: 0 0 18px 5px rgba(255,107,157,0.6), 0 0 35px 10px rgba(96,195,255,0.3); background: #ff6b9d; }
    52%      { opacity: 0.2; transform: scale(1); box-shadow: none; background: #fff; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius-pill);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    line-height: 1.4;
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--candy-pink), #ff85b1);
    color: #fff;
    border-color: transparent;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--candy-lavender), #b9a0ff);
    color: #fff;
    border-color: transparent;
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--candy-pink);
    border-color: var(--candy-pink);
}

.btn-outline:hover {
    background: var(--candy-pink);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.btn-mint {
    background: linear-gradient(135deg, var(--candy-mint), #50e0b8);
    color: #fff;
    border-color: transparent;
}

.btn-mint:hover {
    box-shadow: 0 8px 25px rgba(45, 212, 168, 0.4);
    color: #fff;
}

.btn-danger {
    background: linear-gradient(135deg, var(--candy-coral), #ff9e95);
    color: #fff;
    border-color: transparent;
}

.btn-danger:hover {
    box-shadow: 0 8px 25px rgba(255, 138, 128, 0.4);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--candy-pink);
    border-color: transparent;
}

.btn-white:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: var(--candy-pink);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-alt {
    padding: 80px 0;
    background: rgba(255, 107, 157, 0.04);
}

.section-mint {
    padding: 80px 0;
    background: rgba(45, 212, 168, 0.04);
}

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

.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #636e72;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--candy-pink);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

.product-card:nth-child(2) {
    border-left-color: var(--candy-lavender);
}

.product-card:nth-child(3) {
    border-left-color: var(--candy-mint);
}

.product-card:nth-child(4) {
    border-left-color: var(--candy-sky);
}

.product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.15);
}

.product-card:nth-child(2):hover {
    box-shadow: 0 12px 30px rgba(167, 139, 250, 0.15);
}

.product-card:nth-child(3):hover {
    box-shadow: 0 12px 30px rgba(45, 212, 168, 0.15);
}

.product-card:nth-child(4):hover {
    box-shadow: 0 12px 30px rgba(96, 195, 255, 0.15);
}

.product-card-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(167, 139, 250, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

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

.product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card-body p {
    color: #636e72;
    font-size: 0.9rem;
    flex: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: #636e72;
}

.product-features li::before {
    content: '\2713  ';
    color: var(--candy-mint);
    font-weight: 700;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-pink {
    background: rgba(255, 107, 157, 0.12);
}

.feature-icon-mint {
    background: rgba(45, 212, 168, 0.12);
}

.feature-icon-lavender {
    background: rgba(167, 139, 250, 0.12);
}

.feature-icon-sky {
    background: rgba(96, 195, 255, 0.12);
}

.feature-icon-peach {
    background: rgba(255, 179, 128, 0.12);
}

.feature-icon-lemon {
    background: rgba(255, 212, 59, 0.12);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    background: #fff;
    transition: var(--transition-smooth);
    outline: none;
}

.form-control:focus {
    border-color: var(--candy-lavender);
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.12);
}

.form-control::placeholder {
    color: #b2bec3;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23636e72' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-text {
    font-size: 0.82rem;
    color: #636e72;
    margin-top: 4px;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.06), rgba(167, 139, 250, 0.06), rgba(96, 195, 255, 0.06));
    padding: 40px 20px;
}

.auth-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid;
    border-image: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender), var(--candy-sky)) 1;
}

.auth-card h1 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-card .subtitle {
    text-align: center;
    color: #636e72;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-card .auth-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #636e72;
}

.auth-card .auth-links a {
    font-weight: 600;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(45, 212, 168, 0.1);
    color: #0d7a5f;
    border: 1px solid rgba(45, 212, 168, 0.25);
}

.alert-danger {
    background: rgba(255, 138, 128, 0.1);
    color: #c0392b;
    border: 1px solid rgba(255, 138, 128, 0.25);
}

.alert-info {
    background: rgba(96, 195, 255, 0.1);
    color: #1a6ea0;
    border: 1px solid rgba(96, 195, 255, 0.25);
}

.alert-warning {
    background: rgba(255, 212, 59, 0.1);
    color: #856404;
    border: 1px solid rgba(255, 212, 59, 0.25);
}

/* ============================================
   CART TABLE
   ============================================ */
.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-table thead {
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    color: #fff;
}

.cart-table th {
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
}

.cart-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    vertical-align: middle;
}

.cart-table tbody tr:last-child td {
    border-bottom: none;
}

.cart-table tbody tr:hover {
    background: rgba(167, 139, 250, 0.03);
}

.cart-total {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-top: 24px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.cart-total-row.total {
    border-top: 2px solid #f0f0f0;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender), var(--candy-sky));
    padding: 60px 0 80px;
    text-align: center;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    margin-bottom: -20px;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.page-header .breadcrumb a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-content {
    padding: 60px 0;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-image {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(167, 139, 250, 0.08));
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    font-size: 5rem;
}

.product-detail-image img {
    border-radius: var(--border-radius);
    max-height: 400px;
    object-fit: contain;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-detail-info .product-price {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-detail-info .product-description,
.product-detail-info .description {
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.7;
    white-space: pre-line;
}

/* Variant selector */
.variant-selector {
    margin-bottom: 1.5rem;
}

.variant-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-option {
    padding: 10px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-bounce);
    background: #fff;
    color: var(--text-color);
    text-align: center;
}

.variant-option:hover {
    border-color: var(--candy-lavender);
    background: rgba(167, 139, 250, 0.05);
}

.variant-option.active,
.variant-option.selected,
.variant-option input:checked + .variant-option {
    border-color: var(--candy-pink);
    background: rgba(255, 107, 157, 0.08);
    color: var(--candy-pink);
    font-weight: 600;
}

.variant-option .duration {
    font-weight: 600;
    font-size: 0.85rem;
    color: #636e72;
    margin-bottom: 4px;
}

.variant-option .price {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: var(--transition-smooth);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

.faq-question:hover {
    color: var(--candy-pink);
    background: rgba(255, 107, 157, 0.03);
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--candy-lavender);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    content: '\2212';
    color: var(--candy-pink);
}

.faq-item.active .faq-question {
    color: var(--candy-pink);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #2d3436;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--candy-pink);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    min-height: calc(100vh - 70px);
}

.dashboard-sidebar {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.dashboard-sidebar h3 {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    color: #636e72;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-sidebar .user-info {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dashboard-sidebar .user-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
    transition: var(--transition-bounce);
}

.sidebar-nav a:hover {
    background: rgba(255, 107, 157, 0.08);
    color: var(--candy-pink);
    transform: translateX(3px);
}

.sidebar-nav a.active {
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    color: #fff;
}

.dashboard-content {
    padding: 10px 0;
}

.dashboard-content h1 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-bounce);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon-pink { background: rgba(255, 107, 157, 0.12); }
.stat-icon-mint { background: rgba(45, 212, 168, 0.12); }
.stat-icon-lavender { background: rgba(167, 139, 250, 0.12); }
.stat-icon-sky { background: rgba(96, 195, 255, 0.12); }
.stat-icon-peach { background: rgba(255, 179, 128, 0.12); }
.stat-icon-lemon { background: rgba(255, 212, 59, 0.12); }

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 0.85rem;
    color: #636e72;
    margin-bottom: 0;
}

/* ============================================
   DATA TABLE
   ============================================ */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.data-table thead {
    background: #f8f9fa;
}

.data-table th {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: left;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #f0f0f0;
}

.data-table td {
    padding: 14px 18px;
    font-size: 0.9rem;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background: rgba(167, 139, 250, 0.03);
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(45, 212, 168, 0.12);
    color: #0d7a5f;
}

.badge-warning {
    background: rgba(255, 212, 59, 0.15);
    color: #856404;
}

.badge-danger {
    background: rgba(255, 138, 128, 0.12);
    color: #c0392b;
}

.badge-info {
    background: rgba(96, 195, 255, 0.12);
    color: #1a6ea0;
}

.badge-pink {
    background: rgba(255, 107, 157, 0.12);
    color: #d63384;
}

.badge-lavender {
    background: rgba(167, 139, 250, 0.12);
    color: #6c47d9;
}

/* ============================================
   MEDIA GRID
   ============================================ */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.media-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.media-card img,
.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.media-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 52, 54, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.media-card:hover .media-card-overlay {
    opacity: 1;
}

.media-card-overlay .btn {
    transform: scale(0.8);
    transition: var(--transition-bounce);
}

.media-card:hover .media-card-overlay .btn {
    transform: scale(1);
}

.media-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
    font-size: 0.8rem;
}

.media-card-empty {
    aspect-ratio: 1;
    border: 3px dashed #ddd;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #b2bec3;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.media-card-empty:hover {
    border-color: var(--candy-lavender);
    color: var(--candy-lavender);
    background: rgba(167, 139, 250, 0.04);
}

.media-card-empty .upload-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

/* ============================================
   UPLOAD ZONE
   ============================================ */
.upload-zone {
    border: 3px dashed #ddd;
    border-radius: var(--border-radius);
    padding: 48px 24px;
    text-align: center;
    background: rgba(167, 139, 250, 0.03);
    transition: var(--transition-smooth);
    cursor: pointer;
    margin-bottom: 24px;
}

.upload-zone:hover,
.upload-zone.drag-hover {
    border-color: var(--candy-lavender);
    background: rgba(167, 139, 250, 0.08);
}

.upload-zone.drag-hover {
    transform: scale(1.01);
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.15);
}

.upload-zone .upload-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}

.upload-zone p {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.upload-zone .upload-hint {
    font-size: 0.82rem;
    color: #b2bec3;
    margin-top: 8px;
}

/* ============================================
   RECIPIENT CARDS
   ============================================ */
.recipient-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    border-left: 4px solid var(--candy-lavender);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    transition: var(--transition-bounce);
}

.recipient-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.recipient-card-info {
    flex: 1;
}

.recipient-card-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.recipient-card-info p {
    color: #636e72;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.recipient-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ============================================
   SLIDESHOW PAGE
   ============================================ */
.slideshow-page {
    background: #1a1a2e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20px;
    position: relative;
}

.slideshow-container {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.slide {
    text-align: center;
    display: none;
}

.slide.active {
    display: block;
}

.slide img,
.slide video {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
}

.slide audio {
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    display: block;
}

.slide-caption {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.8;
}

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slideshow-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.slideshow-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.slideshow-counter {
    font-size: 0.9rem;
    opacity: 0.6;
}

.slideshow-back {
    position: absolute;
    top: 20px;
    left: 20px;
}

/* ============================================
   PAYPAL BOX
   ============================================ */
.paypal-box {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.paypal-box h3 {
    margin-bottom: 1rem;
}

.paypal-box .total-amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.paypal-logo {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #003087;
    font-weight: 700;
    font-style: italic;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #b2bec3;
}

.empty-state .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.empty-state h3 {
    color: #636e72;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.empty-state p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.divider {
    height: 1px;
    background: #f0f0f0;
    margin: 24px 0;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(167, 139, 250, 0.1);
    color: var(--candy-lavender);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.flex {
    display: flex;
}

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ============================================
   RESPONSIVE — 992px
   ============================================ */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: static;
    }

    .sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }

    .sidebar-nav a {
        flex: 0 0 auto;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 80px 0 120px;
    }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        gap: 4px;
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        width: 100%;
        padding: 12px 18px;
    }

    .nav-user {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
        margin-top: 8px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 60px 0 100px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-alt,
    .section-mint {
        padding: 50px 0;
    }

    .page-header {
        padding: 40px 0 60px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cart-table {
        font-size: 0.85rem;
    }

    .cart-table th,
    .cart-table td {
        padding: 10px 12px;
    }

    .auth-card {
        padding: 28px 24px;
    }

    .slideshow-controls button {
        width: 44px;
        height: 44px;
    }

    .variant-selector {
        flex-direction: column;
    }

    .variant-options {
        flex-direction: column;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }
}

/* ============================================
   ADDITIONAL: Account page specifics
   ============================================ */
.media-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.media-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.media-card-preview {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f0ff, #fff0f6);
    overflow: hidden;
}
.media-card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media-type-icon {
    font-size: 3rem;
    opacity: 0.6;
}
.media-card-info {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.85rem;
    background: #fff;
    position: relative;
}
.media-card-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}
.media-card-delete {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(224,49,49,0.85);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
}
.media-card:hover .media-card-delete { opacity: 1; }

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.recipient-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    border-left: 4px solid #ff6b9d;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    gap: 16px;
    flex-wrap: wrap;
}
.recipient-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.upload-tab {
    background: #f0f0f0;
    color: #636e72;
    border: none;
    cursor: pointer;
}
.upload-tab.active {
    background: #a78bfa;
    color: #fff;
}
.upload-panel {
    margin-bottom: 12px;
}

.user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto;
}
