@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Cal Sans';
    src: url('https://cdn.jsdelivr.net/gh/calcom/font@1.1/fonts/CalSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ===================================================
   Getfully Packages — Grid / Card Styles
   Shortcode [getfully_packages]
   =================================================== */

.gfg-section {
    --gfg-foreground: #1a1a1a;
    --gfg-muted-foreground: #8a7d6a;
    --gfg-card: #ffffff;
    --gfg-border: #e5e0d8;
    --gfg-bg-alt: #f5f0ea;
    --gfg-secondary: #b5a67d;
    --gfg-secondary-solid: #c4b68a;
    --gfg-radius-2xl: 1rem;
    --gfg-radius-full: 9999px;

    padding: 1.5rem 0 3rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gfg-foreground);
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
    .gfg-section {
        padding: 2.5rem 0 5rem;
    }
}

.gfg-section *,
.gfg-section *::before,
.gfg-section *::after {
    box-sizing: border-box;
}

/* ── Container ───────────────────────────────────── */

.gfg-container {
    max-width: 1280px;
    margin: 0 auto;

}

/* ── Header ──────────────────────────────────────── */

.gfg-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .gfg-header {
        margin-bottom: 3rem;
    }
}

.gfg-title {
    font-size: 40px;
    font-weight: 400;
    color: var(--gfg-foreground);
    margin: 0;
    line-height: 1.2;
   
}

@media (min-width: 768px) {
    .gfg-title {
        font-size: 2.75rem;
    }
}

/* ── Grid ────────────────────────────────────────── */

.gfg-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .gfg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .gfg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Card ────────────────────────────────────────── */

.gfg-card-wrap {
    display: flex;
}

.gfg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--gfg-card);
    border-radius: var(--gfg-radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(229, 224, 216, 0.4);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.gfg-card:hover {
    border-color: rgba(181, 166, 125, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
}

/* ── Badge ───────────────────────────────────────── */

.gfg-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
    background: var(--gfg-foreground);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.625rem;
    border-radius: var(--gfg-radius-full);
    line-height: 1.4;
}

/* ── Carousel ────────────────────────────────────── */

.gfg-carousel {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gfg-carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s;
    opacity: 0;
}

.gfg-carousel-img.active {
    opacity: 1;
}

.gfg-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 10;
    padding: 0;
    color: var(--gfg-foreground);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.gfg-carousel-nav:focus,
.gfg-carousel-nav:focus-visible {
    outline: none;
    box-shadow: none;
}

@media (min-width: 1024px) {
    .gfg-carousel-nav {
        opacity: 0;
    }

    .gfg-card:hover .gfg-carousel-nav {
        opacity: 1;
    }
}

.gfg-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.9);
}

.gfg-prev { left: 0.5rem; }
.gfg-next { right: 0.5rem; }

.gfg-carousel-nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── Dots ────────────────────────────────────────── */

.gfg-dots {
    position: absolute;
    bottom: 0.625rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.375rem;
    z-index: 10;
}

.gfg-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.gfg-dot.active {
    background: #fff;
    width: 1rem;
    border-radius: 0.375rem;
}

/* ── Card body ───────────────────────────────────── */

.gfg-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 768px) {
    .gfg-card-body {
        padding: 1.25rem 1.5rem 1.5rem;
    }
}

.gfg-card-name {
    font-family: 'Cal Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0px !important;
    font-size: 20px;
    color: var(--gfg-foreground);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.gfg-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.gfg-card-price {
    font-family: 'Cal Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    font-size: 1.5rem;
    color: var(--gfg-foreground);
}

.gfg-card-currency {
    font-size: 0.875rem;
    color: var(--gfg-muted-foreground);
}

.gfg-card-starting {
    font-size: 0.75rem;
    color: var(--gfg-muted-foreground);
    margin-left: 0.25rem;
}

.gfg-card-desc {
    color: var(--gfg-muted-foreground);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}

/* ── CTA button ──────────────────────────────────── */

.gfg-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 0.75rem 2rem;
    background: #E8DBCA;
    color: var(--gfg-foreground);
    font-family: 'Cal Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    border-radius: var(--gfg-radius-full);
    text-decoration: none;
    transition: background 0.3s;
}

.gfg-card:hover .gfg-card-btn {
    background: #d4c8b3;
}

.gfg-card-btn svg {
    flex-shrink: 0;
}
