/* ============================================
   PREMIUM E-COMMERCE THEME
   Doğal, Güvenilir, Premium, Satış Odaklı
   Referans: nidazeytin.com, kokluzeytincilik.com.tr
   ============================================ */

:root {
    --pm-primary: #2d5016;
    --pm-primary-light: #4a7a2e;
    --pm-primary-dark: #1a3009;
    --pm-accent: #c8a951;
    --pm-accent-light: #e0c96e;
    --pm-accent-dark: #a08530;
    --pm-dark: #1a1a1a;
    --pm-body-bg: #faf9f6;
    --pm-text: #333333;
    --pm-text-light: #6b6b6b;
    --pm-border: #e8e4dc;
    --pm-white: #ffffff;
    --pm-cream: #f5f0e8;
    --pm-success: #28a745;
    --pm-danger: #dc3545;
    --pm-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --pm-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --pm-radius: 8px;
    --pm-radius-lg: 16px;
    --pm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --pm-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --pm-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --pm-transition: all 0.3s ease;
}

/* === UTILITIES === */
.text-pm-primary {
    color: var(--pm-primary) !important;
}

.text-accent {
    color: var(--pm-accent) !important;
}

.bg-pm-primary {
    background-color: var(--pm-primary) !important;
}

.bg-accent {
    background-color: var(--pm-accent) !important;
}

.border-accent {
    border-color: var(--pm-accent) !important;
}

/* === GLOBAL === */
body.premium-theme {
    font-family: var(--pm-font-body);
    background-color: var(--pm-body-bg);
    color: var(--pm-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.premium-theme h1,
body.premium-theme h2,
body.premium-theme h3,
body.premium-theme h4 {
    font-family: var(--pm-font-heading);
    color: var(--pm-dark);
    font-weight: 700;
}

body.premium-theme .section-title {
    font-family: var(--pm-font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pm-dark);
    position: relative;
    display: inline-block;
}

body.premium-theme .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--pm-accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

body.premium-theme .section-subtitle {
    color: var(--pm-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === TOP BAR === */
.pm-topbar {
    background: var(--pm-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.pm-topbar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--pm-transition);
}

.pm-topbar a:hover {
    color: var(--pm-accent-light);
}

.pm-topbar .topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin: 0 12px;
    vertical-align: middle;
}

/* === HEADER / NAVBAR === */
.pm-header {
    background: var(--pm-white);
    border-bottom: 1px solid var(--pm-border);
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: var(--pm-transition);
}

.pm-header.scrolled {
    box-shadow: var(--pm-shadow-md);
}

.pm-header.header-hidden {
    transform: translateY(-100%);
}

.pm-header .navbar {
    padding: 0;
}

.pm-header .brand-area {
    padding: 16px 0;
}

.pm-header .brand-logo {
    height: 70px;
    object-fit: contain;
}

.pm-header .brand-name {
    font-family: var(--pm-font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pm-primary);
    letter-spacing: -0.5px;
}

.pm-header .brand-tagline {
    font-size: 0.72rem;
    color: var(--pm-text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Search Bar */
.pm-search-bar {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.pm-search-bar input {
    width: 100%;
    height: 44px;
    border: 2px solid var(--pm-border);
    border-radius: 50px;
    padding: 0 50px 0 20px;
    font-size: 0.9rem;
    background: var(--pm-body-bg);
    transition: var(--pm-transition);
}

.pm-search-bar input:focus {
    border-color: var(--pm-primary);
    background: var(--pm-white);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
    outline: none;
}

.pm-search-bar button {
    position: absolute;
    right: 4px;
    top: 4px;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: none;
    background: var(--pm-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--pm-transition);
}

.pm-search-bar button:hover {
    background: var(--pm-primary-dark);
}

/* Header Actions */
.pm-header-actions .action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--pm-text);
    font-size: 0.75rem;
    padding: 4px 12px;
    transition: var(--pm-transition);
    position: relative;
}

.pm-header-actions .action-item:hover {
    color: var(--pm-primary);
}

.pm-header-actions .action-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.pm-header-actions .action-item .badge {
    position: absolute;
    top: -2px;
    right: 4px;
    font-size: 0.6rem;
    padding: 2px 5px;
}

/* Navigation Bar */
.pm-nav {
    background: var(--pm-primary);
    padding: 0;
}

.pm-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 14px 18px !important;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: var(--pm-transition);
    border-bottom: 3px solid transparent;
}

.pm-nav .nav-link:hover,
.pm-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pm-accent-light) !important;
    border-bottom-color: var(--pm-accent);
}

.pm-nav .dropdown-menu {
    border: none;
    box-shadow: var(--pm-shadow-lg);
    border-radius: var(--pm-radius);
    padding: 8px 0;
    min-width: 220px;
    margin-top: 0;
}

.pm-nav .dropdown-item {
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: var(--pm-transition);
}

.pm-nav .dropdown-item:hover {
    background: var(--pm-cream);
    color: var(--pm-primary);
    padding-left: 24px;
}

/* === HERO SLIDER === */
.pm-hero-slider {
    position: relative;
    overflow: hidden;
}

.pm-hero-slider .carousel-item {
    /* height: auto — görsele göre kendisi ayarlar */
}

.pm-hero-slider .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1);
}

.pm-hero-slider .carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-bottom: 60px;
    text-align: center;
}

.pm-hero-slider .hero-badge {
    display: inline-block;
    background: var(--pm-accent);
    color: var(--pm-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pm-hero-slider .hero-title {
    font-family: var(--pm-font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--pm-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pm-hero-slider .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.pm-hero-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 1;
    margin: 0 4px;
}

.pm-hero-slider .carousel-indicators .active {
    background: var(--pm-accent);
    border-color: var(--pm-accent);
}

.pm-hero-slider .pm-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 10;
}

.pm-hero-slider .pm-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.pm-hero-slider .pm-slider-arrow i {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
}

.pm-hero-slider .carousel-control-prev.pm-slider-arrow {
    left: 16px;
}

.pm-hero-slider .carousel-control-next.pm-slider-arrow {
    right: 16px;
}

/* === BUTTONS === */
.pm-btn-primary {
    background: var(--pm-primary);
    color: white;
    border: 2px solid var(--pm-primary);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--pm-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pm-btn-primary:hover {
    background: var(--pm-primary-dark);
    border-color: var(--pm-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-md);
}

.pm-btn-accent {
    background: var(--pm-accent);
    color: var(--pm-dark);
    border: 2px solid var(--pm-accent);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--pm-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pm-btn-accent:hover {
    background: var(--pm-accent-dark);
    border-color: var(--pm-accent-dark);
    color: var(--pm-white);
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-md);
}

.pm-btn-outline {
    background: transparent;
    color: var(--pm-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--pm-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pm-btn-outline:hover {
    background: var(--pm-white);
    color: var(--pm-primary);
    border-color: var(--pm-white);
}

/* === TRUST RIBBON === */
.pm-trust-ribbon {
    background: var(--pm-white);
    border-bottom: 1px solid var(--pm-border);
    padding: 24px 0;
}

.pm-trust-ribbon .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.pm-trust-ribbon .trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pm-trust-ribbon .trust-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--pm-dark);
    margin-bottom: 0;
}

.pm-trust-ribbon .trust-desc {
    font-size: 0.78rem;
    color: var(--pm-text-light);
    margin-bottom: 0;
}

/* === PRODUCT CARDS === */
.pm-product-card {
    background: var(--pm-white);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-radius-lg);
    overflow: hidden;
    transition: var(--pm-transition);
    height: 100%;
}

.pm-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pm-shadow-lg);
    border-color: transparent;
}

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

.pm-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.pm-product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pm-product-card .badge-sale {
    background: var(--pm-danger);
    color: white;
}

.pm-product-card .badge-accent {
    background: var(--pm-accent);
    color: var(--pm-dark);
}

.pm-product-card .badge-new {
    background: var(--pm-primary);
    color: white;
}

.pm-product-card .product-badge+.product-badge {
    left: auto;
    right: 12px;
}

.pm-product-card .product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    transition: bottom 0.3s ease;
}

.pm-product-card:hover .product-actions {
    bottom: 0;
}

.pm-product-card .btn-action {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pm-white);
    border: none;
    color: var(--pm-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--pm-transition);
}

.pm-product-card .btn-action:hover {
    background: var(--pm-primary);
    color: white;
}

.pm-product-card .product-info {
    padding: 16px;
}

.pm-product-card .product-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pm-text-light);
    margin-bottom: 4px;
}

.pm-product-card .product-name {
    font-family: var(--pm-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pm-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pm-product-card .product-name a {
    color: inherit;
    text-decoration: none;
}

.pm-product-card .product-name a:hover {
    color: var(--pm-primary);
}

.pm-product-card .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pm-product-card .product-price .current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pm-primary);
}

.pm-product-card .product-price .current-price.sale {
    color: var(--pm-danger);
}

.pm-product-card .product-price .old-price {
    font-size: 0.88rem;
    color: var(--pm-text-light);
    text-decoration: line-through;
}

.pm-product-card .add-to-cart-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: 2px solid var(--pm-primary);
    border-radius: var(--pm-radius);
    background: transparent;
    color: var(--pm-primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--pm-transition);
}

.pm-product-card .add-to-cart-btn:hover {
    background: var(--pm-primary);
    color: white;
}

.pm-product-card.compact .product-image {
    aspect-ratio: 4/3;
}

.pm-product-card.compact .product-info {
    padding: 12px;
}

.pm-product-card.compact .product-name {
    font-size: 0.88rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.pm-product-card.compact .product-price .current-price {
    font-size: 1rem;
}

/* === CATEGORY CARDS === */
.pm-category-card {
    position: relative;
    border-radius: var(--pm-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
}

.pm-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pm-category-card:hover img {
    transform: scale(1.1);
}

.pm-category-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.pm-category-card .overlay h5 {
    font-family: var(--pm-font-heading);
    color: white;
    margin-bottom: 4px;
}

.pm-category-card .overlay span {
    font-size: 0.82rem;
    opacity: 0.8;
}

/* === STORY / ABOUT SECTION === */
.pm-story-section {
    background: var(--pm-cream);
    padding: 80px 0;
}

.pm-story-section .story-image {
    border-radius: var(--pm-radius-lg);
    overflow: hidden;
    box-shadow: var(--pm-shadow-lg);
}

.pm-story-section .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-story-section .story-content h2 {
    font-size: 2.4rem;
    line-height: 1.3;
}

.pm-story-section .story-accent {
    color: var(--pm-primary);
}

.pm-story-section .story-divider {
    width: 60px;
    height: 3px;
    background: var(--pm-accent);
    border-radius: 2px;
    margin: 20px 0;
}

.pm-story-section .story-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.pm-story-section .stat-number {
    font-family: var(--pm-font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pm-primary);
    line-height: 1;
}

.pm-story-section .stat-label {
    font-size: 0.82rem;
    color: var(--pm-text-light);
    margin-top: 4px;
}

/* === TESTIMONIALS === */
.pm-testimonials {
    padding: 80px 0;
    background: var(--pm-white);
}

.pm-testimonial-card {
    background: var(--pm-body-bg);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--pm-transition);
}

.pm-testimonial-card:hover {
    box-shadow: var(--pm-shadow-md);
    border-color: var(--pm-primary);
}

.pm-testimonial-card .stars {
    color: var(--pm-accent);
    margin-bottom: 16px;
}

.pm-testimonial-card .quote {
    font-style: italic;
    color: var(--pm-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pm-testimonial-card .author {
    font-weight: 700;
    color: var(--pm-dark);
}

.pm-testimonial-card .author-role {
    font-size: 0.82rem;
    color: var(--pm-text-light);
}

/* === NEWSLETTER === */
.pm-newsletter {
    background: var(--pm-primary);
    padding: 60px 0;
    color: white;
}

.pm-newsletter h3 {
    font-family: var(--pm-font-heading);
    color: white;
    font-size: 1.8rem;
}

.pm-newsletter p {
    color: rgba(255, 255, 255, 0.8);
}

.pm-newsletter .form-control {
    height: 50px;
    border-radius: 50px;
    border: none;
    padding: 0 20px;
    font-size: 0.95rem;
}

.pm-newsletter .btn {
    height: 50px;
    border-radius: 50px;
    padding: 0 30px;
    font-weight: 700;
    background: var(--pm-accent);
    color: var(--pm-dark);
    border: none;
    transition: var(--pm-transition);
}

.pm-newsletter .btn:hover {
    background: var(--pm-accent-light);
}

/* === FOOTER === */
.pm-footer {
    background: var(--pm-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
}

.pm-footer h5,
.pm-footer h6 {
    color: var(--pm-white);
    font-family: var(--pm-font-heading);
    margin-bottom: 20px;
}

.pm-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--pm-transition);
}

.pm-footer a:hover {
    color: var(--pm-accent-light);
    padding-left: 4px;
}

.pm-footer .footer-links li {
    margin-bottom: 10px;
}

.pm-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.pm-footer .footer-contact-item i {
    color: var(--pm-accent);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pm-footer .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 8px;
    transition: var(--pm-transition);
    padding: 0;
}

.pm-footer .footer-social a:hover {
    background: var(--pm-accent);
    border-color: var(--pm-accent);
    color: var(--pm-dark);
    padding-left: 0;
}

.pm-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.82rem;
}

.pm-footer-bottom .mandatory-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pm-footer-bottom .mandatory-links li a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.2s ease;
    text-decoration: none;
}

.pm-footer-bottom .mandatory-links li a:hover {
    border-color: var(--pm-accent);
    color: var(--pm-accent-light);
    background-color: rgba(255, 255, 255, 0.05);
}

/* === SECTIONS SPACING === */
.pm-section {
    padding: 70px 0;
}

.pm-section-alt {
    background: var(--pm-white);
}

/* === MOBILE BOTTOM NAV === */
.pm-mobile-nav {
    height: 64px;
    z-index: 1030;
    background: var(--pm-white);
    border-top: 1px solid var(--pm-border);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}

.pm-mobile-nav .nav-item {
    flex: 1;
    text-align: center;
}

.pm-mobile-nav .nav-link {
    color: var(--pm-text-light);
    font-size: 0.68rem;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pm-mobile-nav .nav-link i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.pm-mobile-nav .nav-link.active {
    color: var(--pm-primary);
}

/* === MAIN CONTENT PADDING === */
.pm-main-content {
    padding-top: 20px;
    padding-bottom: 40px;
    min-height: 60vh;
}

/* mobile bottom nav spacing */
@media (max-width: 991.98px) {
    .pm-main-content {
        padding-bottom: 80px;
    }

    .pm-hero-slider .hero-title {
        font-size: 2rem;
    }

    .pm-hero-slider .hero-subtitle {
        font-size: 0.95rem;
    }

    .pm-nav {
        display: none !important;
    }

    .pm-header .brand-area {
        padding: 10px 0;
    }

    .pm-topbar {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .pm-hero-slider .hero-title {
        font-size: 1.6rem;
    }

    body.premium-theme .section-title {
        font-size: 1.6rem;
    }

    .pm-section {
        padding: 40px 0;
    }

    .pm-story-section {
        padding: 50px 0;
    }

    .pm-story-section .story-stats {
        gap: 20px;
    }
}