body {
    font-family: 'Mulish', sans-serif;
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* .products-page-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 30px;
      background: #111;
      border-bottom: 1px solid #333;
      position: sticky;
      top: 0;
      z-index: 100;
    } */

.products-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    background: #0000007c;
    /* border-bottom: 1.5px solid #0066FF; */
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}


.products-page-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, #00CCFF, #0066FF, transparent);
    animation: headerBorderGlow 3s ease-in-out infinite;
}


/* .logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
    } */

.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1.5px solid #0066FF;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    line-height: 0;
    border-radius: 4px;
    padding: 0;
    margin: 0;
}


/* 
.products-page-header .products-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center 60%;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
} */


.products-page-header .products-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 0;
}


@media screen and (max-width: 768px) {
    .products-page-header {
        padding: 6px 15px;
    }

    .products-page-header .products-logo {
        width: auto;
        height: 40px;
        object-fit: contain;
        object-position: center;
    }

    .logo-link {
        border: none;
    }

}

@media screen and (max-width: 480px) {
    .products-page-header {
        padding: 5px 12px;
    }

    .products-page-header .products-logo {
        width: auto;
        height: 34px;
        object-fit: contain;
    }

    .logo-link {
        border: none;
    }

}

/* .products-page-header .products-logo {
      width: 120px;
      height: auto;
      cursor: pointer;
    } */

.cart-icon-container {
    position: relative;
    cursor: pointer;
}

.cart-icon {
    width: 30px;
    height: 30px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.cart-icon-container:hover .cart-icon {
    fill: #0066FF;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #0066FF;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #111;
}

.products-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 35px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin: 50px 0 30px;
    color: #0066FF;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title:before,
.section-title:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: #0066FF;
}

.section-title:before {
    left: -60px;
}

.section-title:after {
    right: -60px;
}

@media screen and (max-width: 768px) {

    .section-title:before,
    .section-title:after {
        width: 30px;
    }

    .section-title:before {
        left: -40px;
    }

    .section-title:after {
        right: -40px;
    }
}

.section-container {
    text-align: center;
    margin-top: 20px;
}

.back-button {
    display: inline-block;
    margin: 20px 30px;
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #fff;
    color: #000;
}

#grid1,
#grid2,
#grid3 {
    padding: 20px;
}

.grid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    width: 220px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #fff;
    transition: border-color 0.3s ease;
}

.product-card:hover .product-img {
    border-color: #0066FF;
}

.product-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .products-page-header {
        padding: 15px 20px;
    }

    .products-page-header .products-logo {
        width: 100px;
    }

    .products-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
        margin: 40px 0 25px;
    }

    .product-card {
        width: 160px;
    }

    .product-img {
        width: 160px;
        height: 160px;
    }

    .product-name {
        font-size: 16px;
    }

    .back-button {
        margin: 15px 20px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .grid-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 15px;
    }

    .grid-row .product-card {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    }

    .product-img {
        width: 100%;
        height: 160px;
    }
}

@media screen and (max-width: 480px) {
    .product-card {
        width: 140px;
    }

    .product-img {
        width: 140px;
        height: 140px;
    }

    .grid-row {
        gap: 10px;
    }
}

.purchase-info {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 25px 30px;
    background: #111;
    border: 2px solid #0066FF;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.purchase-info h2 {
    color: #0066FF;
    font-size: 24px;
    margin-bottom: 15px;
}

.purchase-info ul {
    list-style-type: disc;
    margin-left: 20px;
}

.flower-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 30px auto 40px auto;
    border-radius: 12px;
    overflow: hidden;
    min-height: 280px;
    background: #000;
}

.flower-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.flower-video-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    box-sizing: border-box;
}

/* .flower-video-full-overlay h1 {
      font-size: 2rem;
      color: #0066FF;
      margin-bottom: 20px;
    } */

.flower-video-full-overlay h1 {
    font-size: 2rem;
    color: #0066FF;
    margin-bottom: 20px;
    white-space: normal;
    word-wrap: break-word;
    padding: 0 10px;
}

@media screen and (max-width: 768px) {
    .flower-video-wrapper {
        min-height: 380px;
        margin: 20px auto 30px auto;
    }

    .flower-video {
        width: 100%;
        height: 380px;
        object-fit: cover;
        position: relative;
        right: 0;
    }

    .flower-video-full-overlay {
        padding: 30px 15px;
    }

    .flower-video-full-overlay h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .quality-text {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .mix-match-text {
        font-size: 0.8rem;
        margin-top: 5px;
    }
}

@media screen and (max-width: 480px) {
    .flower-video-wrapper {
        min-height: 420px;
        padding-top: 30px;
    }

    .flower-video {
        height: 420px;
    }

    .flower-video-full-overlay {
        padding: 25px 12px;
    }

    .flower-video-full-overlay h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .quality-text {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .mix-match-text {
        font-size: 0.7rem;
    }
}

.pricing-list {
    list-style-position: inside;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.pricing-list li {
    margin: 8px 0;
}

.mix-match-text {
    text-align: center;
    color: #fff;
    font-size: 1rem;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.mix-match-text span {
    color: #0066FF !important;
    font-weight: bold;
}

.pricing-left-2 {
    width: 100%;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .flower-video-full-overlay h1 {
        font-size: 1.5rem;
    }

    .pricing-list {
        font-size: 1rem;
    }

    .mix-match-text {
        font-size: 0.9rem;
    }
}

.last-row-single {
    display: flex;
    justify-content: center;
}

.last-row-single .product-card {
    margin: 0 auto;
}


.section-title {
    text-align: center;
    font-size: 28px;
    margin: 50px 0 30px;
    color: #0066FF;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title:before,
.section-title:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: #0066FF;
}

.section-title:before {
    left: -60px;
}

.section-title:after {
    right: -60px;
}


@media screen and (max-width: 768px) {

    .section-title:before,
    .section-title:after {
        display: none;
    }

    .section-title {
        margin: 40px 0 25px;
        font-size: 24px;
    }
}

/* @media screen and (max-width: 768px) {
    .flower-video-wrapper {
        min-height: 280px;
        margin: 20px auto 30px auto;
    }
    
    .flower-video-full-overlay h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .pricing-list {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .flower-video-wrapper {
        min-height: 320px;
    }
    
    .flower-video-full-overlay h1 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .pricing-list {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .pricing-list li {
        margin: 5px 0;
    }
    
    .mix-match-text {
        font-size: 0.85rem;
        margin-top: 10px;
    }
} */

@media screen and (max-width: 768px) {
    .flower-video-wrapper {
        min-height: 300px;
        margin: 20px auto 30px auto;
        position: relative;
        overflow: hidden;
    }

    .flower-video {
        width: 115%;
        height: auto;
        position: relative;
        right: -10%;
        object-fit: cover;
    }

    .flower-video-full-overlay h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .pricing-list {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .flower-video-wrapper {
        min-height: 160px;
        position: relative;
        overflow: hidden;
    }

    .flower-video {
        min-height: 210px;
        margin-top: 28px;
        width: 130%;
        position: relative;
        right: 18px;
        transform: translateY(8px);
    }

    .flower-video-full-overlay h1 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .pricing-list {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .pricing-list li {
        margin: 5px 0;
    }

    .mix-match-text {
        font-size: 0.85rem;
        margin-top: 10px;
    }
}

.quality-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 80%;
    margin-bottom: 20px;
}





.pricing-bar {
    text-align: left;
    margin: 0 auto 30px auto;
    padding: 20px 25px;
    background: #0a0a0a;
    border-radius: 12px;
    max-width: 500px;
    border: 2px solid #0066FF;
}

.pricing-bar h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 1px;
    text-align: left;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-item {
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    line-height: 1.5;
}

.pricing-item span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.pricing-note {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

.pricing-note a {
    color: #0066FF;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

.special-pricing {
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid #0066FF;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
}

.special-pricing .pricing-item {
    color: #fff;
}

.special-pricing .pricing-item span {
    color: #ffffff;
}

.special-pricing .pricing-grid {
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .pricing-bar {
        max-width: 90%;
        padding: 15px 20px;
    }

    .pricing-bar h3 {
        font-size: 18px;
    }

    .pricing-item {
        font-size: 15px;
    }

    .pricing-item span {
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    .pricing-bar {
        padding: 12px 15px;
    }

    .pricing-bar h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .pricing-item {
        font-size: 14px;
    }

    .pricing-item span {
        font-size: 15px;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.bounce-icon {
    display: inline-block;
    animation: bounce 1s ease infinite;
    font-size: 1.2rem;
    line-height: 1;
}

.bounce-icon-delayed {
    display: inline-block;
    animation: bounce 1s ease infinite 0.5s;
    font-size: 1.2rem;
    line-height: 1;
}

.mix-match-text-small {
    font-size: 14px;
    color: #aaa;
    margin-top: 5px;
}

.promo-banner-text {
    text-align: center;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.promo-banner-text strong {
  position: relative;
  top: 10px;
}