/* Design System & Variables */
:root {
    --color-primary: #0EA5E9;
    /* Vivid Blue */
    --color-primary-dark: #0284C7;
    --color-secondary: #0284C7;
    /* Darker Blue */
    --color-secondary-dark: #0369A1;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F0F9FF;
    /* Very Light Blue */
    --color-border: #EEEEEE;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --container-width: 1200px;
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.section-title p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: var(--color-primary);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
    color: white;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-md);
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.main-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* Features Section */
.features {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.feature-item {
    padding: var(--spacing-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.feature-item h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
}

/* Products Section */
.products {
    padding: var(--spacing-xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-sm);
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.product-price {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.product-actions {
    margin-top: var(--spacing-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-primary);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Newsletter */
.newsletter {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: var(--color-bg);
}

.newsletter-form {
    max-width: 500px;
    margin: var(--spacing-md) auto 0;
    display: flex;
    gap: var(--spacing-xs);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-secondary);
}

/* Footer */
.site-footer {
    background-color: #222;
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: var(--spacing-md);
    gap: var(--spacing-md);
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-sm);
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.product-price {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.product-actions {
    margin-top: var(--spacing-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-primary);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Newsletter */
.newsletter {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: var(--color-bg);
}

.newsletter-form {
    max-width: 500px;
    margin: var(--spacing-md) auto 0;
    display: flex;
    gap: var(--spacing-xs);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-family: var(--font-body);
}



.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: var(--spacing-md);
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    order: 3;
    margin-left: 1rem;
}

.logo {
    order: 1;
    margin-right: auto;
}

.header-icons {
    order: 2;
    gap: 0.5rem;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    transition: left 0.3s ease;
    z-index: 2000;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.main-nav.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
}

.main-nav li {
    border-bottom: 1px solid var(--color-border);
}

.main-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-only {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.hero h1 {
    font-size: 2.5rem;
}

.about-inner {
    grid-template-columns: 1fr;
}

.product-actions {
    margin-top: var(--spacing-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-primary);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Newsletter */
.newsletter {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: var(--color-bg);
}

.newsletter-form {
    max-width: 500px;
    margin: var(--spacing-md) auto 0;
    display: flex;
    gap: var(--spacing-xs);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-family: var(--font-body);
}



.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: var(--spacing-md);
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    order: 3;
    margin-left: 1rem;
}

.logo {
    order: 1;
    margin-right: auto;
}

.header-icons {
    order: 2;
    gap: 0.5rem;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    transition: left 0.3s ease;
    z-index: 2000;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.main-nav.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
}

.main-nav li {
    border-bottom: 1px solid var(--color-border);
}

.main-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-only {
    align-items: center;
    flex-wrap: nowrap;
}

.mobile-menu-toggle {
    display: block;
    order: 3;
    margin-left: 1rem;
}

.logo {
    order: 1;
    margin-right: auto;
}

.header-icons {
    order: 2;
    gap: 0.5rem;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    transition: left 0.3s ease;
    z-index: 2000;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.main-nav.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
}

.main-nav li {
    border-bottom: 1px solid var(--color-border);
}

.main-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-only {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.hero h1 {
    font-size: 2.5rem;
}

.about-inner {
    grid-template-columns: 1fr;
}

.hero h1 {
    font-size: 2.5rem;
}

.about-inner {
    grid-template-columns: 1fr;
}

.newsletter-form {
    flex-direction: column;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Newsletter */
.newsletter {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: var(--color-bg);
}

.newsletter-form {
    max-width: 500px;
    margin: var(--spacing-md) auto 0;
    display: flex;
    gap: var(--spacing-xs);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    flex-wrap: nowrap;
}

.mobile-menu-toggle {
    display: block;
    order: 3;
    margin-left: 1rem;
}

.logo {
    order: 1;
    margin-right: auto;
}

.header-icons {
    order: 2;
    gap: 0.5rem;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    transition: left 0.3s ease;
    z-index: 2000;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.main-nav.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
}

.main-nav li {
    border-bottom: 1px solid var(--color-border);
}

.main-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-only {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.hero h1 {
    font-size: 2.5rem;
}

.about-inner {
    grid-template-columns: 1fr;
}

.newsletter-form {
    flex-direction: column;
}

.product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}

/* Ensure product actions are visible on mobile */
.product-actions {
    opacity: 1 !important;
    transform: translateY(0) !important;
    margin-top: 0.5rem;
}

.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
}

.main-nav li {
    border-bottom: 1px solid var(--color-border);
}

.main-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-only {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.hero h1 {
    font-size: 2.5rem;
}

.about-inner {
    grid-template-columns: 1fr;
}

.hero h1 {
    font-size: 2.5rem;
}

.about-inner {
    grid-template-columns: 1fr;
}

.newsletter-form {
    flex-direction: column;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Newsletter */
.newsletter {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: var(--color-bg);
}

.newsletter-form {
    max-width: 500px;
    margin: var(--spacing-md) auto 0;
    display: flex;
    gap: var(--spacing-xs);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    flex-wrap: nowrap;
}

.mobile-menu-toggle {
    display: block;
    order: 3;
    margin-left: 1rem;
}

.logo {
    order: 1;
    margin-right: auto;
}

.header-icons {
    order: 2;
    gap: 0.5rem;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    transition: left 0.3s ease;
    z-index: 2000;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.main-nav.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
}

.main-nav li {
    border-bottom: 1px solid var(--color-border);
}

.main-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-only {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.hero h1 {
    font-size: 2.5rem;
}

.about-inner {
    grid-template-columns: 1fr;
}

.newsletter-form {
    flex-direction: column;
}

.product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}

/* Ensure product actions are visible on mobile */
.product-actions {
    opacity: 1 !important;
    transform: translateY(0) !important;
    margin-top: 0.5rem;
}

.product-card {
    padding-bottom: 1rem;
}