/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --black: #000000;
    --dark: #333333;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --border: #dddddd;
    --border-light: #eeeeee;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    color: var(--dark);
    font-size: 1.25rem;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-button {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--dark);
    cursor: pointer;
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
}

.user-info {
    padding: 15px;
    border-bottom: 1px solid var(--border);
}

.user-dropdown a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--dark);
    transition: background 0.3s;
}

.user-dropdown a:hover {
    background: var(--light-gray);
}

.user-dropdown .logout {
    color: #F44336;
    border-top: 1px solid var(--border);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-sm {
    padding: 10px 24px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    max-width: 700px;
    color: var(--white);
}

.hero-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-muted {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Service Card */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-details {
    padding: 24px;
}

.service-category {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-description {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 0.875rem;
}

.service-meta i {
    color: var(--gold);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.service-price {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    background: var(--light-gray);
    border-top: 1px solid var(--border);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.contact-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-list i {
    color: var(--gold);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    font-size: 1.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-bottom div {
    display: flex;
    gap: 24px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Alert */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(0, 200, 81, 0.1);
    border-color: #00C851;
    color: #00C851;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border-color: #F44336;
    color: #F44336;
}

/* Include all the checkout styles from the uploaded file */
/* ===== CHECKOUT PAGE STYLES ===== */

.bba-checkout-page {
    padding: 60px 0;
    background: #f5f5f5;
}

.bba-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-top: 40px;
}

.bba-checkout-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bba-checkout-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.bba-checkout-section:last-child {
    border-bottom: none;
}

.bba-checkout-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bba-checkout-section h2 i {
    color: var(--gold);
}

.bba-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bba-form-group {
    margin-bottom: 20px;
}

.bba-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.bba-form-group input,
.bba-form-group select,
.bba-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.bba-form-group input:focus,
.bba-form-group select:focus,
.bba-form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.bba-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

.bba-readonly {
    background: #f5f5f5;
    cursor: not-allowed;
}

.bba-address-select {
    margin-bottom: 20px;
}

.bba-address-select select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.bba-checkbox-group {
    margin: 20px 0;
}

.bba-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.bba-checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.bba-payment-methods {
    display: grid;
    gap: 15px;
}

.bba-payment-option {
    cursor: pointer;
}

.bba-payment-option input[type="radio"] {
    display: none;
}

.bba-payment-card {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bba-payment-option input[type="radio"]:checked + .bba-payment-card {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.bba-payment-card i {
    font-size: 2rem;
    color: var(--gold);
}

.bba-payment-card span {
    font-weight: 600;
    color: #333;
}

.bba-payment-card small {
    display: block;
    color: #666;
    font-size: 0.85rem;
}

.bba-payment-icons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.bba-payment-icons i {
    font-size: 1.5rem;
}

.bba-card-details {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.bba-btn-checkout-submit {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bba-btn-checkout-submit:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Checkout Summary */
.bba-checkout-summary {
    position: sticky;
    top: 100px;
}

.bba-summary-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bba-summary-card h2 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.bba-summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.bba-summary-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.bba-summary-item-image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bba-summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bba-summary-item-image i {
    font-size: 2rem;
    color: #ddd;
}

.bba-summary-item-details {
    flex: 1;
}

.bba-summary-item-details h4 {
    margin: 0 0 5px;
    color: #333;
    font-size: 0.95rem;
}

.bba-summary-item-details p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

.bba-summary-item-price {
    font-weight: 600;
    color: var(--gold);
}

.bba-summary-totals {
    margin-top: 20px;
}

.bba-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #333;
}

.bba-summary-total {
    border-top: 2px solid #333;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.2rem;
}

.bba-security-badges {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bba-security-badges i {
    color: var(--gold);
    margin-right: 5px;
}

/* ===== ORDER CONFIRMATION PAGE ===== */

.bba-confirmation-page {
    padding: 60px 0;
    background: #f5f5f5;
}

.bba-confirmation-header {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
}

.bba-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(0, 200, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bba-success-icon i {
    font-size: 4rem;
    color: #00C851;
}

.bba-confirmation-header h1 {
    color: #333;
    margin-bottom: 10px;
}

.bba-confirmation-header p {
    color: #666;
    font-size: 1.1rem;
}

.bba-confirmation-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.bba-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold);
}

.bba-order-status {
    text-align: right;
}

.bba-status-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bba-status-badge.status-pending {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
}

.bba-status-badge.status-processing {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

.bba-status-badge.status-completed {
    background: rgba(0, 200, 81, 0.2);
    color: #00C851;
}

.bba-status-badge.status-paid {
    background: rgba(0, 200, 81, 0.2);
    color: #00C851;
}

.bba-status-badge.status-cancelled {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.bba-order-items,
.bba-order-summary,
.bba-payment-info,
.bba-order-notes {
    margin-bottom: 30px;
}

.bba-order-items h3,
.bba-order-summary h3,
.bba-payment-info h3,
.bba-order-notes h3 {
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bba-order-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.bba-item-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bba-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bba-item-details {
    flex: 1;
}

.bba-item-details h4 {
    margin: 0 0 5px;
    color: #333;
}

.bba-item-sku,
.bba-item-quantity {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.bba-item-price {
    text-align: right;
}

.bba-unit-price {
    color: #666;
    font-size: 0.9rem;
}

.bba-total-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
}

.bba-summary-rows {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.bba-addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.bba-address-box {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.bba-address-box h3 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bba-address-box p {
    margin: 5px 0;
    color: #666;
}

.bba-payment-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.bba-payment-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.bba-mono {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #666;
}

.bba-next-steps {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.bba-next-steps h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.bba-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.bba-step {
    text-align: center;
}

.bba-step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.bba-step-content h4 {
    color: #333;
    margin-bottom: 10px;
}

.bba-step-content p {
    color: #666;
    font-size: 0.9rem;
}

.bba-confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.bba-support-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.bba-support-box h3 {
    color: #333;
    margin-bottom: 15px;
}

.bba-support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.bba-support-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* ===== MY ACCOUNT PAGE ===== */

.bba-account-page {
    padding: 60px 0;
    background: #f5f5f5;
}

.bba-account-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 40px;
}

.bba-account-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.bba-account-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.bba-account-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bba-account-avatar i {
    font-size: 3rem;
    color: var(--gold);
}

.bba-account-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.bba-account-info p {
    color: #666;
    font-size: 0.9rem;
}

.bba-account-nav a {
    display: block;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.bba-account-nav a:hover,
.bba-account-nav a.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.bba-account-nav a i {
    margin-right: 10px;
    width: 20px;
}

.bba-account-nav .bba-logout {
    margin-top: 20px;
    border-top: 2px solid #eee;
    padding-top: 20px;
    color: #F44336;
}

.bba-account-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}

.bba-account-content h2 {
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bba-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.bba-empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.bba-empty-state h3 {
    color: #333;
    margin-bottom: 10px;
}

.bba-empty-state p {
    color: #666;
    margin-bottom: 20px;
}

.bba-orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bba-order-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.bba-order-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bba-order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.bba-order-header h3 {
    color: #333;
    margin-bottom: 5px;
}

.bba-order-date {
    color: #666;
    font-size: 0.9rem;
}

.bba-order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.bba-order-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bba-order-label {
    color: #666;
    font-size: 0.85rem;
}

.bba-order-value {
    color: #333;
    font-weight: 600;
}

.bba-order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Notification */
.bba-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s;
}

.bba-notification.show {
    transform: translateX(0);
}

.bba-notification-success {
    border-left: 4px solid #00C851;
}

.bba-notification-error {
    border-left: 4px solid #F44336;
}

.bba-notification i {
    font-size: 1.5rem;
}

.bba-notification-success i {
    color: #00C851;
}

.bba-notification-error i {
    color: #F44336;
}

/* Services Selection on Booking Page */
.bba-services-selection {
    padding: 60px 0;
}

.bba-service-category-block {
    margin-bottom: 50px;
}

.bba-category-title {
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bba-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.bba-service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.bba-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.bba-service-image {
    height: 200px;
    overflow: hidden;
}

.bba-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bba-service-details {
    padding: 20px;
}

.bba-service-details h4 {
    color: #333;
    margin-bottom: 10px;
}

.bba-service-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.bba-service-meta {
    margin-bottom: 15px;
}

.bba-duration {
    color: #666;
    font-size: 0.85rem;
}

.bba-duration i {
    color: var(--gold);
    margin-right: 5px;
}

.bba-service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.bba-service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .bba-checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .bba-checkout-summary {
        position: static;
    }
    
    .bba-account-grid {
        grid-template-columns: 1fr;
    }
    
    .bba-account-sidebar {
        position: static;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section h2 {
        font-size: 2.5rem;
    }
    
    /* Two column grids on tablet */
    .grid[style*="grid-template-columns: 1fr 2fr"],
    .grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Navbar mobile */
    .navbar .container {
        height: 70px;
        position: relative;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    /* User dropdown on mobile */
    .user-dropdown {
        position: fixed;
        right: 15px;
        left: 15px;
        top: 80px;
        width: auto;
        min-width: unset;
    }
    
    /* Hero section mobile */
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-tag {
        font-size: 0.65rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Sections mobile */
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Grid mobile - single column */
    .grid,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Service cards mobile */
    .service-card {
        margin: 0;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-details {
        padding: 20px;
    }
    
    .service-details h3 {
        font-size: 1.25rem;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .service-footer .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Feature cards mobile */
    .feature-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .feature-card i {
        font-size: 2.5rem !important;
        margin-bottom: 16px !important;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    /* Buttons mobile */
    .btn {
        padding: 14px 24px;
        font-size: 0.7rem;
    }
    
    .btn-sm {
        padding: 10px 20px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom div {
        justify-content: center;
    }
    
    /* Forms mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Account page mobile */
    .grid[style*="grid-template-columns: 1fr 2fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Cart page mobile */
    .cart-item {
        flex-direction: column;
        gap: 15px;
    }
    
    /* About section mobile */
    .grid[style*="gap: 60px"] {
        gap: 30px !important;
    }
    
    .grid[style*="gap: 60px"] img {
        height: 300px !important;
    }
    
    /* CTA section mobile */
    section[style*="background: var(--gold)"] {
        padding: 40px 0 !important;
    }
    
    section[style*="background: var(--gold)"] h2 {
        font-size: 1.75rem !important;
    }
    
    section[style*="background: var(--gold)"] p {
        font-size: 1rem !important;
    }
    
    section[style*="background: var(--gold)"] div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    section[style*="background: var(--gold)"] .btn {
        width: 100%;
    }
    
    /* Checkout mobile */
    .bba-form-row {
        grid-template-columns: 1fr;
    }
    
    .bba-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .bba-confirmation-actions {
        flex-direction: column;
    }
    
    .bba-addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .bba-services-grid {
        grid-template-columns: 1fr;
    }
    
    .bba-checkout-form,
    .bba-summary-card,
    .bba-confirmation-card,
    .bba-next-steps {
        padding: 20px;
    }
    
    .bba-checkout-section h2 {
        font-size: 1.25rem;
    }
    
    .bba-payment-card {
        flex-wrap: wrap;
    }
    
    .bba-payment-icons {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        justify-content: flex-start;
    }
    
    /* My Account page mobile */
    div[style*="padding: 60px 0"] {
        padding: 30px 0 !important;
    }
    
    div[style*="font-size: 3rem"] {
        font-size: 2rem !important;
    }
    
    h1[style*="font-size: 3rem"] {
        font-size: 2rem !important;
    }
    
    h2[style*="font-size: 1.875rem"] {
        font-size: 1.5rem !important;
    }
    
    /* Inline grid overrides for account page */
    div[style*="grid-template-columns: 1fr 2fr"] {
        display: block !important;
    }
    
    div[style*="grid-template-columns: 1fr 2fr"] > div {
        margin-bottom: 20px;
    }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        letter-spacing: 0.1em;
    }
    
    .service-details h3 {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.25rem;
    }
    
    /* User avatar smaller on mobile */
    div[style*="width: 64px"] {
        width: 50px !important;
        height: 50px !important;
    }
    
    div[style*="width: 64px"] i {
        font-size: 1.5rem !important;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .user-dropdown {
        /* Show on click instead of hover for touch devices */
    }
    
    .user-menu:hover .user-dropdown {
        opacity: 0;
        visibility: hidden;
    }
    
    .user-dropdown.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Fix iOS input zoom */
@supports (-webkit-touch-callout: none) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px;
    }
}
/* End of checkout styles */
