/**
 * Luxury Registration Form Styles
 * Premium, animated, single-page registration experience
 */

/* ===================================
   ROOT VARIABLES - Luxury Theme
   =================================== */
:root {
    --ggc-primary: #D4AF37;
    --ggc-primary-dark: #B8941F;
    --ggc-primary-light: #F4E4AD;
    --ggc-secondary: #0A0A0A;
    --ggc-secondary-light: #1A1A1A;
    --ggc-bg-dark: #000000;
    --ggc-bg-card: #0D0D0D;
    --ggc-text-primary: #FFFFFF;
    --ggc-text-secondary: #A0A0A0;
    --ggc-border: rgba(212, 175, 55, 0.2);
    --ggc-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    --ggc-shadow-hover: 0 15px 50px rgba(212, 175, 55, 0.2);
    --ggc-success: #4CAF50;
    --ggc-error: #F44336;
    --ggc-radius: 12px;
    --ggc-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   MAIN CONTAINER
   =================================== */
.greengochat-luxury-registration {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    min-height: 600px;
    background: var(--ggc-bg-dark);
    overflow: hidden;
}

/* Background Particles Canvas */
.ggc-particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* ===================================
   PROGRESS BAR & STEPS
   =================================== */
.ggc-progress-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.ggc-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--ggc-secondary-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.ggc-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--ggc-primary-dark), var(--ggc-primary), var(--ggc-primary-light));
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ggc-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ggc-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ggc-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.5;
    transition: var(--ggc-transition);
}

.ggc-step.active,
.ggc-step.completed {
    opacity: 1;
}

.ggc-step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ggc-secondary-light);
    border: 2px solid var(--ggc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--ggc-transition);
    margin-bottom: 15px;
}

.ggc-step.active .ggc-step-circle {
    background: linear-gradient(135deg, var(--ggc-primary-dark), var(--ggc-primary));
    border-color: var(--ggc-primary);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    animation: pulse 2s infinite;
}

.ggc-step.completed .ggc-step-circle {
    background: var(--ggc-primary);
    border-color: var(--ggc-primary);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.8); }
}

.ggc-step-number {
    font-size: 24px;
    font-weight: 600;
    color: var(--ggc-text-primary);
    transition: var(--ggc-transition);
}

.ggc-step.completed .ggc-step-number {
    display: none;
}

.ggc-step-check {
    width: 30px;
    height: 30px;
    stroke-width: 3;
    display: none;
    color: var(--ggc-secondary);
}

.ggc-step.completed .ggc-step-check {
    display: block;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(-45deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); }
}

.ggc-step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ggc-text-secondary);
    text-align: center;
    transition: var(--ggc-transition);
}

.ggc-step.active .ggc-step-label,
.ggc-step.completed .ggc-step-label {
    color: var(--ggc-primary);
}

/* ===================================
   FORM CONTAINER
   =================================== */
.ggc-form-container {
    position: relative;
    z-index: 10;
    background: var(--ggc-bg-card);
    border: 1px solid var(--ggc-border);
    border-radius: var(--ggc-radius);
    padding: 60px;
    box-shadow: var(--ggc-shadow);
    backdrop-filter: blur(10px);
}

/* ===================================
   FORM STEPS
   =================================== */
.ggc-form-step {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.ggc-form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   FORM HEADER
   =================================== */
.ggc-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.ggc-form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--ggc-text-primary);
    margin: 0 0 15px;
    background: linear-gradient(135deg, var(--ggc-text-primary), var(--ggc-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ggc-form-subtitle {
    font-size: 16px;
    color: var(--ggc-text-secondary);
    margin: 0;
    letter-spacing: 0.5px;
}

/* ===================================
   FORM ELEMENTS
   =================================== */
.ggc-luxury-form {
    max-width: 600px;
    margin: 0 auto;
}

.ggc-form-group {
    margin-bottom: 30px;
    position: relative;
}

.ggc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ggc-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ggc-text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.ggc-required {
    color: var(--ggc-primary);
    margin-left: 4px;
}

.ggc-input-wrapper {
    position: relative;
}

.ggc-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: var(--ggc-text-primary);
    background: var(--ggc-secondary-light);
    border: 1px solid var(--ggc-border);
    border-radius: var(--ggc-radius);
    outline: none;
    transition: var(--ggc-transition);
    font-family: inherit;
}

.ggc-input:focus {
    background: var(--ggc-secondary);
    border-color: var(--ggc-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.ggc-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--ggc-primary-dark), var(--ggc-primary), var(--ggc-primary-light));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.ggc-input:focus + .ggc-input-border {
    width: 100%;
}

.ggc-error {
    display: block;
    font-size: 13px;
    color: var(--ggc-error);
    margin-top: 8px;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--ggc-transition);
}

.ggc-error:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   BUTTONS
   =================================== */
.ggc-btn {
    position: relative;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--ggc-radius);
    cursor: pointer;
    overflow: hidden;
    transition: var(--ggc-transition);
    font-family: inherit;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.ggc-btn-primary {
    background: linear-gradient(135deg, var(--ggc-primary-dark), var(--ggc-primary));
    color: var(--ggc-secondary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.ggc-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.ggc-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

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

.ggc-btn-secondary:hover:not(:disabled) {
    border-color: var(--ggc-primary);
    color: var(--ggc-primary);
}

.ggc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ggc-btn-text {
    position: relative;
    z-index: 2;
}

.ggc-btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.ggc-btn:hover .ggc-btn-shimmer {
    left: 100%;
}

.ggc-form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

/* ===================================
   TIER SELECTION
   =================================== */
.ggc-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ggc-tier-card {
    position: relative;
    background: var(--ggc-secondary-light);
    border: 2px solid var(--ggc-border);
    border-radius: var(--ggc-radius);
    padding: 40px 30px;
    cursor: pointer;
    transition: var(--ggc-transition);
    overflow: hidden;
}

.ggc-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ggc-primary-dark), var(--ggc-primary), var(--ggc-primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ggc-tier-card:hover::before,
.ggc-tier-card.selected::before {
    transform: scaleX(1);
}

.ggc-tier-card:hover {
    border-color: var(--ggc-primary);
    transform: translateY(-5px);
    box-shadow: var(--ggc-shadow-hover);
}

.ggc-tier-card.selected {
    border-color: var(--ggc-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    box-shadow: var(--ggc-shadow-hover);
}

.ggc-tier-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--ggc-primary);
    color: var(--ggc-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ggc-tier-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--ggc-text-primary);
    margin: 0 0 10px;
}

.ggc-tier-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--ggc-primary);
    margin: 0 0 5px;
}

.ggc-tier-original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin: 5px 0 8px 0;
    opacity: 0.8;
    font-style: italic;
}

.ggc-tier-period {
    font-size: 14px;
    color: var(--ggc-text-secondary);
    margin-bottom: 25px;
}

.ggc-tier-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.ggc-tier-features li {
    font-size: 14px;
    color: var(--ggc-text-secondary);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.ggc-tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ggc-primary);
    font-weight: 700;
    font-size: 16px;
}

.ggc-tier-select-btn {
    width: 100%;
    margin-top: 20px;
}

/* ===================================
   CART & PAYMENT
   =================================== */
.ggc-cart-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ggc-order-summary {
    background: var(--ggc-secondary-light);
    border: 1px solid var(--ggc-border);
    border-radius: var(--ggc-radius);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.ggc-summary-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ggc-text-primary);
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ggc-border);
}

.ggc-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
}

.ggc-summary-label {
    color: var(--ggc-text-secondary);
}

.ggc-summary-value {
    color: var(--ggc-text-primary);
    font-weight: 600;
}

.ggc-summary-divider {
    height: 1px;
    background: var(--ggc-border);
    margin: 15px 0;
}

.ggc-summary-total {
    font-size: 20px;
    padding-top: 15px;
}

.ggc-summary-total .ggc-summary-value {
    color: var(--ggc-primary);
    font-size: 24px;
}

.ggc-payment-form {
    background: var(--ggc-secondary-light);
    border: 1px solid var(--ggc-border);
    border-radius: var(--ggc-radius);
    padding: 30px;
}

.ggc-payment-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ggc-text-primary);
    margin: 0 0 25px;
}

/* ===================================
   SUCCESS ANIMATION
   =================================== */
.ggc-success-animation {
    text-align: center;
    margin-bottom: 40px;
}

.ggc-success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.ggc-success-circle {
    stroke: var(--ggc-success);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.ggc-success-check {
    stroke: var(--ggc-success);
    stroke-width: 2;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* ===================================
   LOADING OVERLAY
   =================================== */
.ggc-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.ggc-loading-overlay.active {
    display: flex;
}

.ggc-loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.ggc-spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--ggc-primary);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.ggc-spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.ggc-spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
}

.ggc-spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ggc-loading-text {
    margin-top: 30px;
    font-size: 16px;
    color: var(--ggc-primary);
    letter-spacing: 2px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .ggc-form-container {
        padding: 40px 30px;
    }

    .ggc-form-title {
        font-size: 28px;
    }

    .ggc-progress-steps {
        flex-direction: column;
        gap: 20px;
    }

    .ggc-step-circle {
        width: 50px;
        height: 50px;
    }

    .ggc-step-number {
        font-size: 20px;
    }

    .ggc-tiers-grid {
        grid-template-columns: 1fr;
    }

    .ggc-cart-layout {
        grid-template-columns: 1fr;
    }

    .ggc-order-summary {
        position: static;
    }

    .ggc-form-row {
        grid-template-columns: 1fr;
    }

    .ggc-form-actions {
        flex-direction: column;
    }

    .ggc-btn {
        width: 100%;
    }
}

/* ===================================
   CART LOADING STATE
   =================================== */
.ggc-cart-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--ggc-text-secondary);
    font-size: 16px;
    background: var(--ggc-bg-card);
    border-radius: var(--ggc-radius);
    border: 1px solid var(--ggc-border);
}

.ggc-cart-loading p {
    margin: 0;
    color: var(--ggc-primary);
    font-weight: 500;
}

/* WooCommerce cart wrapper styling */
.ggc-woocommerce-cart-wrapper {
    margin-top: 20px;
    min-height: 300px;
}

/* ===================================
   PRIVACY CHECKBOX & MODAL
   =================================== */
.ggc-privacy-group {
    margin-top: 30px;
    margin-bottom: 30px;
}

.ggc-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 15px;
    user-select: none;
}

.ggc-checkbox {
    width: 22px;
    height: 22px;
    min-width: 22px;
    cursor: pointer;
    accent-color: var(--ggc-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.ggc-checkbox-text {
    color: var(--ggc-text-primary);
    font-size: 15px;
    line-height: 1.8;
    flex: 1;
}

.ggc-privacy-link {
    color: var(--ggc-primary);
    text-decoration: underline;
    transition: var(--ggc-transition);
    font-weight: 600;
    display: inline;
    cursor: pointer;
}

.ggc-privacy-link:hover {
    color: var(--ggc-primary-light);
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.ggc-privacy-link:active {
    color: var(--ggc-primary-dark);
}

/* Modal Styles */
.ggc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ggc-modal.active {
    display: flex;
}

.ggc-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.ggc-modal-content {
    position: relative;
    background: var(--ggc-bg-card);
    border-radius: var(--ggc-radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--ggc-shadow-hover);
    border: 1px solid var(--ggc-border);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ggc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-bottom: 1px solid var(--ggc-border);
}

.ggc-modal-header h2 {
    margin: 0;
    color: var(--ggc-primary);
    font-size: 24px;
    font-weight: 600;
}

.ggc-modal-close {
    background: none;
    border: none;
    color: var(--ggc-text-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ggc-transition);
}

.ggc-modal-close:hover {
    color: var(--ggc-primary);
    transform: rotate(90deg);
}

.ggc-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    color: var(--ggc-text-secondary);
    line-height: 1.8;
}

.ggc-modal-body h3 {
    color: var(--ggc-text-primary);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
}

.ggc-modal-body p {
    margin-bottom: 15px;
}

.ggc-modal-body ul,
.ggc-modal-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.ggc-modal-body li {
    margin-bottom: 10px;
}

.ggc-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--ggc-border);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

body.ggc-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .ggc-modal-content {
        max-height: 95vh;
    }

    .ggc-modal-header,
    .ggc-modal-body,
    .ggc-modal-footer {
        padding: 20px;
    }

    .ggc-modal-header h2 {
        font-size: 20px;
    }

    /* Hide step labels on small screens */
    .ggc-step-label {
        display: none;
    }

    /* Reduce step circle size on mobile */
    .ggc-step-circle {
        width: 50px;
        height: 50px;
    }

    .ggc-step-number {
        font-size: 20px;
    }

    .ggc-step-check {
        width: 24px;
        height: 24px;
    }
}

/* ===================================
   INTERNATIONAL PHONE INPUT STYLING
   =================================== */
.ggc-phone-wrapper .iti {
    width: 100%;
    display: block;
}

.ggc-phone-wrapper .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 16px 0 16px 20px;
    z-index: 2;
}

.ggc-phone-wrapper .iti__selected-flag {
    background: transparent;
    border: none;
    padding: 0 8px 0 0;
    height: 100%;
    display: flex;
    align-items: center;
    transition: var(--ggc-transition);
}

.ggc-phone-wrapper .iti__selected-flag:hover {
    background: rgba(212, 175, 55, 0.05);
}

.ggc-phone-wrapper .iti__arrow {
    border-top-color: var(--ggc-primary);
    margin-left: 6px;
}

.ggc-phone-wrapper .iti__selected-flag:hover .iti__arrow,
.ggc-phone-wrapper .iti--open .iti__arrow {
    border-top-color: var(--ggc-primary-light);
}

.ggc-phone-wrapper input.ggc-phone-input {
    padding-left: 80px !important;
}

/* Country dropdown */
.iti__country-list {
    background: var(--ggc-secondary-light);
    border: 1px solid var(--ggc-border);
    border-radius: var(--ggc-radius);
    box-shadow: var(--ggc-shadow);
    max-height: 200px;
    overflow-y: auto;
}

.iti__country {
    padding: 8px 12px;
    color: var(--ggc-text-primary);
    transition: var(--ggc-transition);
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: rgba(212, 175, 55, 0.1);
}

.iti__country-name,
.iti__dial-code {
    color: var(--ggc-text-primary);
}

.iti__country.iti__highlight .iti__country-name,
.iti__country.iti__highlight .iti__dial-code {
    color: var(--ggc-primary-light);
}

.iti__divider {
    border-bottom: 1px solid var(--ggc-border);
}

/* Dial code in selected flag */
.iti__selected-dial-code {
    color: var(--ggc-primary);
    font-weight: 600;
    margin-left: 4px;
}

/* Scrollbar for country list */
.iti__country-list::-webkit-scrollbar {
    width: 8px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: var(--ggc-secondary);
    border-radius: 4px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: var(--ggc-primary-dark);
    border-radius: 4px;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: var(--ggc-primary);
}
