/* ===================================================
   OUTDOOR STORE – REDESIGNED
   Clean, modern e-commerce layout inspired by
   premium outdoor equipment stores
   =================================================== */

:root {
    --blue-900: #071e32;
    --blue-800: #0D3B5E;
    --blue-700: #145088;
    --blue-600: #1A6FA8;
    --blue-500: #2589C7;
    --blue-100: #E8F0F8;
    --blue-50: #F2F6FA;

    --accent-gold: #E8C87D;
    --accent-coral: #D9654A;
    --orange-500: #e58b35;
    --orange-400: #f0a050;

    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #444444;
    --gray-600: #555555;
    --gray-500: #777777;
    --gray-400: #999999;
    --gray-300: #c4c4c4;
    --gray-200: #e5e5e5;
    --gray-100: #f3f3f3;
    --gray-50: #fafafa;

    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 999px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    background: var(--white);
}

/* ──────────────── STORE PAGE CONTAINER ──────────────── */
.store-page {
    width: 100%;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    -webkit-font-smoothing: antialiased;
}

/* Break out of parent .page-main container */
.page-main:has(.store-page) {
    max-width: 100%;
    padding: 0;
}

/* ──────────────── HERO SECTION ──────────────── */
.store-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-copy {
    padding: 64px 60px 64px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-600);
    margin-bottom: 20px;
}

.hero-copy h1 {
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin: 0 0 20px;
    max-width: 540px;
}

.hero-copy p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
    margin: 0 0 32px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary-store,
.btn-ghost-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary-store {
    background: var(--blue-800);
    color: var(--white);
}

.btn-primary-store:hover {
    background: var(--blue-900);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 59, 94, 0.3);
}

.btn-ghost-store {
    background: var(--white);
    color: var(--gray-900);
    border: 1.5px solid var(--gray-200);
}

.btn-ghost-store:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.hero-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-badges span {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ── Hero Visual ── */
.hero-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-visual>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) brightness(0.95);
}

/* ── Floating product cards on hero ── */
.hero-product-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {

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

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

.hero-product-card .hpc-image {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-100);
}

.hero-product-card .hpc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product-card .hpc-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
}

.hero-product-card .hpc-info span {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 2px;
}

.card-hiking-shoes {
    top: 40%;
    left: 10%;
    animation-delay: 0s;
}

.card-carrier {
    top: 12%;
    right: 8%;
    animation-delay: 1s;
}

.card-jacket {
    bottom: 15%;
    right: 5%;
    animation-delay: 0.5s;
}

/* ──────────────── SEARCH & FILTER BAR ──────────────── */
.search-filter-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.search-box-wrapper {
    position: relative;
    flex: 1;
    max-width: 480px;
}

.search-box-wrapper .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.search-box-wrapper input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    color: var(--gray-900);
    outline: none;
    transition: var(--transition);
}

.search-box-wrapper input::placeholder {
    color: var(--gray-400);
}

.search-box-wrapper input:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(26, 111, 168, 0.1);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    white-space: nowrap;
}

.sort-wrapper select {
    height: 48px;
    padding: 0 36px 0 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    color: var(--gray-900);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: var(--transition);
}

.sort-wrapper select:focus {
    border-color: var(--blue-600);
}

/* ──────────────── CATEGORY TABS ──────────────── */
.category-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cat-tab {
    height: 38px;
    padding: 0 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-700);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cat-tab:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.cat-tab.active {
    background: var(--blue-800);
    color: var(--white);
    border-color: var(--blue-800);
}

/* ──────────────── PRODUCT SECTION ──────────────── */
.product-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 0;
}

.product-counter {
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--gray-400);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ── Product Card ── */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.product-image {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--gray-100);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

.wishlist-btn:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #ef4444;
    color: var(--white);
}

.wishlist-btn.active svg {
    fill: currentColor;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 3;
}

.badge-bestseller {
    background: var(--blue-800);
    color: var(--white);
}

/* ── Product Content ── */
.product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-subcategory {
    margin: 0 0 12px;
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.product-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating-star {
    color: var(--orange-500);
    font-size: 13px;
}

.rating-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-700);
}

.rating-count {
    font-size: 11px;
    color: var(--gray-400);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.btn-add-cart {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--blue-800);
    color: var(--white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.btn-add-cart:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(13, 59, 94, 0.25);
}

.btn-add-cart:active {
    transform: translateY(0);
}

/* ── Load More ── */
.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    padding-bottom: 8px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 28px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
    box-shadow: var(--shadow-sm);
}

/* ──────────────── POPULAR SECTION ──────────────── */
.popular-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 48px;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.popular-header h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: var(--gray-900);
}

.see-all-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}

.see-all-link:hover {
    color: var(--blue-700);
}

.popular-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.carousel-arrow:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
    color: var(--gray-900);
}

.popular-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 4px 0;
}

.popular-carousel::-webkit-scrollbar {
    display: none;
}

.popular-card {
    flex: 0 0 200px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.popular-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.popular-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-100);
}

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

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

.popular-card-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.popular-price {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.popular-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
}

.popular-rating .rating-star {
    font-size: 12px;
}

/* ──────────────── BENEFIT SECTION ──────────────── */
.benefit-section {
    max-width: 100%;
    margin: 48px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--blue-800);
}

.benefit-card {
    display: flex;
    gap: 16px;
    align-items: center;
    background: transparent;
    padding: 28px 24px;
    position: relative;
    transition: var(--transition);
}

.benefit-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.benefit-card p {
    margin: 3px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* ──────────────── FLOATING CART ──────────────── */
.floating-cart {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 80;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--blue-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(13, 59, 94, 0.35);
    transition: var(--transition);
}

.floating-cart:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 34px rgba(13, 59, 94, 0.4);
}

.floating-cart span {
    position: absolute;
    right: -4px;
    top: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: var(--radius-full);
    background: var(--orange-500);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ──────────────── CART DRAWER ──────────────── */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.cart-drawer.active {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.cart-box {
    position: relative;
    z-index: 2;
    width: min(420px, 100%);
    height: 100%;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.cart-head button {
    border: none;
    background: var(--gray-100);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-head button:hover {
    background: var(--gray-200);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.cart-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.cart-item span {
    display: block;
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 13px;
}

.cart-item button {
    border: none;
    background: #fef2f2;
    color: #dc2626;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item button:hover {
    background: #fee2e2;
}

.cart-total {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1.5px solid var(--gray-200);
}

.cart-total strong {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
}

.checkout-btn {
    width: 100%;
    height: 48px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--blue-800);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    margin-top: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: var(--blue-900);
}

/* ──────────────── EMPTY PRODUCT ──────────────── */
.empty-product {
    grid-column: 1 / -1;
    background: var(--gray-50);
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
}

.empty-product h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--gray-700);
}

.empty-product p {
    margin: 0;
    color: var(--gray-400);
    font-size: 14px;
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 1024px) {
    .store-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy {
        padding: 40px 32px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .card-hiking-shoes {
        top: auto;
        bottom: 20%;
        left: 5%;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .popular-card {
        flex: 0 0 180px;
    }

    .benefit-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-copy {
        padding: 32px 20px;
    }

    .hero-copy h1 {
        font-size: 30px;
    }

    .hero-trust-badges {
        gap: 12px;
    }

    .hero-trust-badges span {
        font-size: 11px;
    }

    .hero-product-card {
        display: none;
    }

    .search-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 16px 0;
    }

    .search-box-wrapper {
        max-width: 100%;
    }

    .sort-wrapper {
        justify-content: flex-end;
    }

    .category-tabs {
        padding: 16px 16px 0;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .product-section {
        padding: 20px 16px 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .popular-section {
        padding: 32px 16px 0;
    }

    .popular-card {
        flex: 0 0 160px;
    }

    .carousel-arrow {
        display: none;
    }

    .benefit-section {
        grid-template-columns: 1fr;
        margin-top: 32px;
        padding: 0;
    }

    .benefit-card:not(:last-child)::after {
        display: none;
    }

    .benefit-card:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .hero-copy h1 {
        font-size: 26px;
    }

    .hero-copy p {
        font-size: 13px;
    }

    .hero-visual {
        min-height: 260px;
    }

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

    .product-content h3 {
        font-size: 14px;
    }

    .btn-add-cart {
        height: 38px;
        font-size: 12px;
    }
}