/*==========================================
    GOOGLE FONT
==========================================*/

body {
    font-family: 'Poppins', sans-serif;
    background: #fbf7ff;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
}

section {
    padding: 80px 0;
}

/*==========================================
    CUSTOM SCROLLBAR
==========================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3e7ff;
}

::-webkit-scrollbar-thumb {
    background: #9c4dcc;
    border-radius: 20px;
}

/*==========================================
    NAVBAR
==========================================*/

.custom-navbar {

    background: #1e122d;

    /* backdrop-filter: blur(15px); */

    /* transition: .4s; */

    padding: 15px 0;

}

.logo {

    font-size: 28px;

    font-weight: bold;

    color: #fff !important;

}

.logo i {

    color: #d88cff;

}

.navbar-nav .nav-link {

    color: white !important;

    margin-left: 20px;

    position: relative;

    transition: .4s;

}

.navbar-nav .nav-link::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 2px;

    background: #ff9de2;

    transition: .4s;

}

.navbar-nav .nav-link:hover::after {

    width: 100%;

}

.navbar-nav .nav-link:hover {

    color: #ff9de2 !important;

}

/*==========================================
    HERO
==========================================*/

/*================ HERO =================*/

.hero-section {

    position: relative;

    padding: 160px 0 100px;

    background: linear-gradient(135deg, #1b0f2d, #4b1d73, #7b3fb2, #d98cff);

    overflow: hidden;

}

.hero-overlay {

    position: absolute;

    width: 100%;

    height: 100%;

    left: 0;

    top: 0;

    background: url('../images/crystal-bg.png');

    opacity: .08;

}

.hero-content {

    position: relative;

    z-index: 5;

}

.hero-tag {

    display: inline-block;

    background: #ffffff20;

    padding: 10px 20px;

    border-radius: 30px;

    color: #fff;

    margin-bottom: 25px;

    backdrop-filter: blur(10px);

}

.hero-content h1 {

    font-size: 60px;

    font-weight: 800;

    color: #fff;

    line-height: 1.2;

}

.hero-content h1 span {

    color: #ffd54f;

}

.hero-content p {

    color: #f5f5f5;

    font-size: 18px;

    line-height: 32px;

    margin: 30px 0;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.hero-btn {

    background: #ffd54f;

    color: #222;

    padding: 15px 35px;

    font-weight: 700;

    border-radius: 50px;

}

.hero-btn:hover {

    background: #dcf80a;

}

.hero-outline {

    border: 2px solid #f4f44d;

    color: #fff;

    padding: 15px 35px;

    border-radius: 50px;

}

.hero-outline:hover {

    background: #fff;

    color: #5d2b88;

}

.hero-counter {

    display: flex;

    gap: 40px;

}

.hero-counter h2 {

    color: #fff;

    font-weight: 700;

}

.hero-counter span {

    color: #ddd;

}

.hero-image {

    position: relative;

}

/* ==============================
   HERO SINGLE IMAGE
============================== */

.hero-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-crystal {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}


/* ==============================
   TABLET
============================== */

@media (max-width: 991px) {

    .main-crystal {
        width: 90%;
        max-width: 450px;
    }

}


/* ==============================
   MOBILE
============================== */

@media (max-width: 576px) {

    .hero-image {
        padding: 10px 0;
    }

    .main-crystal {
        width: 85%;
        max-width: 320px;
        height: auto;
    }

}


@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-20px);

    }

}

/*================ ABOUT HOME ================*/

.about-home {

    padding: 100px 0;

    background: #fff;

}

.section-subtitle {

    color: #9c27b0;

    font-weight: 700;

    letter-spacing: 2px;

}

.section-title {

    font-size: 42px;

    font-weight: 700;

    margin: 20px 0;

    color: #32104d;

}

.about-home p {

    color: #666;

    line-height: 30px;

}

.about-image {

    position: relative;

}

.about-image img {

    border-radius: 20px;

}

.experience-box {

    position: absolute;

    bottom: 20px;

    right: 20px;

    background: #7b1fa2;

    padding: 25px;

    border-radius: 20px;

    color: #fff;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);

}

.about-feature {

    display: flex;

    gap: 15px;

    align-items: center;

    padding: 18px;

    border-radius: 15px;

    background: #faf5ff;

    transition: .4s;

    height: 100%;

}

.about-feature:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(123, 31, 162, .18);

}

.about-feature i {

    font-size: 28px;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #7b1fa2;

    color: #fff;

}

/*================ COUNTER =================*/

.counter-section {

    background: linear-gradient(135deg, #4b1d73, #a855f7);

    padding: 80px 0;

}

.counter-box {

    color: #fff;

    padding: 20px;

}

.counter-box h2 {

    font-size: 48px;

    font-weight: 700;

}

.counter-box p {

    font-size: 18px;

    margin-top: 10px;

}

/*==========================================
    SECTION TITLE
==========================================*/

section h2 {

    color: #2b045b;

    font-weight: bold;

}

section h4 {

    color: #fff;

    font-weight: bold;

}

section p {

    color: #e5ff61;

}

/*==========================================
    FEATURE BOX
==========================================*/

.feature-box {

    background: #ee06b1;

    border-radius: 20px;

    padding: 40px 25px;

    text-align: center;

    transition: .4s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.feature-box i {

    font-size: 50px;

    color: #fdfcfe;

    margin-bottom: 20px;

}

.feature-box:hover {

    transform: translateY(-12px);

    background: linear-gradient(135deg, #8e44ad, #f4a5d9);

    color: white;

}

.feature-box:hover p,

.feature-box:hover i {

    color: rgb(251, 255, 0);

}

/*==========================================
    CRYSTAL CARD
==========================================*/

.crystal-card {

    background: white;

    border-radius: 25px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .4s;

}

.crystal-card img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: .5s;

}

.crystal-card h3 {

    margin-top: 20px;

    color: #7c2fc3;

}

.crystal-card p {

    padding: 0 20px;

}

.crystal-card .btn {

    margin-bottom: 25px;

    border-radius: 30px;

    padding: 10px 25px;

}

.crystal-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 45px rgba(142, 68, 173, .35);

}

.crystal-card:hover img {

    transform: scale(1.08);

}

/*==========================================
    NEWSLETTER
==========================================*/

.newsletter {

    background: linear-gradient(135deg, #7f36c8, #f5a7df);

    color: white;

}

.newsletter h2 {

    color: white;

}

.newsletter p {

    color: #fff;

}

.newsletter input {

    height: 55px;

    border: none;

    border-radius: 40px;

    padding-left: 20px;

}

.subscribe-btn {

    width: 100%;

    height: 55px;

    border-radius: 40px;

    background: white;

    color: #7a2bbd;

    font-weight: bold;

    transition: .3s;

}

.subscribe-btn:hover {

    background: #ffe0f7;

}

/*==========================================
    FOOTER
==========================================*/

footer {

    background: #1d102b;

    color: white;

    padding: 70px 0 20px;

}

footer h3,

footer h4 {

    color: #ffbaf2;

}

footer ul {

    list-style: none;

    padding: 0;

}

footer ul li {

    margin: 12px 0;

}

footer a {

    color: #ddd;

    transition: .3s;

}

footer a:hover {

    color: #ffbaf2;

    padding-left: 8px;

}

.social-icons i {

    width: 45px;

    height: 45px;

    line-height: 45px;

    text-align: center;

    background: #7f36c8;

    border-radius: 50%;

    margin-right: 10px;

    cursor: pointer;

    transition: .3s;

}

.social-icons i:hover {

    background: #ff9fe8;

    transform: translateY(-5px);
}

footer hr {

    border-color: rgba(255, 255, 255, .2);

    margin: 40px 0 20px;

}

/*==========================================
        TOP HEADER
==========================================*/

.top-header {

    background: linear-gradient(90deg, #4b1d73, #8E44AD, #d291bc);

    padding: 10px 0;

    color: #fff;

    font-size: 14px;

}

.top-contact {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

}

.top-contact a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.top-contact a:hover {

    color: #ffd6f7;

}

.top-contact i {

    margin-right: 8px;

    color: #ffd6f7;

}

.top-social {

    display: flex;

    justify-content: flex-end;

    gap: 12px;

}

.top-social a {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    transition: .4s;

}

.top-social a:hover {

    background: #fff;

    color: #8E44AD;

    transform: translateY(-3px);

}

/*================ PRODUCTS =================*/

.products-section {

    padding: 100px 0;

    background: #faf5ff;

}

.product-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    transition: .4s;

    position: relative;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    height: 100%;

}

.product-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 50px rgba(123, 31, 162, .25);

}

.product-card img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: .4s;

}

.product-card:hover img {

    transform: scale(1.08);

}

.product-info {

    padding: 25px;

    text-align: center;

}

.product-info h4 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 10px;

    color: #4b1d73;

}

.product-info p {

    color: #777;

    min-height: 50px;

}

.price {

    font-size: 28px;

    font-weight: 700;

    color: #9c27b0;

    margin: 20px 0;

}

.price span {

    font-size: 18px;

    text-decoration: line-through;

    color: #999;

    margin-left: 10px;

}

.product-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background: #ff4081;

    color: #fff;

    padding: 8px 15px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    z-index: 5;

}

/*================ CONSULTATION ================*/

.consultation-section {

    background: #ffffff;

    padding: 100px 0;

}

.consult-list {

    padding: 0;

    margin-top: 30px;

}

.consult-list li {

    list-style: none;

    margin-bottom: 15px;

    font-size: 17px;

}

.consult-list i {

    color: #9c27b0;

    margin-right: 10px;

}

.consult-form {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.consult-form h3 {

    margin-bottom: 25px;

    font-weight: 700;

    color: #4b1d73;

}

/*================ WHY US ================*/

.why-us {

    background: #faf5ff;

    padding: 100px 0;

}

.why-box {

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    transition: .4s;

    height: 100%;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.why-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(123, 31, 162, .2);

}

.why-box i {

    font-size: 45px;

    color: #9c27b0;

    margin-bottom: 20px;

}

/*================ TESTIMONIAL ================*/

.testimonial-section {

    padding: 100px 0;

    background: linear-gradient(135deg, #4b1d73, #8E44AD);

}

.testimonial-card {

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    height: 100%;

    transition: .4s;

}

.testimonial-card:hover {

    transform: translateY(-8px);

}

.testimonial-card h5 {

    margin-top: 20px;

    font-weight: 700;

    color: #4b1d73;

}

.testimonial-card span {

    color: #777;

}

.blog-card,
.testimonial-card,
.product-card,
.why-box {
    transition: .4s;
}

.blog-card:hover,
.testimonial-card:hover,
.product-card:hover,
.why-box:hover {
    transform: translateY(-10px);
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.blog-content {
    padding: 25px;
}

.gallery-section img {
    transition: .4s;
    cursor: pointer;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

.cta-section {
    background: linear-gradient(135deg, #5d2b88, #b15cff);
    padding: 70px 0;
    color: #fff;
}

.footer {
    background: #1e102d;
    color: #fff;
    padding: 70px 0 20px;
}

.footer ul {
    padding: 0;
}

.footer li {
    list-style: none;
    margin: 10px 0;
}

.footer a {
    color: #ddd;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer .social-icons a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    background: #5d2b88;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: .3s;
}

.footer .social-icons a:hover {
    background: #ff4fd8;
}

.glow {

    position: fixed;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(190, 90, 255, .35),
            transparent);

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 0;

    filter: blur(40px);

}

.particles span {

    position: absolute;

    width: 15px;

    height: 15px;

    background: #d79cff;

    border-radius: 50%;

    animation: particle 15s linear infinite;

    opacity: .4;

}

@keyframes particle {

    0% {

        transform: translateY(100vh);

    }

    100% {

        transform: translateY(-100px);

    }

}

.custom-navbar {

    background: rgba(40, 20, 60, .6);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}

body {

    cursor: url(images/crystal-cursor.png), auto;

}

.hero-btn {

    background: linear-gradient(45deg,
            #9b27ff,
            #ff53d9);

    color: #fff;

    transition: .5s;

}

.hero-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 20px 35px rgba(170, 0, 255, .35);

}

.product-card:hover {

    box-shadow:

        0 0 25px rgba(180, 90, 255, .45),

        0 0 60px rgba(255, 90, 220, .25);

}

.dark {

    background: #0f0717;

    color: #fff;

}

.dark section {

    background: #0f0717;

}

/*==============================
TOP HEADER
==============================*/

.top-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    background: linear-gradient(90deg, #5E2A84, #8A2BE2, #E91E63);

    color: #fff;

    padding: 8px 0;

    z-index: 1055;

    font-size: 14px;

}

.top-contact {

    display: flex;

    gap: 25px;

    align-items: center;

}

.top-contact a {

    color: #fff;

    text-decoration: none;

}

.top-contact a:hover {

    color: #FFD54F;

}

.top-social {

    display: flex;

    justify-content: flex-end;

    gap: 10px;

}

.top-social a {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    transition: .3s;

    text-decoration: none;

}

.top-social a:hover {

    background: #fff;

    color: #8A2BE2;

}

.custom-navbar {

    top: 50px;

    background: #23023a;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0);

    z-index: 1050;

}

.logo-img {

    height: 75px;

    width: 75px;

    border-radius: 50%;

}

body {

    padding-top: 135px;

}

@media(max-width:991px) {

    .top-header {

        position: relative;

    }

    .custom-navbar {

        top: 0;

    }

    body {

        padding-top: 0;

    }

    .top-contact {

        justify-content: center;

        flex-wrap: wrap;

        margin-bottom: 10px;

    }

    .top-social {

        justify-content: center;

    }

    .logo-img {

        height: 60px;

        width: 60px;

    }

}

/* Services */

.service-card {
    background: #ee06b1;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-card i {
    font-size: 45px;
    color: #fbff00;
    margin-bottom: 20px;
}

/* ================= IMAGE POPUP ================= */

.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.popup-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    animation: popupShow 0.4s ease;
}

.popup-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Close Button */

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: #000000;

    font-size: 28px;
    line-height: 35px;

    cursor: pointer;

    z-index: 10;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.popup-close:hover {
    background: #f1f1f1;
}

/* Animation */

@keyframes popupShow {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile */

@media (max-width: 576px) {

    .popup-content {
        width: 88%;
    }

    .popup-close {
        width: 34px;
        height: 34px;
        font-size: 24px;
        line-height: 30px;

        top: -10px;
        right: -10px;
    }
}

/* =========================================
   TOP HEADER - FULL RESPONSIVE
========================================= */

.top-header {
    width: 100%;
    background: linear-gradient(90deg, #4B1F6F, #8A2BE2, #E91E63);
    color: #fff;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
}

/* Contact Area */

.top-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.top-contact a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: 0.3s ease;
}

.top-contact a:hover {
    color: #FFD54F;
}

.top-contact i {
    margin-right: 7px;
    font-size: 13px;
}

/* Social Area */

.top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.top-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    background: rgba(255, 255, 255, 0.15);

    text-decoration: none;

    transition: all 0.3s ease;
}

.top-social a:hover {
    background: #fff;
    color: #8A2BE2;
    transform: translateY(-3px);
}


/* =========================================
   NAVBAR
========================================= */

.custom-navbar {
    position: fixed !important;

    top: 46px !important;
    left: 0;
    width: 100%;

    z-index: 1050;

    background: #350262;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */

.logo-img {
    width: 72px;
    height: 72px;

    object-fit: cover;

    border-radius: 50%;
}


/* Body spacing */

body {
    padding-top: 120px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .top-header {
        padding: 8px 0;
    }

    .top-contact {
        justify-content: center;
        gap: 15px;
    }

    .top-social {
        justify-content: center;
        margin-top: 7px;
    }

    .custom-navbar {
        top: 76px !important;
    }

    body {
        padding-top: 145px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .top-header {
        padding: 7px 10px;
    }

    .top-contact {
        width: 100%;

        display: flex;

        justify-content: center;

        flex-direction: column;

        gap: 5px;

        text-align: center;
    }

    .top-contact a {
        font-size: 12px;

        justify-content: center;
    }

    .top-social {
        width: 100%;

        justify-content: center;

        margin-top: 6px;

        gap: 7px;
    }

    .top-social a {
        width: 27px;
        height: 27px;

        font-size: 12px;
    }

    .custom-navbar {
        top: 88px !important;
    }

    .logo-img {
        width: 58px;
        height: 58px;
    }

    body {
        padding-top: 155px;
    }

}

@media (max-width: 576px) {

    /* Hide Top Header on Mobile */
    .top-header {
        display: none !important;
    }

    /* Navbar Mobile */
    .custom-navbar {
        top: 0 !important;
    }

    body {
        padding-top: 80px;
    }

    .logo-img {
        width: 58px;
        height: 58px;
    }

}

/* =========================================
   CRYSTAL PRODUCT IMAGES
========================================= */

.crystal-card {
    overflow: hidden;
    height: 100%;
}

.crystal-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.crystal-card:hover img {
    transform: scale(1.05);
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .crystal-card img {
        width: 100%;
        height: 250px;
        object-fit: contain;
        padding: 10px;
    }

}


/* SMALL MOBILE */

@media (max-width: 576px) {

    .crystal-card {
        width: 100%;
    }

    .crystal-card img {
        width: 100%;
        height: 220px;
        object-fit: contain;
        padding: 8px;
    }

}

/* =========================================
   MOBILE PRODUCT CARD FIX
========================================= */

.product-card {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-sizing: border-box;
}

/* Product Image */

.product-card>img {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 10px;
    box-sizing: border-box;
}

/* Product Content */

.product-content {
    padding: 15px;
    text-align: center;
}

.product-content h3 {
    font-size: 20px;
    margin: 5px 0;
}

.product-content p {
    font-size: 14px;
    margin-bottom: 12px;
}

/* Price */

.product-content .price {
    font-size: 30px;
    margin: 10px 0 18px;
}

/* Buy Now Button */

.product-content .hero-btn {
    width: 100%;
    display: block;
    padding: 12px 15px;
    border-radius: 35px;
    box-sizing: border-box;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .product-card {
        width: 100%;
        margin: 0 auto;
        border-radius: 18px;
    }

    .product-card>img {
        width: 100%;
        height: 400px;
        padding: 8px;
        object-fit: contain;
    }

    .product-content {
        padding: 12px 15px 18px;
    }

    .product-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .product-content p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .product-content .price {
        font-size: 28px;
        margin: 8px 0 15px;
    }

    .product-content .hero-btn {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }

}