.section {
    padding: 72px 0;
}

.section-title {
    position: relative;
    margin: 0 0 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem !important;
    font-weight: 900;
    text-align: center;
    color: var(--jungle-green);
}

.section-title::after {
    content: "";
    display: block;
    width: 110px;
    height: 5px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--jungle-green), var(--banana-leaf));
}

.section-subtitle {
    max-width: 680px;
    margin: 0 auto 22px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.btn,
.hero .btn,
.section .btn,
.cta-section .btn,
.hero-slider-new .btn,
.products-page .buy-now-btn,
.products-page .chart-btn,
.products-page .market-tab,
.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary,
.products-page .buy-now-btn,
.contact-link {
    background: linear-gradient(135deg, var(--jungle-green), var(--tropical-turquoise));
    color: #fff;
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.35);
}

.btn-primary:hover,
.products-page .buy-now-btn:hover,
.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(42, 157, 143, 0.42);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--jungle-green);
}

.btn-secondary:hover {
    background: rgba(42, 157, 143, 0.12);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 64px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.8) 0%, transparent 100%);
    opacity: 0.12;
    z-index: -1;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin: 0 0 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 3.4rem !important;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.hero-gradient,
.gradient-text {
    background: linear-gradient(135deg, var(--jungle-green), var(--banana-leaf), var(--mango-yellow));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    max-width: 720px;
    margin: 0 auto 42px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.hero-actions,
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    padding: 34px;
    max-width: 820px;
    margin: 0 auto;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.stat {
    min-width: 150px;
    text-align: center;
}

.stat .number {
    display: block;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 2.3rem !important;
    font-weight: 800;
    line-height: 1;
    color: var(--jungle-green);
}

.stat .label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-chart {
    max-width: 1000px;
    margin: 42px auto;
    padding: 24px;
    border-radius: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.hero-slider-new {
    position: relative;
    min-height: 82vh;
}

.hero-slider-new .slides,
.hero-slider-new .slide {
    min-height: 82vh;
}

.hero-slider-new .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.55s ease;
}

.hero-slider-new .slide.active {
    position: relative;
    opacity: 1;
}

.hero-slider-new .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 20, 24, 0.78), rgba(12, 62, 69, 0.38));
}

.hero-slider-new .content {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 40px));
    padding: 24px;
    text-align: center;
}

.hero-slider-new h1 {
    margin: 0 0 16px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 8vw, 5.2rem);
    line-height: 0.98;
    color: #fff;
}

.hero-slider-new h1 span {
    color: var(--banana-leaf);
}

.hero-slider-new p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.2rem;
}

.hero-slider-new .actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.slider-dots .dot.active {
    background: var(--banana-leaf);
}

.features-grid,
.comparison-grid,
.card-grid {
    display: grid;
    gap: 26px;
}

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

.feature-card,
.info-card,
.comparison-card,
.warning-card {
    position: relative;
    padding: 28px 22px;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.feature-card:hover,
.info-card:hover,
.comparison-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--jungle-green), var(--tropical-turquoise));
    color: #fff;
    font-size: 24px !important;
}

.feature-card h3,
.contact-card h3,
.comparison-card h3,
.custody-card h3 {
    margin: 0 0 14px;
    color: var(--text-primary);
}

.feature-card p,
.comparison-card li,
.custody-card p,
.info-card p {
    color: var(--text-secondary);
}

.buy-steps-wrapper,
.steps,
.custody-grid {
    display: grid;
    gap: 24px;
}

.buy-steps-wrapper,
.steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.buy-step-card,
.step,
.custody-card,
.mini-card,
.highlight-card,
.flow-card {
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.buy-step-card,
.step {
    position: relative;
    padding: 30px 24px;
    text-align: center;
}

.buy-step-number,
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: rgba(42, 157, 143, 0.16);
    color: var(--jungle-green);
    font-size: 1.3rem;
    font-weight: 800;
}

.buy-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: var(--jungle-green);
    color: #fff;
    font-size: 1.9rem;
}

.buy-extra-info {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.buy-extra-info ul {
    display: inline-grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    text-align: left;
    list-style: none;
}

.buy-extra-info li {
    display: flex;
    gap: 10px;
    color: var(--text-secondary);
}

.buy-extra-info i,
.crypto-note i {
    color: var(--jungle-green);
}

.buy-start-btn {
    margin-top: 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px !important;
    margin-top: 20px !important;
}

.products-grid > * {
    min-width: 0;
}

.shortcode-grid > * {
    width: 100%;
}

.crypto-actions {
    margin-top: 20px;
    text-align: center;
}

.crypto-note {
    margin-top: 16px;
    text-align: center;
    color: var(--text-secondary);
}

.steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step h4 {
    margin: 0 0 12px;
    color: var(--text-primary);
}

#self-custody {
    position: relative;
}

.custody-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.custody-column {
    display: grid;
    gap: 20px;
}

.custody-card {
    padding: 24px;
}

.mini-card {
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.mini-card + .mini-card {
    margin-top: 14px;
}

.highlight-card {
    padding: 18px;
    text-align: center;
}

.highlight-card.warning,
.comparison-card.danger,
.custody-card.danger {
    border-color: rgba(231, 111, 81, 0.35);
}

.comparison-card.success,
.custody-card.success {
    border-color: rgba(42, 157, 143, 0.35);
}

.flow-card {
    display: grid;
    gap: 14px;
    padding: 26px;
    text-align: center;
}

.flow-item {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
}

.comparison-card ul {
    margin: 0;
    padding-left: 18px;
}

.tag,
.benefit-tag {
    display: inline-flex;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(42, 157, 143, 0.12);
    color: var(--jungle-green);
    font-size: 0.78rem;
    font-weight: 700;
}

.final-text {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    color: var(--text-secondary);
}

.cta-section {
    padding: 86px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.85), rgba(38, 70, 83, 0.94));
}

.cta-section h2 {
    margin: 0 0 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 2.6rem;
    color: #fff;
}

.cta-section p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
}

.wallet-logo {
    color: var(--text-secondary);
}

.contact-hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(10, 124, 113, 0.8)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.contact-hero-section h1 {
    margin: 0 0 20px;
    font-size: 3.2rem;
    font-weight: 800;
}

.contact-hero-section p {
    max-width: 800px;
    margin: 0 auto 34px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.94);
}

.hero-call-center {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-call-center i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #fff;
    color: var(--jungle-green);
    font-size: 1.5rem;
}

.hero-call-center .title,
.hero-call-center .hours {
    color: rgba(255, 255, 255, 0.8);
}

.hero-call-center .number {
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-grid,
.office-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.contact-card,
.contact-form-wrapper,
.map-section,
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.contact-card {
    position: relative;
    padding: 34px 28px;
    border-radius: 20px;
    text-align: center;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: rgba(10, 124, 113, 0.1);
    color: var(--jungle-green);
    font-size: 42px;
}

.contact-card p,
.info-content p {
    color: var(--text-secondary);
}

.contact-form-wrapper,
.map-section {
    padding: 36px;
    border-radius: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group label i {
    color: var(--jungle-green);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
}

.info-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(10, 124, 113, 0.1);
    color: var(--jungle-green);
    font-size: 24px;
}

.info-content h4 {
    margin: 0 0 8px;
    color: var(--text-primary);
}

.products-page {
    background: var(--bg-primary);
}

.products-page .container {
    width: min(1400px, calc(100% - 40px));
}

.products-page .crypto-ticker-bar {
    padding: 12px 0;
    overflow: hidden;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.products-page .crypto-ticker-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
}

.products-page .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.products-page .price-up {
    color: #10b981;
}

.products-page .price-down {
    color: #ef4444;
}

.products-page .hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
}

.products-page .hero h1 {
    font-size: 3.5rem !important;
}

.products-page .hero p {
    margin-bottom: 28px;
}

.products-page .live-prices,
.products-page .chart-selector {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.products-page .live-prices {
    margin-bottom: 30px;
}

.products-page .price-ticker,
.products-page .filters-sidebar,
.products-page .wallet-card,
.products-page .trade-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.products-page .price-ticker {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 12px;
}

.products-page .price-info {
    text-align: left;
}

.products-page .price-info .crypto-name {
    font-size: 0.9rem;
    font-weight: 700;
}

.products-page .price-info .current-price {
    font-size: 1.2rem;
    font-weight: 800;
}

.products-page .chart-btn,
.products-page .market-tab {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.products-page .chart-btn.active,
.products-page .chart-btn:hover,
.products-page .market-tab.active {
    background: var(--jungle-green);
    color: #fff;
    border-color: var(--jungle-green);
}

.products-page .marketplace-section,
.products-page .wallet-section {
    padding: 80px 0;
}

.products-page .wallet-section {
    background: var(--bg-surface);
}

.products-page .marketplace-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}

.products-page .filters-sidebar {
    position: sticky;
    top: 100px;
    padding: 25px;
    border-radius: 20px;
}

.products-page .filter-group + .filter-group {
    margin-top: 24px;
}

.products-page .filter-group h4 {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.products-page .filter-options {
    display: grid;
    gap: 10px;
}

.products-page .filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-page .filter-option input[type="checkbox"] {
    accent-color: var(--jungle-green);
}

.products-page .market-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 26px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.products-page .market-tab-content {
    display: none;
}

.products-page .market-tab-content.active {
    display: block;
}

.products-page .products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.products-page .products-sort select,
.products-page .buy-amount-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-primary);
}

.products-page .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.products-page .crypto-card {
    padding: 22px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.products-page .crypto-card:hover {
    transform: translateY(-4px);
    border-color: var(--jungle-green);
}

.products-page .crypto-header,
.products-page .price-section,
.products-page .wallet-header,
.products-page .wallet-address,
.products-page .modal-header,
.products-page .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.products-page .price-section,
.products-page .modal-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.products-page .crypto-symbol,
.products-page .current-price-lg,
.products-page .wallet-balance {
    font-weight: 800;
    color: var(--text-primary);
}

.products-page .current-price-lg {
    font-size: 1.6rem;
}

.products-page .crypto-name-lg,
.products-page .buy-total-display,
.products-page .wallet-header p {
    color: var(--text-secondary);
}

.products-page .price-change {
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.products-page .price-change.up {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.products-page .price-change.down {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.products-page .crypto-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.products-page .stat-item {
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--bg-surface);
}

.products-page .stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.products-page .stat-value {
    font-size: 0.95rem;
    font-weight: 700;
}

.products-page .buy-now-btn {
    width: 100%;
}

.products-page .wallet-container {
    max-width: 900px;
    margin: 0 auto;
}

.products-page .wallet-card {
    padding: 30px;
    border-radius: 25px;
}

.products-page .wallet-balance {
    font-size: 2.5rem;
    color: var(--jungle-green);
}

.products-page .wallet-address {
    margin-bottom: 25px;
    padding: 14px 15px;
    border-radius: 12px;
    background: var(--bg-surface);
    word-break: break-all;
    font-family: monospace;
}

.products-page .copy-btn,
.products-page .modal-close {
    border: none;
    background: transparent;
    color: var(--jungle-green);
    cursor: pointer;
}

.products-page #walletAssets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.products-page .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    background: rgba(0, 0, 0, 0.7);
}

.products-page .modal-overlay.active {
    display: block;
}

.products-page .trade-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1001;
    display: none;
    width: min(520px, calc(100% - 30px));
    padding: 30px;
    border-radius: 24px;
    transform: translate(-50%, -50%);
}

.products-page .trade-modal.active {
    display: block;
}

.products-page .payment-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.products-page .pay-option {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 12px;
    border-radius: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.products-page .pay-option.active {
    background: rgba(42, 157, 143, 0.1);
    border-color: var(--jungle-green);
}

.products-page .real-badge,
.products-page .demo-badge {
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 0.7rem;
}

.products-page .real-badge {
    background: rgba(16, 185, 129, 0.18);
    color: #10b981;
}

.products-page .demo-badge {
    background: rgba(239, 68, 68, 0.18);
    color: #ef4444;
}

.products-page .loading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.products-page .skeleton {
    min-height: 400px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-card) 50%, var(--bg-surface) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 1200px) {
    .features-grid,
    .buy-steps-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-page .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .steps,
    .custody-grid,
    .comparison-grid,
    .products-page .marketplace-container {
        grid-template-columns: 1fr;
    }

    .products-page .filters-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero,
    .contact-hero-section {
        padding-top: 110px;
    }

    .hero h1,
    .products-page .hero h1,
    .contact-hero-section h1 {
        font-size: 2.4rem !important;
    }

    .hero-stats,
    .features-grid,
    .buy-steps-wrapper,
    .products-page #walletAssets,
    .products-page .payment-methods {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        padding: 24px;
    }

    .contact-form-wrapper,
    .map-section,
    .products-page .wallet-card,
    .products-page .trade-modal {
        padding: 24px;
    }

    .products-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .hero-slider-new .content {
        padding-inline: 0;
    }

    .products-page .products-grid,
    .products-page .payment-methods {
        grid-template-columns: 1fr;
    }
}
