@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    font-family: "Poppins";
}
a{
    text-decoration:none;
}
/* Basic styling for the popup */
.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensures the popup appears above other content */
  }
  
  .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Optional: Add animations for the popup */
  .popup-content {
    animation: slideIn 0.5s ease-in-out;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .navbar {
    background-color: #ff7f0e;
    color: white;
    font-family: cinzel;
  }

  .navbar li {
    color: white;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    color: white !important
  }

  .nav-link:focus,
  .nav-link:hover {
    color: white
  }

  .nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: white !important;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  }
.hero{
    position: relative;
    width: 100%;
    height: 90vh;
    margin-top: 10vh;
}
.hero_main{
    width:100%;
    height:100vh;
    
}
.video_custom{
    width:100%;
    height:100%;
    object-fit: cover;
}
.hero_layer{
    width:100%;
    position: absolute;
    background-image: linear-gradient(to right, rgba(255,0,0,0), orange);
    top:0;
    left:0;
    border:1px solid red;
    height:100%;

}
.header_writing_div {
    position: absolute;
    top: 20%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 1000px;
}
.header_writing_div {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.header_writing_div.animate {
    opacity: 1;
    transform: translateY(0);
}

.header_writing_div h1 {
    font-size: 3rem;
    font-weight: bold;
    font-family: "Cinzel";
    line-height: 10vh;
}

.header_writing_div p {
    font-size: 1.2rem;
    margin-top: 10px;
    font-family: "Cinzel";
    font-weight: bold;
}
.navbar{
    
    width:100%;
    position: fixed;
    top:0;
    left:0;
    z-index: 999;

    
}
@keyframes riseFromBelow {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .logo-animation {
    animation: riseFromBelow 1s ease-out;
  }

  .deal-card {
    position: relative;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px; /* Adjust as needed */
    border-radius: 10px;
    overflow: hidden;
}

.deal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.deal-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00; /* Highlight price in yellow */
}

.old-price {
    text-decoration: line-through;
    color: #ff6666;
}

.product-section {
    text-align: center;
    padding: 50px 0;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    width: 138px;
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.product-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.product-2.show {
    opacity: 1;
    transform: translateY(0);
}
.product-card.show {
    opacity: 1;
    transform: translateY(0);
}

.product-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 50% 50% 0 0;
    position: relative;
    overflow: hidden;
}
.deal-item{
    overflow: hidden;
    transition: all 0.5s;
}
.deal-item:hover .deal-item img{
    transform: scale(1.5);
}
.productimg2{
    border:1px solid rgb(238, 238, 238);
    border-radius: 10px;
}
.product-info {
    margin-top: 15px;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
    color: #ff5733;
    font-family: "Cinzel";
}

.product-price {
    color: #ff5733;
    font-size: 16px;
    font-weight: bold;
    
}
.product-section h2{
    color:green;
    font-family: "Cinzel";
}
.product-section h6{
    text-align: center;
    color:rgb(13, 2, 114);
    font-size: 13px;
}
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 80%;
    }
}

.product-section {
            padding: 50px 5%;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .product-2 {
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .product-2:hover {
            transform: translateY(-5px);
        }

        .productimg2 {
            width: 100%;
    height: 200px;
    border-radius: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
        }

        .product-info2 {
            margin-top: 10px;
            text-align: center;
        }

        .product-price {
            font-size: 18px;
            font-weight: bold;
            color: #ff5733;
        }

        .product-title {
            font-size: 14px;
            color: #555;
        }

        .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff9800;
            color: white;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 5px;
        }

        .product-2 {
            position: relative;
        }

        .hero-section {
            background: #f4f1eb;
            padding: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
        }

        .hero-text {
            max-width: 50%;
        }

        .hero-text h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #222;
        }

        .hero-text p {
            color: #777;
            font-size: 1rem;
        }

        .hero-text .btn {
            background: #ff5733;
            color: #fff;
            padding: 12px 20px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
        }

        .hero-images {
            display: flex;
            gap: 10px;
            position: relative;
        }

        .hero-images img {
            width: 140px;
            height: auto;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            transform: rotate(-5deg);
        }

        .hero-images img:nth-child(2) {
            transform: rotate(5deg);
            margin-top: 20px;
        }

        .hero-images img:nth-child(3) {
            transform: rotate(-3deg);
            margin-top: 10px;
        }

        /* Promo Cards */
        .promo-section {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            gap: 20px;
        }

        .promo-card {
            flex: 1;
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            text-align: left;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease-in-out;
        }

        .promo-card:hover {
            transform: translateY(-5px);
        }

        .promo-card h4 {
            font-size: 1rem;
            color: #555;
        }

        .promo-card p {
            font-size: 1.2rem;
            font-weight: bold;
            color: #222;
        }

        .promo-card a {
            color: #ff5733;
            text-decoration: none;
            font-weight: bold;
            display: block;
            margin-top: 10px;
        }

        .promo-image {
            width: 100%;
            height: 150px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            margin-top: 10px;
        }
        .promo-card {
            position: relative;
            width: 100%;
            padding: 20px;
            color: white;
            text-align: center;
            background-position: center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 250px; /* Adjust height as needed */
            border-radius: 10px;
            overflow: hidden;
        }
    
        /* Adding the black overlay */
        .promo-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity here */
            z-index: 1;
        }
    
        /* Ensuring text appears on top */
        .promo-card h4,
        .promo-card p,
        .promo-card a {
            position: relative;
            z-index: 2;
        }
    
        .promo-card a {
            color: yellow;
            font-weight: bold;
            text-decoration: none;
            margin-top: 10px;
            display: inline-block;
        }
    
    /*single products*/
    
        body{
        padding:0;
        margin: 0;
        font-family: "Poppins";
    }

    .products-lg-img {
            height: 100%;
            
            background-color: rgb(247, 247, 247);
        }
        .right-section {
            padding: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        }
        .product-title {
            font-size: 24px;
            font-weight: bold;
        }
        .rating {
            color: gold;
        }
        .price {
            font-size: 28px;
            font-weight: bold;
        }
        .old-price {
            text-decoration: line-through;
            color: grey;
            font-size: 20px;
        }
        .size-buttons button {
            border: 1px solid black;
            padding: 5px 15px;
            background: none;
            cursor: pointer;
        }
        .buy-btn, .cart-btn {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            font-size: 18px;
        }
        .buy-btn {
            background: #ff7f0e;
            color: white;
            border: none;
            outline: none;
        }
        .cart-btn {
            background: white;
            border: 1px solid black;
            color: black;
        }
        .rating-overview {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .rating-score {
            font-size: 50px;
            font-weight: bold;
        }
        .stars {
            color: #FFD700;
            font-size: 18px;
        }
        .rating-bars {
            width: 60%;
        }
        .bar {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }
        .bar span {
            display: inline-block;
            width: 100px;
        }
        .progress {
            background: #ddd;
            height: 8px;
            flex: 1;
            margin-left: 10px;
            position: relative;
        }
        .progress span {
            display: block;
            height: 100%;
            background: #f8b400;
        }
        .review {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
        .review img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .review-content {
            flex: 1;
        }
        .related-products {
            margin-top: 30px;
            font-size: 22px;
            font-weight: bold;
            text-align: center;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                max-width: 100%;
                margin-bottom: 20px;
            }

            .hero-images {
                justify-content: center;
            }

            .promo-section {
                flex-direction: column;
            }
        }

        .deal-section {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 40px;
        }

        .deal-card {
            background: #e3f3f3;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1;
            min-width: 300px;
            max-width: 600px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        }

        .deal-content {
            max-width: 50%;
        }

        .deal-content h3 {
            font-size: 1.8rem;
            color: #ff5733;
        }

        .deal-content p {
            font-size: 1rem;
            color: #555;
        }

        .price {
            font-size: 1.5rem;
            color: #d32f2f;
            font-weight: bold;
        }

        .old-price {
            text-decoration: line-through;
            color: #888;
            font-size: 1.2rem;
            margin-left: 10px;
        }

        .countdown {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }

        .timer-box {
            background: #ff5733;
            color: white;
            padding: 10px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            text-align: center;
            min-width: 50px;
        }

        .btn-shop {
            display: inline-block;
            padding: 10px 15px;
            background: none;
            color: #ff5733;
            font-weight: bold;
            border: 2px solid #ff5733;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 10px;
        }

        .btn-shop:hover {
            background: #ff5733;
            color: white;
        }

        .deal-image img {
            width: 150px;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .deal-card {
                flex-direction: column;
                text-align: center;
            }

            .deal-content {
                max-width: 100%;
            }

            .deal-image img {
                width: 100%;
                margin-top: 10px;
            }
        }

        .deals-container {
            display: flex;
            gap: 20px;
            margin: 40px;
            flex-wrap: wrap;
        }

        .promo-banner {
            background: #f3f3f3;
            padding: 20px;
            width: 280px;
            text-align: center;
            border-radius: 10px;
        }

        .promo-banner img {
            width: 100%;
            border-radius: 10px;
        }

        .promo-banner h2 {
            font-size: 1.5rem;
            margin: 15px 0;
        }

        .promo-banner a {
            display: inline-block;
            padding: 10px 15px;
            color: #ff5733;
            font-weight: bold;
            border: 2px solid #ff5733;
            border-radius: 5px;
            text-decoration: none;
        }

        .promo-banner a:hover {
            background: #ff5733;
            color: white;
        }

        .deals-section {
            flex: 1;
            display: flex;
            gap: 20px;
            justify-content: space-between;
        }

        .deals-box {
            flex: 1;
        }

        .deals-box h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            border-bottom: 2px solid #ff5733;
            padding-bottom: 5px;
        }

        .deal-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .deal-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 5px;
        }

        .deal-item .price {
            color: #ff5733;
            font-size: 1rem;
            font-weight: bold;
        }

        .deal-item .old-price {
            text-decoration: line-through;
            color: #888;
            font-size: 0.9rem;
            margin-left: 5px;
        }

        @media (max-width: 768px) {
            .deals-container {
                flex-direction: column;
                align-items: center;
            }

            .deals-section {
                flex-direction: column;
                width: 100%;
            }

            .promo-banner {
                width: 100%;
            }
        }

        .footer {
            background: #f8f8f8;
            padding: 40px 80px;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-column {
            flex: 1;
            min-width: 220px;
            margin-bottom: 20px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            text-decoration: none;
            color: #555;
            transition: 0.3s;
        }

        .footer-column ul li a:hover {
            color: #ff5733;
        }

        .footer-contact p {
            font-size: 14px;
            margin-bottom: 8px;
            color: #555;
        }

        .social-icons a {
            margin-right: 10px;
            color: #555;
            font-size: 18px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: #ff5733;
        }

        .app-buttons img {
            width: 140px;
            margin-top: 10px;
        }

        .payment-icons img {
            width: 120px;
            margin-top: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 15px;
            font-size: 14px;
            color: #777;
            border-top: 1px solid #ddd;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px;
            }
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            .social-icons {
                justify-content: center;
            }
        }
 body{
        padding:0;
        margin: 0;
        font-family: "Poppins";
    }

    .products-lg-img {
            height: 100%;
            
            background-color: rgb(247, 247, 247);
        }
        .right-section {
            padding: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        }
        .product-title {
            font-size: 24px;
            font-weight: bold;
        }
        .rating {
            color: gold;
        }
        .price {
            font-size: 28px;
            font-weight: bold;
        }
        .old-price {
            text-decoration: line-through;
            color: grey;
            font-size: 20px;
        }
        .size-buttons button {
            border: 1px solid black;
            padding: 5px 15px;
            background: none;
            cursor: pointer;
        }
        .buy-btn, .cart-btn {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            font-size: 18px;
        }
        .buy-btn {
            background: #ff7f0e;
            color: white;
            border: none;
            outline: none;
        }
        .cart-btn {
            background: white;
            border: 1px solid black;
            color: black;
        }
        .rating-overview {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .rating-score {
            font-size: 50px;
            font-weight: bold;
        }
        .stars {
            color: #FFD700;
            font-size: 18px;
        }
        .rating-bars {
            width: 60%;
        }
        .bar {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }
        .bar span {
            display: inline-block;
            width: 100px;
        }
        .progress {
            background: #ddd;
            height: 8px;
            flex: 1;
            margin-left: 10px;
            position: relative;
        }
        .progress span {
            display: block;
            height: 100%;
            background: #f8b400;
        }
        .review {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
        .review img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .review-content {
            flex: 1;
        }
        .related-products {
            margin-top: 30px;
            font-size: 22px;
            font-weight: bold;
            text-align: center;
        }
        
                .cart-container {
            max-width: 500px;
            margin: auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            position: fixed;
            right:1%;
            top:15%;
            overflow-y: scroll;
            height:500px
        }
        h2 {
            margin-bottom: 5px;
        }
        .reserved {
            font-size: 12px;
            color: gray;
        }
        .cart-item {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding: 15px 0;
        }
        .cart-item img {
            width: 80px;
            height: 80px;
            border-radius: 5px;
            margin-right: 15px;
        }
        .item-details {
            flex-grow: 1;
        }
        .price {
            font-weight: bold;
            font-size: 16px;
        }
        .discount {
            color: red;
        }
        .original-price {
            text-decoration: line-through;
            color: gray;
            font-size: 14px;
        }
        .item-name {
            font-size: 14px;
            color: #333;
        }
        .item-options {
            font-size: 12px;
            color: gray;
        }
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-top: 5px;
        }
        .quantity-selector select {
            margin-left: 5px;
        }
        .save {
            background: none;
            border: none;
            color: black;
            cursor: pointer;
            font-size: 14px;
            margin-top: 5px;
        }
        .remove {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: gray;
        }
        .subtotal {
            text-align: right;
            font-weight: bold;
            padding-top: 15px;
        }
        .total-price {
            font-size: 16px;
        }
        /* Make the cart position responsive */
@media (max-width: 768px) {
    .cart-container {
        width: 90%; /* Take up most of the screen width */
        right: 5%;
        left: 5%;
        top: 50px;
    }
}

/* Adjustments for very small screens (mobile) */
@media (max-width: 480px) {
    .cart-container {
        width: 100%; /* Full width */
        right: 0;
        left: 0;
        top: 50px;
        border-radius: 0; /* Remove border-radius for fullscreen effect */
    }
}

.cart-container{
        display: none;
    }
    
    /* Cart Section */
.table th, .table td {
    text-align: left;
}

.product-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cart-summary h4 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .table {
        width: 100%;
        display: block;
        overflow-x: auto;
    }

    .cart-summary {
        margin-top: 20px;
    }
}


/*checkout*/

    .form-container {
      max-width: 600px;
      margin: 40px auto;
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .brand-logo {
      font-weight: bold;
      font-size: 24px;
      letter-spacing: 1px;
      padding-bottom: 10px;
    }
    .step-nav {
      font-size: 14px;
      color: #888;
    }
    .step-nav a {
      text-decoration: none;
      color: #007bff;
    }
    .form-check label {
      font-size: 14px;
    }
    .form-check-input {
      margin-top: 0.3em;
    }
    .btn-primary {
      background-color: #28c;
      border-color: #28c;
    }
    .btn-primary:hover {
      background-color: #007bb5;
      border-color: #007bb5;
    }
    .return-link {
      font-size: 14px;
      display: inline-block;
      margin-top: 10px;
      color: #007bff;
      text-decoration: none;
    }

.bounce-button {
  position: fixed;
  top: 88vh;
  right: 10px;
  width: 66px;
  background-color: white;
  border-radius: 100%;
  z-index: 99;
  animation: bounce 2s ease-in-out infinite;

   
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}