/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #d4a574;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    color: #d4a574;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #d4a574;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    border-color: #d4a574;
    color: #d4a574;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    color: #fff;
}

.hero-subtitle {
    color: #d4a574;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta:hover {
    background: transparent;
    border-color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f7f6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: #d4a574;
    z-index: -1;
    border-radius: 10px;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.about-text {
    padding-left: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.signature {
    margin-top: 2rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f7f6;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(184, 149, 106, 0.1));
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    position: relative;
    z-index: 1;
}

.service-description {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #f8f7f6;
}
.team-all{
    padding-top: 200px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.team-more-btn{
    display: block;
    width: fit-content;
    padding: .7rem 100px;
    margin: 50px auto;
}

.team-member {
    perspective: 1000px;
}

.member-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 116, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.member-card:hover .member-social a {
    transform: translateY(0);
}

.member-social a:hover {
    background: #2c2c2c;
    color: #fff;
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
    color: #fff;
}

.member-role {
    color: #d4a574;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #fff;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dotted #ddd;
    transition: all 0.3s ease;
}

.price-item:hover {
    padding-left: 1rem;
    background: rgba(212, 165, 116, 0.05);
}

.service-name {
    font-weight: 600;
    color: #2c2c2c;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.price {
    font-weight: 700;
    color: #d4a574;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f7f6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 116, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Hours & Access Section */
.hours-access {
    padding: 80px 0;
    background: #2c2c2c;
    color: #fff;
}

.hours-access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.hours-section h3,
.access-section h3 {
    color: #d4a574;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border-left: 4px solid #d4a574;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.access-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.access-item i {
    color: #d4a574;
    width: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f7f6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info .logo {
    color: #d4a574;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}
.contact-details a{
    color: #2c2c2c;
}

.contact-details h4 {
    color: #2c2c2c;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reservation-form{
    background-color: #3a3a3a;
    border-radius: 10px;
    padding: 20px;
}
.reservation-form > .form-row{
    display: flex;
    margin: 10px 0;
}
.reservation-form > .form-row > input{
    text-align: center;
    width: 50%;
    padding: 10px 0;
}
.form-row > select{
    padding: 10px 0;
    background-color: #fff;
    color: #3a3a3a;
    width: 50%;
    text-align: center;
    text-align-last: center;
    border-radius: 3px;
}
.form-row > input[type="date"], .form-row > input[type="time"]{
    padding: 10px 0;
    background-color: #fff;
    color: #3a3a3a;
    width: 50%;
    min-height: 36.5px;
}
textarea{
    width: 100%;
    resize: none;
    padding: 20px;
}

.newsletter h4 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4a574;
}

.newsletter-form button {
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #d4a574;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #d4a574;
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .pricing-content,
    .hours-access-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-columns {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .nav-btn {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.btn-cta {
    animation-delay: 0.8s;
}

/* Scroll animations would be handled by JavaScript */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
iframe{
    width: 100%;
}


/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #fff;
}

.reviews-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.review-slide {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.review-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.review-card {
    background: linear-gradient(135deg, #f8f7f6, #fff);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(212, 165, 116, 0.1);
    font-family: 'Georgia', serif;
    line-height: 1;
    z-index: 1;
}

.review-content {
    position: relative;
    z-index: 2;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4a574;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    text-align: left;
}

.reviewer-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
}

.reviewer-title {
    color: #d4a574;
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 0 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #d4a574;
    background: transparent;
    color: #d4a574;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #d4a574;
    color: #fff;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #d4a574;
    transform: scale(1.2);
}

/* Reviews Animation Effects */
.review-slide.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

.review-slide.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

.review-slide.slide-out-right {
    animation: slideOutRight 0.5s ease forwards;
}

.review-slide.slide-out-left {
    animation: slideOutLeft 0.5s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

/* Responsive Design Updates for Reviews */
@media (max-width: 768px) {
    .review-card {
        padding: 2rem 1.5rem;
    }

    .reviewer {
        flex-direction: column;
        text-align: center;
    }

    .reviewer-info {
        text-align: center;
    }

    .carousel-controls {
        padding: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}



/* Buy Hover */
/*  */
/* Delete this when you make website */
/*  */
.buy-hover{
    position: fixed;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
    color: #1a1a1a;
    font-family: 'Open Sans', sans-serif;
    flex-direction: column;
}
.buy-hover > span{
    display: block;
    margin: auto 0;
}
.buy-hover-btns{
    display: flex;
    width: fit-content;
    margin: 20px auto 10px;
}
.buy-hover-btns > a{
    background-color: #e3fc03;
    color: #1a1a1a;
    font-size: .9rem;
    display: block;
    padding: 10px 40px 10px 30px;
    width: fit-content;
    text-align: center;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    /* min-width: 160px; */
    position: relative;
    margin: auto 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}
.buy-hover-btns > a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 4px solid #000000;
    border-right: 4px solid rgb(0, 0, 0);
}
.buy-hover-btns > a:hover{
    background-color: #d4ed02;
    transform: translateY(-2px);
    transition: all .3s ease-in;
}
.buy-hover-btns > a.buy-hover-btns-back{
    background-color: #333;
    color: #fff;
    /* border: #1a1a1a 1px solid; */
}
.buy-hover-btns > a.buy-hover-btns-back::after{
    border-color: #fff;
}
@media (max-width: 600px) {
    .buy-hover{
        flex-direction: column;
    }
    .buy-hover > a{
        margin: 20px auto 0;
    }
    .buy-hover > span{
        font-size: .85rem;
    }
}