

* {
    margin: 0;
    padding: 0;
    background-color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

}


/* <End navbar> */

/*.container #h111 {*/
/*    color: rgba(218, 12, 12, 0.877);*/
/*   text-align: center;*/
/*    margin-top: 20px;*/
/*    margin-bottom: 20px;*/
/*    animation: fadeInDown 1s ease forwards;*/
/*}*/

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#date {
    text-align: right;
    font-family: sans-serif;
    font-size: larger;
    animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.container p {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.containeriu img {
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
    animation: imageFadeIn 1s ease forwards;
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.container #vivocappBottle {
    height: 30%;
    width: 30%;
    transition: transform 0.3s ease;
}


.container div .card title {
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
}


/* order form css start */

.order-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1.5s ease forwards;
}

.form-heading {
  font-size: 36px; /* پہلے سے زیادہ بڑا سائز */
  font-weight: bold; /* موٹی تحریر کے لیے */
  color: red;
  margin-bottom: 5px;
  animation: popIn 0.5s ease forwards;
}


@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.form-subheading {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.form-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.price-line {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    animation: fadeInUp 1s ease forwards;
}

.cut-price {
    text-decoration: line-through;
    color: #000;
    margin-right: 10px;
    font-weight: 500;
}

.real-price {
    color: #ff1100;
    font-weight: 700;
    transition: color 0.3s ease;
}

.real-price:hover {
    color: #cc0e00;
}

form input {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 18px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus {
    border-color: orange;
    box-shadow: 0 0 8px orange;
    outline: none;
}

form button {
    width: 100%;
    padding: 16px;
    background-color: orange;
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background-color: #e69500;
    transform: scale(1.05);
}

.countdown-title {
    font-size: 20px;
    font-weight: bold;
    color: #e67e22;
    margin: 20px 0 10px;
    animation: fadeIn 1.5s ease forwards;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0 20px;
    color: orange;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
}

.time-box {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 90px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.time-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.time-box span {
    font-size: 2rem;
    display: block;
}

.label {
    font-size: 1rem;
    margin-top: 5px;
}

@media (max-width: 500px) {
    .form-card {
        padding: 30px 20px;
    }
    .form-heading {
        font-size: 24px;
    }
    .form-subheading {
        font-size: 16px;
    }
    form input,
    form button {
        font-size: 17px;
        padding: 14px;
    }
    .countdown-title {
        font-size: 18px;
    }
    .time-box {
        min-width: 75px;
        padding: 15px;
    }
    .time-box span {
        font-size: 1.6rem;
    }
    .label {
        font-size: 0.85rem;
    }
    .price-line {
        font-size: 20px;
    }
}


/* price heading */

.price-headings {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    margin-bottom: 5px;
    color: #666;
    font-weight: 500;
}

.price-label.old {
    color: #888;
}

.price-label.new {
    color: #ff1100;
}

.price-line {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 25px;
    margin-bottom: 20px;
}

.cut-price {
    text-decoration: line-through;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.real-price {
    color: #ff1100;
    font-weight: 700;
    font-size: 26px;
}


/* tabsray comments */

.comments-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeInUp 1.2s ease forwards;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: right;
    animation: fadeIn 1s ease forwards;
}

.comment-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.comment-date {
    font-size: 14px;
    color: #888;
    border-top: 4px solid red;
    padding-top: 5px;
    margin-bottom: 10px;
    text-align: right;
}

.comment-content {
    direction: rtl;
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-avatar {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    animation: avatarPopIn 0.6s ease forwards;
}

@keyframes avatarPopIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.comment-name {
    font-weight: bold;
    font-size: 16px;
    color: #222;
}

.comment-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.comment-likes {
    color: red;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.reply-btn {
    background-color: #eee;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.reply-btn:hover {
    background-color: #ddd;
}

@media (max-width: 600px) {
    .comment-text {
        font-size: 14px;
    }
    .comment-name {
        font-size: 15px;
    }
    .comment-card {
        padding: 15px;
    }
}

#footer-container {
    height: 200px;
    width: 100%;
    background-color: lightgray;
    animation: fadeInUp 1.5s ease forwards;
}


/* Animation keyframes */

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* تصاویر کے لیے animation کلاس */

.animate-image {
    animation: slideUp 1s ease forwards;
}


/* پیراگراف کے لیے animation کلاس */

.animate-paragraph {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.3s;
    /* تھوڑا دیر سے animation شروع ہو */
}


/* animation-delay آپ ضرورت کے مطابق بڑھا سکتے ہیں */