



/* been existing */


.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #d63384;
    color: white;
    padding: 10px 0;
    font-size: 1.2rem;
    margin-top: 80px;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #d63384;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    /* Tailwind's gray-50 */
    position: relative;
    margin: 0;

}

.app-header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    background-color: #d63384;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 05px;
    padding: 0.75rem 1.5rem;
    max-width: 90rem;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.app-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.hamburger-btn {
    color: white;
    outline: none;
}

.nav-link {
    color: white;
    transition: color 0.2s ease;
}

/*.nav-link:hover {
  color: #d63384; 
}*/

#desktopNav {
    display: none;
    color: white;
}


.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    display: block;
}

.cta-button {
    background-color: #d63384;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 18px;
}

.cta-button:hover {
    background-color: #d63d8a;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #d63d8a;
}

.nav-link {
    color: white;
    transition: color 0.2s ease;
}

.nav-link:hover {
    opacity: 0.85;
}

.block-link {
    display: block;
    color: #d63384;
}

.hero-section {
    display: flex;
    flex-direction: column;
    padding: 8rem 1.5rem 6rem;
    max-width: 80rem;
    margin: 0 auto;
    gap: 2rem;
    margin-top: -80px;
}


.hero-image {
    width: 100%;
    order: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.hero-text {
    width: 100%;
    order: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
}

.hero-description {
    font-size: 1.125rem;
    color: #4B5563;
}

.hero-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #d63384;
    color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    text-align: center;
}

.hero-cta:hover {
    background-color: #d63d8a;
}

/* Container grid for products */
.grid-vogue-prod {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

/* Product card */
.card-vogue-prod {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card hover effect */
.card-vogue-prod:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Image styles */
.image-vogue-prod {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* Content (product details) */
.content-vogue-prod {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    /* Make sure content takes available space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Align the content and button properly */
}

/* Headings */
.text-title-vogue-prod {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    /* gray-800 */
    margin-bottom: 1.5rem;
}

.title-vogue-prod {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

/* Prices */
.price-regular-vogue-prod {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    /* gray-500 */
    text-decoration: line-through;
}

.price-sale-vogue-prod {
    color: #db2777;
    /* pink-600 */
    font-weight: bold;
    font-size: 1.25rem;
}

.price-normal-vogue-prod {
    color: #1f2937;
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

/* Button */
.button-vogue-prod {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #db2777;
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
    align-self: center;
    /* Center the button horizontally */
}

.button-vogue-prod:hover {
    background-color: #be185d;
}

/* View More Button */
.text-center-vogue-prod {
    text-align: center;
    margin-top: 2rem;
}

.more-btn-vogue-prod {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #1f2937;
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
}

.more-btn-vogue-prod:hover {
    background-color: #374151;
    /* hover gray */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-vogue-prod {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-vogue-prod {
        height: 180px;
    }

    .button-vogue-prod {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .image-vogue-prod {
        height: 160px;
    }
}

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    background: #f9fafb;
    min-height: 100vh;
}

.auth-box {
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #d63384;
    margin-bottom: 0.5rem;
}

.auth-subtext {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.auth-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #d63384;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-btn:hover {
    background-color: #d63d8a;
}

.auth-links {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.auth-links a {
    color: #d63384;
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Layout Styles */
.orders-section {
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: 800px;
}

/* Typography */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
}

/* Search Box */
.search-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-box {
    display: flex;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #d63384;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.search-button {
    background-color: #d63384;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #d63d8a;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.order-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.order-header {
    margin-bottom: 1rem;
}

.order-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.order-meta {
    color: #555;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.order-items {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.items-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.item-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.item-name {
    color: #222;
}

.item-quantity {
    color: #666;
}

.order-total {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.total-amount {
    color: #2e7d32;
    font-size: 1.125rem;
}


/* Scanner Overlay */
.scanner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scanner-header {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
}

.close-scanner-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scanner-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    aspect-ratio: 1.5;
    margin: 1rem auto;
}

.scanner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.scanner-guide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    animation: scanline 2s infinite linear;
}

@keyframes scanline {
    0% {
        top: 10%;
    }

    100% {
        top: 90%;
    }
}

.scan-result {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    margin-top: 1rem;
}

.scan-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.scan-code {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    word-break: break-all;
}

.scan-url {
    color: #4ade80;
    margin-top: 0.5rem;
}

.scan-notice {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.scan-error {
    color: #f87171;
}

.scan-help {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hidden {
    display: none !important;
}

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    background: #f9fafb;
    min-height: 100vh;
}

.auth-box {
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3a59d1;
    margin-bottom: 0.5rem;
}

.auth-subtext {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.auth-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #3a59d1;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-btn:hover {
    background-color: #2d45a8;
}

.auth-links {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.auth-links a {
    color: #3a59d1;
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

.i {
    color: #d63d8a;
}

@media (min-width: 768px) {
    .hamburger-btn {
        display: none;
    }

    .hero-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-image {
        order: 1;
        width: 50%;
    }

    .hero-text {
        order: 2;
        text-align: left;
        width: 50%;
    }

    #desktopNav {
        display: flex;
        gap: 1.5rem;
        font-size: 0.875rem;
        font-weight: 500;

    }

    .orders-section {
        padding: 1rem;
    }

    .order-card {
        padding: 1rem;
    }

}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}




.product-section-prod {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}