html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.artistic-text {
    font-family: 'Great Vibes', cursive; /* Elegant cursive font */
    font-weight: 700;
    font-size: 3.5rem;
    color: #4b2e83; /* Deep purple for creativity */
    text-align: center;
    margin: 40px 20px;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 5px rgba(75, 46, 131, 0.4);
    transition: all 0.3s ease;
}

.artistic-text:hover {
        color: #7d52b8;
        text-shadow: 3px 3px 8px rgba(125, 82, 184, 0.7);
        transform: scale(1.05);
}
.elegant-border {
    border: 5px solid #6a4b8c; /* Deep purple border color */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 8px 15px rgba(106, 75, 140, 0.4); /* Soft shadow */
    padding: 4px; /* Padding between border and image */
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

    .elegant-border:hover {
        box-shadow: 0 12px 25px rgba(106, 75, 140, 0.7);
        transform: scale(1.05);
    }

.card-custom {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .card-custom:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

.card-deck-row {
    margin-bottom: 2rem;
}

.img-xxlarge {
    max-width: 600px; /* Adjust width for XX large */
    max-height: 600px; /* Adjust height as needed */
    width: 100%; /* Responsive scaling */
    height: auto;
    border-radius: 12px; /* Optional rounded corners */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    object-fit: contain; /* Maintain aspect ratio */
}

@keyframes santaWave {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(20deg);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}


.dancing-script-HomeLogo {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size:48px;
}

.full-screen-image {
    position: fixed; /* Fix the image in the viewport */
    top: 0;
    left: 0;
    width: 100vw; /* Viewport width */
    height: 100vh; /* Viewport height */
    object-fit: cover; /* Cover whole area, maintaining aspect ratio, cropping if needed */
    z-index: -1; /* Send image behind other content */
}


.nav-bar-image {
    position: relative; /* Fix the image in the viewport */

    width: 1200px; /* Viewport width */
    height: 100px; /* Viewport height */
    object-fit: cover; /* Cover whole area, maintaining aspect ratio, cropping if needed */
     /* Send image behind other content */
}

.bg-image-div {
    background-image: url('~/lib/Images/HomePageImage.jpg');
    width: auto;
    height: 75px;
    background-size: cover; /* Scales to cover div, crops if needed */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
}


.c-product-grid__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-image {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.page-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}



/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .page-container {
        flex-direction: column;
    }
}


/*@media (max-width: 768px) {
    .c-product-grid__wrap {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));*/ /* Tablet: 2-3 columns */
        /*gap: 15px;
    }
}*/

@media (max-width: 480px) {
    .c-product-grid__wrap {
        grid-template-columns: 1fr; /* Mobile: 1 column */
    }
}




.navbar-bg-image {
    background-image: url('~/lib/Images/christmas festival.jpg'); /* Your image path */
    background-size: cover; /* Fill entire navbar */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* No tiling */
    min-height: 80px; /* Navbar height */
}

/* Ensure text is readable over image */
.navbar-dark .navbar-nav .nav-link {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}


/* Main Price Tag - Positioned Top Right */
.price-tag {
    position: absolute;
    top: 10px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1px 2px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    z-index: 10;
    min-width: 80px;
    text-align: center;
    transform: rotate(-5deg); /* Slight tilt for visual appeal */
    animation: priceFloat 2s ease-in-out infinite alternate;
}

    .price-tag:hover {
        transform: rotate(-2deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    }

/* Variant Price Tags */
.variant-price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Product Card Container (Relative positioning for price tag) */
.c-product-grid__item {
    position: relative; /* Required for absolute positioning of price tag */
    width: 300px;
    height: 550px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 50px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    padding-bottom: 40px; /* Space for bottom tag */
}

    .c-product-grid__item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.c-product-grid__orderitem {
    position: relative; /* Required for absolute positioning of price tag */
    width: 300px;
    height: 250px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 50px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Floating animation for price tag */
@keyframes priceFloat {
    0% {
        transform: rotate(-5deg) translateY(0px);
    }

    100% {
        transform: rotate(-5deg) translateY(-3px);
    }
}


@keyframes bounce {
    0%, 100%{transform: translateY(0);}
    50% {transform: translateY(-5px);}

}


/* Product Link Wrapper */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Overlay Background */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.c-product-grid__item:hover .product-overlay {
    opacity: 1;
}

/* View Product Button */
.view-product-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .view-product-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
    }

.c-product-grid__item:hover .product-image {
    transform: scale(1.1);
}

/* STRIKETHROUGH List Price - Bottom of Card */
.list-price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #999;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 5;
    border: 1px solid #e0e0e0;
}

    .list-price-tag del {
        text-decoration: line-through;
        color: #999;
        font-weight: 400;
    }


/* Review Stars Section */
.review-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 8px;
    margin-top: -10px;
}

.star-rating {
    position: relative;
    font-size: 18px;
    color: #ddd; /* Empty stars */
    display: inline-block;
    line-height: 1;
}

.star-fill {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffc107; /* Gold filled stars */
    overflow: hidden;
    white-space: nowrap;
}

.review-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Responsive stars on mobile */
@media (max-width: 768px) {
    .star-rating {
        font-size: 16px;
    }
}
