/* Cart Screen Styles */
.cart-screen-container {
    padding: 20px;
    padding-bottom: 100px;
}

.cart-items-section {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cart-item-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.cart-item-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cart-item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.cart-item-option {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.cart-item-option::after {
    content: " • ";
    margin: 0 4px;
    color: #ddd;
}

.cart-item-option:last-child::after {
    content: none;
}

.cart-item-price {
    color: #8BC6B8;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.btn-delete-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete-item:hover {
    background: #fee;
    border-color: #fcc;
    color: #e53e3e;
}

.btn-delete-item:active {
    transform: scale(0.98);
}

.btn-delete-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-recommendations {
    margin: 30px 0;
}

.cart-recommendations h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.recommendation-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.2s;
}

.recommendation-card:active {
    transform: scale(0.98);
}

.recommendation-card-image {
    width: 100%;
    height: 100px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.recommendation-card-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.recommendation-card-price {
    color: #8BC6B8;
    font-weight: 600;
    font-size: 14px;
}

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #666;
}

.summary-row.total {
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
}

.cart-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.btn-continue-cart {
    width: 100%;
    padding: 16px;
    background: #8BC6B8;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-continue-cart:hover {
    background: #7ab5a7;
}

.btn-continue-cart:active {
    transform: scale(0.98);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Loyalty Details Screen Styles */
.loyalty-details-container {
    padding: 20px;
    padding-bottom: 100px;
    background: #f5f5f5;
    min-height: calc(100vh - 60px);
}

.loyalty-detail-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.loyalty-detail-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    text-align: center;
    margin-bottom: 24px;
}

.loyalty-detail-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8BC6B8 0%, #6BA89A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(139, 198, 184, 0.3);
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
}

.progress-number {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    z-index: 1;
}

.progress-bar-horizontal {
    width: 100%;
    height: 8px;
    background: #E8E8E8;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill-horizontal {
    height: 100%;
    background: linear-gradient(90deg, #8BC6B8 0%, #6BA89A 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.loyalty-rewards {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #8BC6B8 0%, #6BA89A 100%);
    border-radius: 12px;
    width: 100%;
    justify-content: center;
}

.reward-icon {
    font-size: 24px;
}

.reward-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.reward-count {
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    min-width: 40px;
    text-align: center;
}

.campaign-info-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.campaign-info-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.accordion-item {
    border-bottom: 1px solid #E8E8E8;
    padding: 16px 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.accordion-header span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    flex: 1;
}

.accordion-header svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #666;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-top: 12px;
}

.accordion-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.loyalty-terms {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.loyalty-terms p {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    text-align: center;
}

/* Make loyalty card clickable */
.loyalty-card {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.loyalty-card:active {
    transform: scale(0.98);
}

:root {
    --primary-color: #8BC6B8;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --gray-bg: #f5f5f5;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #f8f9fa;
    max-width: 430px;
    margin: 0 auto;
    overflow-x: hidden;
}

.app-container {
    position: relative;
    min-height: 100vh;
    background: var(--white);
}

/* Screens */
.screen {
    display: none;
    min-height: 100vh;
    animation: fadeIn 0.3s ease;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Welcome Screen */
.welcome-content {
    padding: 40px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(139, 198, 184, 0.1) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coffee-image {
    position: relative;
    margin: 0 auto 30px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-emoji {
    font-size: 120px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    animation: float 3s ease-in-out infinite;
}

.thumbs-emoji {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    animation: bounce 2s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.coffee-cup {
    font-size: 120px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.thumbs-up {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    animation: bounce 2s infinite;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    background: var(--dark-bg);
    color: var(--white);
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.welcome-content h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.welcome-actions {
    margin-top: 30px;
}

.welcome-greeting {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease;
}

.welcome-greeting span {
    color: var(--primary-color);
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Buttons */
.btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.btn-dark:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
    font-weight: 700;
}

.btn-login-welcome {
    width: 100%;
    max-width: 320px;
    margin: 24px auto;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #6DB09A 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 198, 184, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.btn-login-welcome:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 198, 184, 0.4);
}

.btn-login-welcome:active {
    transform: scale(0.98);
}

.btn .icon {
    font-size: 20px;
}

/* Screen Header */
.screen-header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.screen-header.dark {
    background: var(--dark-bg);
    color: var(--white);
}

.btn-back {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    color: #fff;
    flex-shrink: 0;
    line-height: 1;
}

.screen-header h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

/* Forms */
.form-container {
    padding: 30px 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.text-center {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.text-center a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Branch List / Location Selection */
.branch-list {
    padding: 20px;
}

.branch-item {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.branch-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 198, 184, 0.1), transparent);
    transition: left 0.6s ease;
}

.branch-item:hover::before {
    left: 100%;
}

.branch-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(139, 198, 184, 0.15);
}

.branch-item:active {
    transform: translateY(-2px) scale(0.98);
}

.branch-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-item h3::before {
    content: '📍';
    font-size: 18px;
}

.branch-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 4px;
}

.branch-item .branch-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.branch-item .branch-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

.branch-item .branch-detail-item svg,
.branch-item .branch-detail-item::before {
    flex-shrink: 0;
}

.branch-item .branch-phone::before {
    content: '📞';
}

.branch-item .branch-hours::before {
    content: '🕐';
}

.branch-item .branch-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 12px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.branch-item .branch-map:hover {
    background: #6fb4a3;
    transform: scale(1.05);
}

.branch-item .branch-map::before {
    content: '🗺️';
}

/* Location Container */
.location-container {
    padding: 30px 24px;
}

.location-container h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-bg);
    position: relative;
    padding-left: 14px;
    animation: fadeInUp 0.5s ease;
}

.location-container h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 3px;
}

#branchesContainer {
    animation: fadeInUp 0.6s ease;
}

/* Branch Cards */
.branch-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.branch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.branch-card.selected {
    background: linear-gradient(135deg, rgba(139, 198, 184, 0.1) 0%, rgba(139, 198, 184, 0.05) 100%);
    border-color: var(--primary-color);
    border-width: 2px;
}

.branch-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.branch-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-name::before {
    content: '🏪';
    font-size: 18px;
}

.branch-address {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    padding-left: 26px;
}

.branch-phone {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
    padding-left: 26px;
}

.branch-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.branch-phone a:hover {
    text-decoration: underline;
}

.branch-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.btn-map {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--gray-bg);
    color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-map:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-select-branch {
    flex: 1;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-select-branch:hover {
    background: #6fb4a3;
    border-color: #6fb4a3;
    transform: translateY(-1px);
}

.btn-select-branch:active {
    transform: scale(0.98);
}

.btn-select-branch.selected {
    background: var(--dark-bg);
    color: var(--white);
    border-color: var(--dark-bg);
}

.btn-select-branch.selected::before {
    content: '✓ ';
    margin-right: 4px;
}

.form-select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-select:disabled {
    background: var(--gray-bg);
    cursor: not-allowed;
    color: var(--text-light);
}

.location-container .btn {
    margin-top: 20px;
}

.location-container .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Home Screen */
.home-header {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    padding-bottom: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--dark-bg);
    color: var(--white);
}

.notification-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
    position: relative;
}

.notification-btn .notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff4444;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

.logo-small {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.qr-btn {
    background: var(--white);
    color: var(--dark-bg);
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.branch-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary-color);
}

.branch-selector button {
    margin-left: auto;
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Campaign Banner */
.campaign-banner {
    margin: 15px 20px;
    background: linear-gradient(135deg, #FFE5B4 0%, #FFD4A3 100%);
    border-radius: 12px;
    padding: 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark-bg);
}

/* Loyalty Card */
.loyalty-card {
    margin: 0 20px 15px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 15px;
}

.loyalty-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
}

.loyalty-header button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s;
}

.loyalty-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #666;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-tab svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.category-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.category-tab.active svg {
    stroke: white;
    fill: white;
}

/* Products Grid */
.products-grid {
    padding: 0 20px 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.product-card:active {
    transform: scale(0.98);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.product-info {
    padding: 12px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.add-to-cart {
    background: var(--dark-bg);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
}
/* Quantity Control in Cart */
.cart-item .quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item .quantity-btn {
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #333;
}

.cart-item .quantity-btn:hover {
    background: #8BC6B8;
    border-color: #8BC6B8;
    color: white;
}

.cart-item .quantity-btn:active {
    transform: scale(0.95);
}

.cart-item .quantity-control span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 24px;
    text-align: center;
}


.in-cart-badge {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.in-cart-badge:active {
    transform: scale(0.95);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: var(--gray-bg);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.nav-item {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 11px;
    position: relative;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item .icon {
    font-size: 22px;
}

.nav-item .badge {
    position: absolute;
    top: -5px;
    right: 5px;
    background: red;
    color: var(--white);
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
}

/* Wallet Screen */
.wallet-container {
    background: var(--dark-bg);
    min-height: calc(100vh - 60px);
    color: var(--white);
}

.wallet-header {
    padding: 40px 20px;
    text-align: center;
}

.wallet-header p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.balance {
    font-size: 48px;
    font-weight: 700;
}

.wallet-deposit {
    background: var(--white);
    color: var(--dark-bg);
    border-radius: 24px 24px 0 0;
    padding: 30px 20px;
    min-height: 400px;
}

.deposit-select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 10px;
}

.deposit-info {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.payment-method {
    margin-top: 30px;
}

.payment-method p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.payment-options span {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}

.payment-note {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-deposit {
    margin-top: 20px;
}

/* Profile Screen */
.profile-container {
    padding: 20px;
}

.profile-header {
    text-align: center;
    padding: 30px 0;
}

.avatar {
    width: 80px;
    height: 80px;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 15px;
}

.profile-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-header p {
    font-size: 14px;
    color: var(--text-light);
}

.profile-menu {
    margin-top: 20px;
}

.menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-item .icon {
    font-size: 24px;
}

.menu-item .value {
    margin-left: auto;
    font-weight: 600;
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: flex-end;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.btn-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
}

.cart-items {
    padding: 20px;
    min-height: 200px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--gray-bg);
    border-radius: 12px;
    margin-bottom: 10px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 13px;
    color: var(--text-light);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Cart Recommendations Section */
.cart-recommendations {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: #FAFAFA;
}

.cart-recommendations h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.recommendations-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.recommendations-grid::-webkit-scrollbar {
    height: 4px;
}

.recommendations-grid::-webkit-scrollbar-track {
    background: transparent;
}

.recommendations-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.recommendation-item {
    flex: 0 0 160px;
    background: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.recommendation-item:active {
    transform: scale(0.98);
}

.recommendation-image {
    width: 100%;
    height: 120px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    position: relative;
}

.recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommendation-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.recommendation-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-bg);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.recommendation-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-bg);
}

.recommendation-add {
    width: 28px;
    height: 28px;
    background: var(--dark-bg);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.recommendation-add:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.recommendation-add:active {
    transform: scale(0.95);
}

/* Empty cart with recommendations */
.cart-empty-with-start {
    padding: 40px 20px;
    text-align: center;
}

.cart-empty-with-start .icon {
    font-size: 60px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.cart-empty-with-start p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-start-shopping {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-start-shopping:hover {
    background: #6fb4a3;
    transform: scale(1.05);
}

.btn-start-shopping:active {
    transform: scale(0.95);
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

/* Search Screen - New Design */
.search-header-new {
    position: sticky;
    top: 0;
    background: #1A1A1A;
    padding: 16px 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-header-new .btn-back {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    color: #fff;
    flex-shrink: 0;
    line-height: 1;
}

.search-header-new h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.search-input-container {
    padding: 16px 20px;
    background: var(--white);
}

.search-bar-new {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar-new svg {
    position: absolute;
    left: 16px;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.search-bar-new input {
    width: 100%;
    padding: 14px 50px 14px 50px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #F5F5F5;
    transition: all 0.3s ease;
}

.search-bar-new input:focus {
    outline: none;
    background: #EBEBEB;
}

.search-bar-new input::placeholder {
    color: #999999;
    font-weight: 400;
}

.clear-btn {
    position: absolute;
    right: 14px;
    background: #D0D0D0;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
    z-index: 1;
}

.clear-btn:hover {
    background: #B0B0B0;
}

.clear-btn:active {
    transform: scale(0.95);
}

.search-content {
    padding: 20px;
    padding-bottom: 100px;
}

/* Popular Searches - New Design */
.popular-searches-new {
    margin-bottom: 24px;
}

.popular-searches-new h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--dark-bg);
}

.search-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-pill {
    background: var(--white);
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-pill:hover {
    background: #F5F5F5;
    border-color: var(--primary-color);
}

.search-pill:active {
    transform: scale(0.95);
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Bestsellers Section */
.bestsellers-section {
    margin-top: 20px;
}

.bestsellers-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--dark-bg);
}

/* Product List - New Design */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-list-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.product-list-item:active {
    transform: scale(0.98);
}

.product-list-image {
    width: 80px;
    height: 80px;
    background: var(--gray-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.product-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-list-info {
    flex: 1;
    min-width: 0;
}

.product-list-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 4px;
    line-height: 1.3;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-list-description {
    font-size: 12px;
    color: #999999;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-list-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-bg);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-list-add {
    width: 36px;
    height: 36px;
    background: var(--dark-bg);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.product-list-add:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.product-list-add:active {
    transform: scale(0.95);
}

/* Quantity Control for Product List */
.product-list-item .quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.product-list-item .quantity-control .quantity-btn {
    width: 32px;
    height: 32px;
    background: var(--dark-bg);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.product-list-item .quantity-control .quantity-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.product-list-item .quantity-control .quantity-btn:active {
    transform: scale(0.95);
}

.product-list-item .quantity-control span {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-bg);
}

/* Empty search results */
.search-results:empty {
    display: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state .icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-light);
}

/* Product Detail Modal */
.product-detail-modal {
    max-height: 95vh;
    width: 100%;
}

.product-detail-modal .modal-content {
    width: 100%;
    max-height: 95vh;
    border-radius: 0;
}

.product-detail-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding: 20px;
}

.product-detail-info h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.product-detail-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.product-detail-info .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.product-detail-info .base-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-detail-info .total-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
}

/* Product Options Section */
.product-options-section,
.product-addons-section {
    padding: 0 20px 20px;
}

.product-options-section h3,
.product-addons-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.option-group {
    margin-bottom: 20px;
}

.option-group-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-value {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.option-value:hover {
    border-color: var(--primary-color);
}

.option-value.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--dark-bg);
    font-weight: 600;
}

.option-value .price-modifier {
    font-size: 12px;
    color: var(--text-light);
}

.option-value.selected .price-modifier {
    color: var(--dark-bg);
}

/* Add-ons List */
.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-item {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-item:hover {
    border-color: var(--primary-color);
}

.addon-item.selected {
    border-color: var(--primary-color);
    background: rgba(139, 198, 184, 0.1);
}

.addon-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.addon-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.addon-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-bg);
}

.addon-item-price {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.addon-item.selected .addon-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.addon-item-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gray-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    margin: 0 20px 15px;
}

.qty-btn {
    background: var(--gray-bg);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--primary-color);
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity-selector span {
    font-size: 18px;
    font-weight: 700;
    min-width: 35px;
    text-align: center;
}

/* Add to Cart Button */
.btn-add-to-cart {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 10;
}

.btn-add-to-cart span:last-child {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-add-to-cart span:last-child::before {
    content: '+';
    font-size: 18px;
    font-weight: 600;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--dark-bg);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification.toast-success {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.toast-notification.toast-error {
    background: #dc3545;
    color: var(--white);
}

.toast-notification.toast-warning {
    background: #ffc107;
    color: var(--dark-bg);
}

.toast-notification.toast-info {
    background: var(--dark-bg);
    color: var(--white);
}

/* Full Screen Product Detail */
.product-detail-fullscreen {
    align-items: flex-start;
}

.product-detail-fullscreen .modal-content {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    animation: none;
}

.product-detail-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 20;
    transition: opacity 0.3s ease;
}

.product-detail-sticky-header.visible ~ .product-detail-header {
    opacity: 0;
    pointer-events: none;
}

.btn-back-round {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-favorite-round {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-back-round:active,
.btn-favorite-round:active {
    transform: scale(0.95);
}

.btn-favorite-round.active {
    background: var(--primary-color);
}

.btn-favorite-round.active svg {
    fill: red;
    stroke: red;
}

.product-detail-image-full {
    width: 100%;
    height: 350px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-detail-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info-new {
    padding: 20px;
    background: var(--white);
}

.product-detail-info-new h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

/* Loyalty Info Badge */
.loyalty-info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(139, 198, 184, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    margin-bottom: 16px;
}

.loyalty-info-badge svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.loyalty-info-badge span {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-bg);
    line-height: 1.4;
}

/* New Quantity Selector */
.quantity-selector-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px;
    background: var(--gray-bg);
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
}

.qty-btn-round {
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qty-btn-round:active {
    transform: scale(0.95);
    background: var(--primary-color);
}

.quantity-selector-new span {
    font-size: 20px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
    color: var(--dark-bg);
}

/* Product Detail Footer */
.product-detail-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1002;
}

.footer-price {
    flex: 0 0 auto;
}

.total-price-large {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
}

.btn-add-to-cart-new {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex: 1;
}

.btn-add-to-cart-new:active {
    transform: scale(0.98);
}

/* Adjustments for scrollable content */
#productDetailContent {
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 100px;
}

.product-detail-fullscreen .modal-content {
    overflow: hidden !important;
}

/* Product Detail Sticky Header */
.product-detail-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.product-detail-sticky-header.visible {
    transform: translateY(0);
}

.sticky-back-btn {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.sticky-back-btn svg {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.sticky-product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* Notifications Modal */
.notifications-list {
    padding: 20px;
    min-height: 200px;
    max-height: 70vh;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.notification-item:hover {
    background: var(--gray-bg);
}

.notification-item:active {
    transform: scale(0.98);
}

.notification-item.unread {
    background: rgba(139, 198, 184, 0.1);
    border-color: var(--primary-color);
}

.notification-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.notification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.notification-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    line-height: 1.3;
}

.notification-time {
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.notification-message {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--white);
}

/* Notification Badge */
.notification-btn .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff4444;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    padding: 0 20px;
    gap: 10px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 16px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn svg {
    flex-shrink: 0;
}

/* Tab Content */
.tab-content {
    display: none;
    min-height: calc(100vh - 120px);
}

.tab-content.active {
    display: block;
}

/* Map View - Full Screen */
.map-view-fullscreen {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    overflow: hidden;
}

/* Map Container - Full Screen */
.map-container-fullscreen {
    width: 100%;
    height: 100%;
    background: var(--gray-bg);
    position: relative;
}

#mapContainer {
    width: 100%;
    height: 100%;
    min-height: 400px;
}
/* Leaflet Harita Attribution Gizle */
.leaflet-control-attribution {
    display: none !important;
}


.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder svg {
    margin-bottom: 12px;
    opacity: 0.5;
}

.map-placeholder p {
    font-size: 14px;
}

/* Bottom Sheet for Nearest Branches - Draggable */
.bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    height: 70vh;
    max-height: 70vh;
    z-index: 500;
    animation: slideUpSheet 0.3s ease;
    transition: transform 0.3s ease;
}

@keyframes slideUpSheet {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: #D0D0D0;
    border-radius: 2px;
    margin: 12px auto 8px;
    cursor: grab;
}

.bottom-sheet-handle:active {
    cursor: grabbing;
}

.bottom-sheet-content {
    padding: 0 20px 100px;
    overflow: hidden;
    height: calc(100% - 28px);
}

.bottom-sheet-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-bg);
}

.nearest-branches-scroll {
    max-height: calc(70vh - 200px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
}

.nearest-branches-scroll::-webkit-scrollbar {
    width: 4px;
}

.nearest-branches-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.nearest-branches-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

#nearestBranchesList .nearby-branch-card {
    margin-bottom: 12px;
}

/* Nearby Branches Button */
.btn-nearby-branches {
    width: 100%;
    padding: 16px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-nearby-branches:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.btn-nearby-branches:active {
    transform: scale(0.98);
}

.btn-nearby-branches svg {
    color: var(--primary-color);
    transition: color 0.3s;
}

.btn-nearby-branches:hover svg {
    color: var(--dark-bg);
}

/* Fixed Bottom Buttons Container */
.fixed-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    background: var(--white);
    padding: 12px 20px 32px 20px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 600;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* List Select Button - Fixed */
.btn-list-select-fixed {
    width: 100%;
    padding: 14px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-list-select-fixed:hover {
    border-color: var(--primary-color);
    background: rgba(139, 198, 184, 0.1);
}

.btn-list-select-fixed:active {
    transform: scale(0.98);
}

.btn-list-select-fixed svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Continue Button - Fixed Bottom */
.btn-continue-fixed-bottom {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-continue-fixed-bottom:active {
    transform: scale(0.98);
}

.btn-continue-fixed {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 390px;
    padding: 16px;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.btn-continue-fixed:active {
    transform: translateX(-50%) scale(0.98);
}

/* Coming Soon */
.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.coming-soon svg {
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.coming-soon h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.coming-soon p {
    font-size: 15px;
    color: var(--text-light);
}

/* List Container */
.list-container {
    padding: 0;
    padding-bottom: 20px;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
}

.list-item:hover {
    background: var(--gray-bg);
}

.list-item:active {
    background: rgba(139, 198, 184, 0.1);
}

.list-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-bg);
}

.list-item svg {
    color: var(--text-light);
    flex-shrink: 0;
}

/* Location Selector */
.location-selector {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.location-dropdown {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.location-dropdown:hover {
    border-color: var(--primary-color);
}

.location-dropdown span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
}

.location-dropdown svg {
    color: var(--text-light);
    flex-shrink: 0;
}

/* Branch Detail Container */
.branch-detail-container {
    padding: 20px;
    padding-bottom: 100px;
}

#branchCardsContainer .branch-card {
    margin-bottom: 16px;
}

/* Map Select Button */
.btn-map-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 16px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-map-select:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.btn-map-select:active {
    transform: scale(0.98);
}

/* Branch Card Updates for Selection */
.branch-card {
    position: relative;
}

.branch-card.selected::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), #6fb4a3);
    border-radius: 18px;
    z-index: -1;
}

.branch-card.selected {
    border-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 430px) {
    .btn-continue-fixed {
        width: calc(100% - 30px);
    }
}

/* Selected Badge for Branch Cards */
.branch-card {
    position: relative;
}

.selected-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--dark-bg);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Branch Card Hover Effect */
.branch-card:not(.selected):hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.branch-card:not(.selected):active {
    transform: translateY(0);
}

/* Update branch actions for better spacing */
.branch-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.branch-actions .btn-map {
    flex: 1;
    min-width: 140px;
}

/* Smooth transitions for all interactive elements */
.list-item,
.tab-btn,
.location-dropdown,
.btn-list-select,
.btn-map-select,
.btn-continue,
.btn-continue-fixed {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading state for map */
.map-placeholder {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Better shadow for fixed button */
.btn-continue-fixed {
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(139, 198, 184, 0.3);
}

/* Improve tab navigation appearance */
.tab-navigation {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Add hover effect to tab buttons */
.tab-btn:hover:not(.active) {
    background: rgba(139, 198, 184, 0.05);
}

/* New Branch Card Design - Referans Resme Göre */
.branch-card {
    background: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
}

.branch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.branch-card.selected {
    background: #F8FFF8;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 198, 184, 0.2);
}

.branch-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.branch-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 10px;
}

.branch-card.selected .branch-icon {
    background: rgba(139, 198, 184, 0.15);
}

.branch-main-info {
    flex: 1;
    min-width: 0;
}

.branch-main-info .branch-name {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.branch-main-info .branch-name::before {
    content: none;
}

.branch-main-info .branch-address {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* Checkbox Styles */
.branch-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(139, 198, 184, 0.3);
}

.branch-checkbox-empty {
    width: 22px;
    height: 22px;
    border: 2px solid #D0D0D0;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--white);
}

.branch-card.selected .branch-checkbox-empty {
    display: none;
}

.branch-card:not(.selected) .branch-checkbox {
    display: none;
}

/* Phone Section */
.branch-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333333;
    margin: 0 0 10px 0;
    padding: 0;
}

.branch-phone svg {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.branch-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.branch-phone a:hover {
    text-decoration: underline;
}

/* Working Hours Section */
.branch-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666666;
    margin: 0 0 12px 0;
    padding: 8px 10px;
    background: #F9F9F9;
    border-radius: 8px;
}

.branch-hours svg {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.branch-hours span {
    font-weight: 500;
}

/* Show on Map Button */
.btn-show-on-map {
    width: 100%;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-show-on-map:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-show-on-map:active {
    transform: scale(0.98);
}

.btn-show-on-map svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Disabled Branch Card (çalışma saati dışı) */
.branch-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #F5F5F5;
}

.branch-card.disabled:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.branch-card.disabled .branch-icon {
    background: #E8E8E8;
}

.branch-card.disabled .btn-show-on-map {
    opacity: 0.5;
    cursor: not-allowed;
}

.branch-card.disabled::after {
    content: 'Şu an kapalı';
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FF6B6B;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Leaflet Map Styling */
.leaflet-container {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 4px;
    min-width: 160px !important;
    max-width: 200px !important;
}

.leaflet-popup-content {
    margin: 4px;
    font-size: 12px;
    line-height: 1.3;
}

.leaflet-popup-content h3 {
    font-size: 13px;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.leaflet-popup-content p {
    margin: 2px 0;
    font-size: 11px;
}

.leaflet-popup-content button {
    padding: 6px 10px;
    font-size: 11px;
    margin-top: 6px;
    border-radius: 6px;
}

/* User Location Marker */
.user-location-marker {
    z-index: 1000 !important;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Pulsing circle animation */
.leaflet-interactive {
    animation: pulse-circle 2s infinite ease-in-out;
}

@keyframes pulse-circle {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Branch Marker on Map - Green Circle Style */
.branch-marker-green {
    animation: bounce-in 0.5s ease;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Search Area Popup */
.search-area-popup .leaflet-popup-content-wrapper {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.search-area-popup .leaflet-popup-tip {
    display: none;
}

/* Nearby Branch Cards - Reference Design */
.nearby-branch-card {
    background: var(--white);
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nearby-branch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nearby-branch-card.selected {
    border-color: var(--primary-color);
    background: rgba(139, 198, 184, 0.05);
}

.nearby-branch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.nearby-branch-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nearby-branch-icon svg {
    color: var(--white);
}

.nearby-branch-info {
    flex: 1;
    min-width: 0;
}

.nearby-branch-name {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.nearby-branch-distance {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
}

.nearby-branch-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #D0D0D0;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.nearby-branch-checkbox.checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.nearby-branch-address {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 52px;
}

.nearby-branch-hours {
    font-size: 12px;
    color: #999999;
    padding-left: 52px;
}

/* Update nearest branches section */
.nearest-branches {
    margin-top: 20px;
}


.nearest-branches h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1A1A1A;
}

/* Nearby Branches Modal */
.nearby-branches-modal {
    max-height: 80vh;
}

.nearby-branches-list {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.loading-state .icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: pulse 1.5s infinite;
}

.loading-state p {
    font-size: 15px;
    color: var(--text-light);
}

/* Disabled nearby branch card */
.nearby-branch-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #F9F9F9;
}

.nearby-branch-card.disabled:hover {
    transform: none;
    box-shadow: none;
}

.nearby-branch-card .branch-closed-badge {
    display: inline-block;
    background: #FF6B6B;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.nearby-branch-hours.closed {
    color: #FF6B6B;
}

/* Modal Footer */
.modal-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--white);
}

#selectNearbyBranchBtn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s;
}

#selectNearbyBranchBtn:hover {
    background: #6fb4a3;
}

#selectNearbyBranchBtn:active {
    transform: scale(0.98);
}

/* Improve map controls */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-control-zoom a {
    border-radius: 8px !important;
    border: none !important;
    background: var(--white) !important;
    color: var(--dark-bg) !important;
}

.leaflet-control-zoom a:hover {
    background: var(--primary-color) !important;
}

/* Find My Location Button - Text Version */
.btn-find-location {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 400;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.btn-find-location:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(139, 198, 184, 0.4);
}

.btn-find-location:active {
    transform: translateX(-50%) scale(0.95);
}

.btn-find-location svg {
    flex-shrink: 0;
}

/* Hide when bottom sheet is visible */
.map-container-fullscreen:has(#nearestBranchesSheet[style*="display: block"]) .btn-find-location {
    display: none !important;
}

/* Loading animation for find location button */
.btn-find-location.loading {
    pointer-events: none;
}

.btn-find-location.loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Address Delivery Container */
.address-delivery-container {
    padding: 30px 20px 100px;
    min-height: calc(100vh - 120px);
}

.address-delivery-header {
    text-align: center;
    margin-bottom: 30px;
}

.address-delivery-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
    line-height: 1.3;
}

.address-delivery-header p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.delivery-question {
    text-align: center;
    margin-bottom: 24px;
}

.delivery-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-bg);
}

/* Delivery Apps List */
.delivery-apps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.delivery-app-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--white);
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.delivery-app-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.delivery-app-item.selected {
    border-color: var(--primary-color);
    background: rgba(139, 198, 184, 0.05);
}

.delivery-app-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.delivery-app-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #D0D0D0;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.delivery-app-item.selected .delivery-app-radio {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.delivery-app-item.selected .delivery-app-radio::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

/* Continue Button */
.btn-continue-delivery {
    width: 100%;
    padding: 16px;
    background: var(--gray-bg);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    cursor: not-allowed;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-continue-delivery:not(:disabled) {
    background: var(--primary-color);
    color: var(--dark-bg);
    cursor: pointer;
}

.btn-continue-delivery:not(:disabled):hover {
    background: #6fb4a3;
}

.btn-continue-delivery:not(:disabled):active {
    transform: scale(0.98);
}

/* Checkout Screen Styles */
.checkout-container {
    padding: 20px;
    padding-bottom: 120px;
    background: #F5F5F5;
    min-height: calc(100vh - 60px);
}

.checkout-branch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
}

.checkout-branch svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.checkout-branch span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-bg);
}

.checkout-section {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkout-section:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.checkout-section h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.checkout-expand-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-expand-btn span {
    font-size: 14px;
    color: #666;
}

.checkout-expand-btn svg {
    color: #999;
    flex-shrink: 0;
}

/* Service Toggle */
.service-toggle {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toggle-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #F9F9F9;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.toggle-option.active {
    border-color: var(--primary-color);
    background: rgba(139, 198, 184, 0.1);
}

.toggle-option span {
    font-size: 13px;
    color: var(--dark-bg);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* Order Summary */
.order-summary {
    cursor: default !important;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.summary-row.total {
    padding-top: 12px;
    border-top: 1px solid #E8E8E8;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
}

.summary-note {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #E8E8E8;
}

/* Checkout Footer */
.checkout-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    background: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
}

.btn-place-order {
    flex: 1;
    padding: 14px 24px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-place-order:hover {
    background: #6fb4a3;
    transform: scale(1.02);
}

.btn-place-order:active {
    transform: scale(0.98);
}

/* Payment Method Screen */
.payment-method-container {
    padding: 20px;
    padding-bottom: 40px;
    background: #F5F5F5;
    min-height: calc(100vh - 60px);
}

.payment-section {
    margin-bottom: 24px;
}

.payment-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-option {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid transparent;
    position: relative;
}

.payment-option::after {
    display: none;
}

.payment-option.selected::after {
    display: none;
}

.payment-option.selected::before {
    display: none;
}

.payment-option:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-option.selected {
    border-color: var(--primary-color);
    background: rgba(139, 198, 184, 0.05);
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.payment-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-bg);
}

.payment-balance {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-load-wallet {
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.btn-load-wallet:hover {
    background: #6fb4a3;
}

.payment-info-text {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    padding: 12px 16px;
    background: #F9F9F9;
    border-radius: 8px;
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.payment-info-text svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.payment-logo {
    display: flex;
    align-items: center;
}

/* Payment Radio Button Styles */
.payment-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #D0D0D0;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.payment-radio.checked {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.payment-radio.checked::after {
    content: '✓';
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.payment-option.selected .payment-radio {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.payment-option.selected .payment-radio::after {
    content: '✓';
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

/* Campaigns Screen */
.campaigns-container {
    padding: 20px;
    padding-bottom: 40px;
    background: #F5F5F5;
    min-height: calc(100vh - 60px);
}

.campaign-code-section {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.campaign-code-section h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.campaign-code-input {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.campaign-code-input input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.campaign-code-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-add-code {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.btn-add-code:hover {
    background: #6fb4a3;
}

.campaigns-list-section {
    margin-top: 20px;
}

.campaigns-list-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#campaignsList {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
}

#campaignsList::-webkit-scrollbar {
    width: 4px;
}

#campaignsList::-webkit-scrollbar-track {
    background: transparent;
}

#campaignsList::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.campaign-item {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.campaign-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.campaign-item.selected {
    border-color: var(--primary-color);
    background: rgba(139, 198, 184, 0.1);
}

.campaign-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.campaign-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    flex: 1;
}

.campaign-badge {
    padding: 4px 10px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.campaign-badge.used {
    background: #E8E8E8;
    color: #999;
}

.campaign-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 8px;
}

.campaign-details {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

.campaign-expiry {
    display: flex;
    align-items: center;
    gap: 4px;
}

.campaign-usage {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Note Modal */
.note-modal-body {
    padding: 20px;
}

.note-modal-body textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 16px;
}

.note-modal-body textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}


/* Loyalty Campaign Highlight */
.loyalty-campaign {
    background: linear-gradient(135deg, #8BC6B8 0%, #6FA89A 100%) !important;
    border: 2px solid #8BC6B8 !important;
}

.loyalty-campaign .campaign-code {
    color: white !important;
    font-weight: bold;
}

.loyalty-campaign .campaign-badge {
    background: white !important;
    color: #8BC6B8 !important;
}

.loyalty-campaign .campaign-description,
.loyalty-campaign .campaign-validity {
    color: white !important;
}


/* Card Payment Screen */
.card-payment-container {
    padding: 20px;
    padding-bottom: 100px;
    background: #F5F5F5;
    min-height: calc(100vh - 60px);
}

.card-info-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-info-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.card-brands {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.card-brands img {
    height: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.card-brands img:hover {
    transform: translateY(-2px);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(139, 198, 184, 0.05);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

#cardNumber {
    letter-spacing: 2px;
    font-size: 16px;
}

#cardMonth,
#cardYear {
    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='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

#cardCvv {
    letter-spacing: 2px;
    text-align: center;
    font-weight: 600;
}

.card-info-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    padding: 14px;
    background: #F9F9F9;
    border-radius: 10px;
    line-height: 1.6;
}

.card-info-text svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.btn-continue-payment {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 198, 184, 0.3);
}

.btn-continue-payment:hover {
    background: #6fb4a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 198, 184, 0.4);
}

.btn-continue-payment:active {
    transform: scale(0.98);
}

/* ===== LOYALTY HISTORY SCREEN STYLES ===== */

/* Loyalty History Container */
.loyalty-history-container {
    padding: 20px;
    padding-bottom: 40px;
    background: #F5F5F5;
    min-height: calc(100vh - 60px);
}

/* Loyalty Status Card */
.loyalty-status-card {
    background: linear-gradient(135deg, #8BC6B8 0%, #7AB5A7 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 12px rgba(139, 198, 184, 0.3);
}

.status-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.status-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
}

.status-value {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.status-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* History List Section */
.history-list-section {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.history-list-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 16px;
}

.history-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* History Item */
.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F8F8F8;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.history-item:hover {
    background: #F0F0F0;
    transform: translateY(-2px);
}

/* History Icon */
.history-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.history-icon.earned {
    background: linear-gradient(135deg, #8BC6B8 0%, #7AB5A7 100%);
    color: #FFFFFF;
}

.history-icon.spent {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
    color: #FFFFFF;
}

/* History Content */
.history-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.history-description {
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    line-height: 1.4;
}

.history-date {
    font-size: 12px;
    color: #999999;
}

/* History Points */
.history-points {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    min-width: 100px;
}

.history-points.earned {
    color: #8BC6B8;
}

.history-points.spent {
    color: #FF6B6B;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: #999999;
    line-height: 1.6;
}

/* View History Button (on Loyalty Screen) */
.btn-view-history {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 16px 32px;
    background: #8BC6B8;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-history:hover {
    background: #7AB5A7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 198, 184, 0.3);
}

.btn-view-history:active {
    transform: translateY(0);
}

.btn-view-history svg {
    flex-shrink: 0;
}

/* ===== CAMPAIGNS LIST SCREEN STYLES ===== */

/* Campaigns List Screen Container */
.campaigns-container {
    padding: 20px;
    padding-bottom: 100px;
    background: #F5F5F5;
    min-height: calc(100vh - 60px);
}

/* Campaign Card - With Image */
.campaign-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.campaign-card:active {
    transform: scale(0.98);
}

/* Campaign Image */
.campaign-image {
    width: 100%;
    height: 180px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Campaign Content */
.campaign-content {
    padding: 16px;
}

.campaign-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.campaign-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Campaign Footer */
.campaign-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.campaign-date {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.campaign-date svg {
    flex-shrink: 0;
}

.campaign-arrow {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

/* Campaign Badge on Card */
.campaign-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.campaign-status-badge.used {
    background: #E8E8E8;
    color: #999;
}

.campaign-status-badge.expired {
    background: #FF6B6B;
    color: white;
}

/* Empty State for Campaigns */
.campaigns-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.campaigns-empty-state svg {
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.campaigns-empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.campaigns-empty-state p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Campaign Detail Screen */
#campaignDetailContent {
    animation: fadeIn 0.3s ease;
}

.campaign-detail-header {
    padding: 20px;
    background: var(--white);
    margin-bottom: 16px;
}

.campaign-detail-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
    line-height: 1.3;
}

.campaign-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
}

.campaign-detail-meta svg {
    flex-shrink: 0;
}

.campaign-detail-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Campaign Conditions List */
#campaignConditions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#campaignConditions li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
}

#campaignConditions li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

/* New Profile Screen Styles */
.profile-container-new {
    padding: 20px;
    padding-bottom: 100px;
    background: #f5f5f5;
    min-height: calc(100vh - 60px);
}

.profile-info-card-new {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-edit-profile {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #8BC6B8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-edit-profile:hover {
    background: #f5f5f5;
}

.btn-edit-profile:active {
    transform: scale(0.95);
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.profile-info-row:not(:last-child) {
    border-bottom: 1px solid #f5f5f5;
}

.profile-info-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.profile-info-value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
}

.profile-referral-card {
    background: linear-gradient(135deg, #8BC6B8 0%, #6DB09A 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(139, 198, 184, 0.3);
}

.profile-referral-card:active {
    transform: scale(0.98);
}

.referral-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.referral-content {
    flex: 1;
}

.referral-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.referral-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.profile-referral-card > svg {
    flex-shrink: 0;
    color: white;
}

.profile-menu-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.profile-menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: white;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.profile-menu-item:last-child {
    border-bottom: none;
}

.profile-menu-item:hover {
    background: #f8f8f8;
}

.profile-menu-item:active {
    background: #f0f0f0;
}

.profile-menu-item.logout {
    color: #e53e3e;
}

.profile-menu-item.logout svg {
    color: #e53e3e;
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.menu-item-left svg {
    flex-shrink: 0;
    color: #666;
}

.menu-item-left span {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.menu-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-value {
    font-size: 14px;
    font-weight: 600;
    color: #8BC6B8;
}

.menu-item-right svg {
    flex-shrink: 0;
    color: #999;
}


/* ===== BIRTHDAY CAMPAIGN STYLES ===== */

/* Birthday Campaign Notification Badge */
.birthday-campaign-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #8B4513;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: birthdayPulse 2s ease-in-out infinite;
    overflow: hidden;
}

.birthday-campaign-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: birthdayShine 3s linear infinite;
}

.birthday-campaign-badge .birthday-icon {
    font-size: 16px;
    animation: birthdayBounce 1s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes birthdayPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
    }
}

@keyframes birthdayShine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

@keyframes birthdayBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(-5deg);
    }
    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

/* Birthday Campaign Card - Special Design */
.campaign-item.birthday-campaign {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.campaign-item.birthday-campaign::before {
    content: '🎂';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: birthdayCakeFloat 4s ease-in-out infinite;
}

.campaign-item.birthday-campaign::after {
    content: '🎉';
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 100px;
    opacity: 0.1;
    transform: rotate(-15deg);
    animation: birthdayPartyFloat 5s ease-in-out infinite;
}

@keyframes birthdayCakeFloat {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(20deg) translateY(-10px);
    }
}

@keyframes birthdayPartyFloat {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-20deg) translateY(10px);
    }
}

.campaign-item.birthday-campaign:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.campaign-item.birthday-campaign .campaign-title {
    color: #8B4513;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.campaign-item.birthday-campaign .campaign-description {
    color: #654321;
}

.campaign-item.birthday-campaign .campaign-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    animation: birthdayBadgePulse 1.5s ease-in-out infinite;
}

@keyframes birthdayBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Birthday Campaign Selected State */
.campaign-item.birthday-campaign.selected {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFD700 100%);
    border-color: #FFA500;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
}

.campaign-item.birthday-campaign.selected::before {
    animation: birthdayCakeFloat 2s ease-in-out infinite;
}

/* Birthday Confetti Animation */
.birthday-confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFD700;
    top: -10px;
    opacity: 0;
    animation: confettiFall 3s linear forwards;
}

.confetti-piece:nth-child(2n) {
    background: #FFA500;
    width: 8px;
    height: 8px;
}

.confetti-piece:nth-child(3n) {
    background: #FF69B4;
    width: 6px;
    height: 6px;
}

.confetti-piece:nth-child(4n) {
    background: #8BC6B8;
}

@keyframes confettiFall {
    0% {
        top: -10px;
        opacity: 1;
        transform: translateX(0) rotateZ(0deg);
    }
    100% {
        top: 100vh;
        opacity: 0;
        transform: translateX(100px) rotateZ(720deg);
    }
}

/* Birthday Campaign Notification Toast */
.birthday-notification-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 90%;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.birthday-notification-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.birthday-notification-toast::before {
    content: '🎂';
    font-size: 32px;
    animation: birthdayNotificationBounce 0.6s ease-in-out infinite;
}

@keyframes birthdayNotificationBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

.birthday-notification-toast .notification-text {
    flex: 1;
    line-height: 1.4;
}

.birthday-notification-toast .notification-emoji {
    font-size: 24px;
    animation: birthdayEmojiSpin 2s linear infinite;
}

@keyframes birthdayEmojiSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Birthday Campaign in Checkout Modal */
.checkout-modal .birthday-campaign-highlight {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
    border: 2px solid #FFD700;
    position: relative;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    animation: birthdayHighlightPulse 2s ease-in-out infinite;
}

.checkout-modal .birthday-campaign-highlight::before {
    content: '🎉';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 24px;
    animation: birthdayCheckoutSpin 3s linear infinite;
}

@keyframes birthdayHighlightPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
    }
}

@keyframes birthdayCheckoutSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Birthday Campaign Info Banner */
.birthday-campaign-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    animation: birthdayBannerSlide 0.5s ease-out;
}

@keyframes birthdayBannerSlide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.birthday-campaign-banner .banner-icon {
    font-size: 32px;
    animation: birthdayBannerIconBounce 1s ease-in-out infinite;
}

@keyframes birthdayBannerIconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.birthday-campaign-banner .banner-content {
    flex: 1;
}

.birthday-campaign-banner .banner-title {
    font-size: 16px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 4px;
}

.birthday-campaign-banner .banner-text {
    font-size: 13px;
    color: #654321;
    line-height: 1.4;
}

/* Birthday Sparkle Effect */
.birthday-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 1s ease-out forwards;
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(2) rotate(180deg);
        opacity: 0;
    }
}

/* Birthday Modal Success */
.birthday-success-modal {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.birthday-success-modal::before {
    content: '✨';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    animation: birthdaySuccessFloat 3s ease-in-out infinite;
}

.birthday-success-modal::after {
    content: '🎁';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    animation: birthdaySuccessFloat 3s ease-in-out infinite reverse;
}

@keyframes birthdaySuccessFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
        opacity: 1;
    }
}

.birthday-success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: birthdaySuccessBounce 0.6s ease-in-out;
}

@keyframes birthdaySuccessBounce {
    0% {
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.birthday-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.birthday-success-text {
    font-size: 16px;
    color: #654321;
    line-height: 1.6;
}

/* Responsive Birthday Styles */
@media (max-width: 430px) {
    .birthday-campaign-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .birthday-notification-toast {
        font-size: 14px;
        padding: 16px 20px;
    }
    
    .birthday-campaign-banner {
        padding: 12px 16px;
    }
    
    .birthday-campaign-banner .banner-icon {
        font-size: 28px;
    }
}
