@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 18px;
}

h1,
h2,
h3,
.logo,
.section-title {
    font-family: 'Playfair Display', serif;
}

.btn,
.nav-links a {
    font-family: 'Montserrat', sans-serif;
}

/* Header */
.top-bar {
    background: #0f0f0f;
    color: #eee;
    padding: 10px 0;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    animation: lineGrow 2s ease-in-out infinite;
}

@keyframes lineGrow {

    0%,
    100% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }
}

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

.top-bar a {
    color: #d4af37;
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.top-bar a:hover {
    color: #fff;
    transform: scale(1.1);
}

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInUp 0.6s ease-out;
}

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

.logo {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.logo:hover {
    transform: scale(1.05);
    letter-spacing: 3px;
}

.logo span {
    color: #d4af37;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover span {
    transform: translateX(5px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

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

.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1600&q=80&fit=crop');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    perspective: 1000px;
    /* Enable 3D space */
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    transform-style: preserve-3d;
    /* Key to 3D children */
    transition: transform 0.1s ease-out;
    /* Smooth follow for mouse */
    /* Initial enter animation is handled by keyframes, but javascript will overwrite transform soon */
    animation: heroEnter 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroEnter {
    0% {
        opacity: 0;
        transform: translateZ(-200px) rotateX(10deg);
    }

    100% {
        opacity: 1;
        transform: translateZ(0) rotateX(0);
    }
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 10px;
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateZ(60px);
    /* Bring closer in 3D */
    opacity: 0;
    animation: slideInDown 1s ease-out 0.5s forwards, floatTitle 3s ease-in-out 1.5s infinite;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateZ(60px) translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateZ(60px) translateY(0);
    }
}

@keyframes floatTitle {

    0%,
    100% {
        transform: translateZ(60px) translateY(0);
    }

    50% {
        transform: translateZ(60px) translateY(-10px);
    }
}

.hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e0e0e0;
    transform: translateZ(40px);
    /* Mid-ground */
    opacity: 0;
    animation: slideInUp 1s ease-out 0.8s forwards, floatSubtitle 4s ease-in-out 1.8s infinite;
}

@keyframes floatSubtitle {

    0%,
    100% {
        transform: translateZ(40px) translateY(0);
    }

    50% {
        transform: translateZ(40px) translateY(-8px);
    }
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateZ(80px);
    /* Closest to viewer */
    opacity: 0;
    animation: fadeScaleUp 1s ease-out 1.1s forwards, floatButtons 5s ease-in-out 2.1s infinite;
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: translateZ(80px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateZ(80px) scale(1);
    }
}

@keyframes floatButtons {

    0%,
    100% {
        transform: translateZ(80px) scale(1) translateY(0);
    }

    50% {
        transform: translateZ(80px) scale(1) translateY(-12px);
    }
}


.btn {
    padding: 18px 45px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 0;
    /* Sharper, more classic look */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #d4af37;
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    /* Glassy feel */
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: #f8f8f8;
}

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

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4af37;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg,
            transparent 0%,
            #d4af37 50%,
            transparent 100%);
    background-size: 200% 100%;
}

.section-title span {
    color: #d4af37;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border: 3px solid #d0d0d0;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    height: 280px;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Focus on top (faces) */
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-icon img.position-center {
    object-position: center center;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 80px 20px;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #f9f9f9;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
    border: 3px solid #d0d0d0;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 450px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease;
    border-radius: 22px 22px 0 0;
}

.product-card:hover .product-image {
    background-size: cover;
    /* Prevent zoom on hover that breaks fit */
    transform: scale(1.05);
    /* Zoom the container instead */
}

.product-card:nth-child(1) .product-image {
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
        url('photo_2025-12-16_14-54-22.jpg');
}

.product-card:nth-child(2) .product-image {
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
        url('photo_2025-12-16_16-13-30.jpg');
}

.product-card:nth-child(3) .product-image {
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
        url('photo_2025-12-16_14-48-11.jpg');
    background-position: center center;
    background-size: contain;
}

.product-card:nth-child(4) .product-image {
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
        url('photo_1_2025-12-16_14-45-49.jpg');
}

.product-info {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #f8f8f8;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: #d4af37;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-info p {
    transform: translateY(-3px);
}

/* About Us Section */
.about-us {
    padding: 80px 20px;
    background: #fff;
}

.about-content {
    max-width: 900px;
    margin: 50px auto 0;
}

.about-text h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin: 30px 0 20px 0;
    font-family: 'Playfair Display', serif;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.value-item strong {
    display: block;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.value-item p {
    margin: 0;
    font-size: 16px;
    color: #666;
    text-align: left;
}

/* Store Location */
.store-location {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.location-info {
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

.location-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #d4af37;
}

.location-details {
    font-size: 18px;
    line-height: 2;
}

.location-details strong {
    color: #d4af37;
    display: block;
    margin-top: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.location-details strong:hover {
    transform: translateX(10px);
}

.map-container {
    height: 450px;
    width: 100%;
    position: relative;
    border: 2px solid #d4af37;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.3s;
}

.map-pin-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    /* Center pin tip */
    pointer-events: none;
    /* Let clicks pass through to map */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pin {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37' width='48px' height='48px'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
    animation: bounce 2s infinite;
}

.pulse {
    position: absolute;
    width: 20px;
    height: 10px;
    background: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    top: 35px;
    /* Below the pin */
    animation: pulseShadow 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseShadow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: #f8f8f8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #d4af37;
    font-style: italic;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
    position: relative;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.5s;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: #d4af37;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    border-left-width: 6px;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: bold;
    color: #1a1a1a;
    font-style: normal;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: shimmer 3s infinite;
}

.footer-section {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.8;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section a:hover {
    color: #d4af37;
    padding-left: 10px;
    transform: translateX(5px);
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    background: #128c7e;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s ease-out infinite;
    opacity: 0.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-bar a {
        margin-left: 0;
        margin-top: 5px;
    }

    .feature-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card,
    .product-card {
        border-width: 2px;
        border-radius: 20px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .feature-card:hover,
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    }

    .product-image {
        border-radius: 18px 18px 0 0;
    }
}