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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 60px; 
}

.header {
    padding: 5px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: #f8f8f8;
    color: white;
    z-index: 100;
    height: 50px;
}

.back-btn {
    transition: transform 0.3s;
    position: absolute;
    margin-top: 5px;
    margin-left: 8px;
}

.header-title {
    font-size: 16px;
    font-weight: 500;
    flex-grow: 1;
    text-align: center;
    color: #000;
}

/* Removed old header styles */
.header-left,
.header-center,
.header-right,
.header-icon {
    display: none;
}

/* Simplified main container */
.main-container {
    max-width: 800px;
    margin: 10px auto;
    padding: 0 10px;
    padding-bottom: 10px; /* Added padding-bottom for fixed bottom navigation */
}

/* Simplified content card */
.content-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Added box-shadow to match contact and comments sections */
}

.content-header {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.content-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.content-meta {
    display: flex;
    gap: 15px;
    color: #999;
    font-size: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* SVG icon styles for meta items */
.meta-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Content Body */
.content-body {
    padding: 10px;
	padding-top: 0px;
}

.info-section {
	margin-top:10px;
    margin-bottom: 0px;
}

.info-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 4px solid rgba(248 7 133 / 50%); 
    color: #1e293b;
    background: linear-gradient(90deg, rgba(248, 7, 133, 0.05), transparent);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 8px 8px 0;
    display: block; /* Changed from flex to block */
}

/* Removed icon styles - no longer needed */
.info-title-icon {
    display: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
}

.info-label {
    font-weight: 600;
    color: #666;
    min-width: 50px;
    font-size: 13px;
}

.info-value {
    color: #333;
    font-size: 13px;
}

.info-value.price {
    color: #c607f8; /* Replaced #f80785 with #c607f8 */
    font-size: 15px;
    font-weight: bold;
}

.description-text {
    color: #666;
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 12px;
}

/* Simplified image gallery - 2 column grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
}

/* Single image should fill entire screen width */
.image-gallery.single-image {
    grid-template-columns: 1fr;
    margin-top: 12px;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background: #f0f0f0;
}

/* Remove border-radius and padding for single images to fill screen */
.image-gallery.single-image .gallery-item {
    padding-bottom: 0;
    height: auto;
    border-radius: 0; /* Remove rounded corners for full-width display */
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Single image displays at full width with natural aspect ratio */
.image-gallery.single-image .gallery-item img {
    position: static;
    height: auto;
    width: 100%;
    object-fit: none;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Added video gallery styles similar to image gallery */
/* Changed video gallery to single column full-width layout instead of 2-column grid */
.video-gallery {
    display: grid;
    grid-template-columns: 1fr; /* Changed from repeat(2, 1fr) to 1fr for full-width single column */
    gap: 12px; /* Increased gap for better spacing between videos */
    margin-top: 12px;
}

/* Removed single-video class since all videos are now full-width */
/* .video-gallery.single-video styles removed - no longer needed */

.video-item {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

/* Simplified action buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    padding: 10px 15px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.btn-action {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* SVG icon styles for action buttons */
.btn-action svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.btn-favorite {
    background: linear-gradient(to right, rgb(248 7 118 / 50%), #fd9b71); /* Updated gradient */
    color: white;
}

.btn-report {
    background: white;
    color: #666;
    border: 1px solid #ddd;
}

/* Updated contact section to be independent block */
.contact-section {
    padding: 10px;
    background: white;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 4px solid rgba(248 7 133 / 50%); 
    background: linear-gradient(90deg, rgba(248, 7, 133, 0.05), transparent);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 8px 8px 0;
    display: block; /* Changed from flex to block */
}

.contact-login-prompt {
    text-align: center;
    padding: 20px 20px;
}

.login-prompt-icon {
    margin-bottom: 15px;
}

.login-prompt-icon svg {
    width: 48px;
    height: 48px;
    fill: #c607f8;
}

.login-prompt-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.login-prompt-btn {
    padding: 10px 100px;
    background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
/*
.login-prompt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 7, 133, 0.3);
}
*/

/* Added VIP/points prompt styles */
.contact-vip-prompt {
    padding: 10px 20px;
    text-align: center;
}

.vip-prompt-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, rgba(248, 7, 133, 0.1), rgba(198, 7, 248, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-prompt-icon svg {
    width: 32px;
    height: 32px;
    fill: #c607f8;
}

.vip-prompt-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.vip-prompt-message {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: left;
    background: linear-gradient(90deg, rgba(248, 7, 133, 0.1), transparent);
    padding: 15px;
    border-radius: 8px;
    /*border-left: 3px solid rgba(248, 7, 133, 0.3); */
}

.vip-prompt-options {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 10px;
}

.vip-option-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

/*
.vip-option-card:hover {
    border-color: #c607f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 7, 133, 0.15);
}
*/

.vip-option-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, rgba(248, 7, 133, 0.1), rgba(198, 7, 248, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-option-icon svg {
    width: 20px;
    height: 20px;
    fill: #c607f8;
}

.vip-option-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.vip-option-desc {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}

.vip-prompt-buttons {
    display: flex;
    gap: 10px;
}

.vip-prompt-btn {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #c607f8;

    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vip-prompt-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.vip-prompt-btn.primary {
    background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd);
    color: white;
    border: none;
    /* box-shadow: 0 4px 12px rgba(248, 7, 133, 0.3); */
}

.vip-prompt-btn.secondary {
    background: white;
    color: #c607f8;
}

.vip-prompt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(248, 7, 133, 0.3);
}

.vip-prompt-btn:active {
    transform: translateY(0);
}

.contact-methods {
    display: grid;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa; /* Changed from white to #f8f9fa */
    border-radius: 6px;
    position: relative; /* Added for copy button positioning */
}

/* Simplified contact icons with cleaner SVG */
.contact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(to right, rgb(248 7 133 / 50%), rgb(248 7 133 / 50%)); 
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Added copy button styles */
.copy-btn {
    margin-left: auto;
    padding: 6px 12px;
    background: linear-gradient(to right, #dddddd, #dddddd);
    color: #555;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, rgba(248, 7, 133, 0.4), rgba(181, 113, 253, 0.4)); /* Slightly darker on hover */
    box-shadow: 0 2px 8px rgba(248, 7, 133, 0.2);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Added contact note styles */
.contact-note {
    margin-top: 12px;
    padding: 10px 12px;
	/*
    background: linear-gradient(90deg, rgba(248, 7, 133, 0.05), transparent);
    border-left: 3px solid rgba(248, 7, 133, 0.3); 
	*/
    border-radius: 0 6px 6px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
	text-align:center;
}

/* Updated comments section to be independent block */
.comments-section {
    padding: 10px;
    background: white;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comments-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 4px solid rgba(248 7 133 / 50%); 
    background: linear-gradient(90deg, rgba(248, 7, 133, 0.05), transparent);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 8px 8px 0;
    display: block; /* Changed from flex to block */
}

.comment-input-area {
    margin-bottom: 15px;
}

.comment-textarea {
    width: 100%;
    min-height: 70px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    resize: vertical;
    font-family: inherit;
	color:#666;
}

.comment-textarea:focus {
    outline: none;
    border-color: #c607f8; /* Replaced #f80785 with #c607f8 */
}

.captcha-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.captcha-code {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
	padding: 10px 20px;
	border-radius: 6px;
	letter-spacing: 8px;
	font-family: 'Courier New', monospace;
	border: 2px solid #ddd;
	user-select: none;
	min-width: 120px;
	text-align: center;
}

.captcha-input {
	width: 122px;
	padding: 11px 0px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 13px;
	text-align: center;
	letter-spacing: 0px;
    margin-bottom:2px;
}

.captcha-input:focus {
	outline: none;
	border-color: #c607f8;
}

.captcha-refresh {
	padding: 8px 12px;
	background: #f0f0f0;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	color: #666;
	transition: all 0.3s ease;
}

.captcha-refresh:hover {
	background: #e0e0e0;
}

.comment-submit {
    margin-bottom: 2px;
    padding: 11px 20px;
    background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd); /* Updated gradient */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-item {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.comment-author {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.comment-time {
    font-size: 11px;
    color: #999;
}

.comment-content {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.no-comments {
    text-align: center;
    color: #999;
    padding: 20px;
    font-size: 13px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    max-width: 400px;
    width: 90%;
}

.modal-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd); /* Updated gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.modal-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 13px;
}

.modal-button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd); /* Updated gradient */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}



        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            padding: 25px;
            max-width: 400px;
            width: 90%;
        }

        .modal-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd); /* Updated gradient */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            color: white;
            font-size: 22px;
            font-weight: bold;
        }

        .modal-text {
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 13px;
        }

        .modal-button {
            width: 100%;
            padding: 10px;
            background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd); /* Updated gradient */
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
        }

        /* Added report modal styles */
        .report-modal-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            text-align: center;
            margin-bottom: 20px;
        }

        .report-textarea {
            width: 100%;
            min-height: 100px;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            resize: vertical;
            font-family: inherit;
            margin-bottom: 15px;
        }

        .report-textarea:focus {
            outline: none;
            border-color: #c607f8;
        }

        .report-captcha-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .report-captcha-code {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            padding: 8px 16px;
            border-radius: 6px;
            letter-spacing: 6px;
            font-family: 'Courier New', monospace;
            border: 2px solid #ddd;
            user-select: none;
            min-width: 100px;
            text-align: center;
        }

        .report-captcha-input {
            flex: 1;
			width:100%;
            padding: 10px 0px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 12px;
            text-align: center;
            letter-spacing: 4px;
        }

        .report-captcha-input:focus {
            outline: none;
            border-color: #c607f8;
        }

        .report-captcha-refresh {
            padding: 8px 10px;
            background: #f0f0f0;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            color: #666;
            transition: all 0.3s ease;
        }

        .report-captcha-refresh:hover {
            background: #e0e0e0;
        }

        .report-buttons {
            display: flex;
            gap: 10px;
        }

        .report-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .report-btn-cancel {
            background: #f0f0f0;
            color: #666;
        }

        .report-btn-cancel:hover {
            background: #e0e0e0;
        }

        .report-btn-submit {
            background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd);
            color: white;
        }

        .report-btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(248, 7, 133, 0.3);
        }

        /* Added comment modal styles (similar to report modal) */
        .comment-modal-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            text-align: center;
            margin-bottom: 20px;
        }

        .comment-modal-textarea {
            width: 100%;
            min-height: 100px;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            resize: vertical;
            font-family: inherit;
            margin-bottom: 15px;
        }

        .comment-modal-textarea:focus {
            outline: none;
            border-color: #c607f8;
        }

        .comment-modal-captcha-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .comment-modal-captcha-code {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            padding: 8px 16px;
            border-radius: 6px;
            letter-spacing: 6px;
            font-family: 'Courier New', monospace;
            border: 2px solid #ddd;
            user-select: none;
            min-width: 100px;
            text-align: center;
        }

        .comment-modal-captcha-input {
            flex: 1;
			width:100%;
            padding: 10px 0px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 12px;
            text-align: center;
            letter-spacing: 4px;
        }

        .comment-modal-captcha-input:focus {
            outline: none;
            border-color: #c607f8;
        }

        .comment-modal-captcha-refresh {
            padding: 8px 10px;
            background: #f0f0f0;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            color: #666;
            transition: all 0.3s ease;
        }

        .comment-modal-captcha-refresh:hover {
            background: #e0e0e0;
        }

        .comment-modal-buttons {
            display: flex;
            gap: 10px;
        }

        .comment-modal-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .comment-modal-btn-cancel {
            background: #f0f0f0;
            color: #666;
        }

        .comment-modal-btn-cancel:hover {
            background: #e0e0e0;
        }

        .comment-modal-btn-submit {
            background: linear-gradient(to right, rgb(248 7 133 / 50%), #b571fd);
            color: white;
        }

        .comment-modal-btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(248, 7, 133, 0.3);
        }
		
/* Lightbox modal for enlarged images with Swiper */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {

    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 3001;
}

.lightbox-swiper {
    width: 90%;
    max-width: 800px;
    height: 80vh;
}

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

.lightbox-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-swiper .swiper-button-next,
.lightbox-swiper .swiper-button-prev {
    color: white;
}

.lightbox-swiper .swiper-pagination-bullet {
    background: white;
}

/* Added toast notification styles */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    height: 50px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item.active {
    color: #c607f8; /* Replaced #f80785 with #c607f8 */
}

.nav-item:hover {
    background: #f8f9fa;
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

.nav-text {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
