/* ================================
   AmbitioDev Main CSS
================================ */

:root {
    --ad-primary: #0E304C;
    --ad-secondary: #02557A;
    --ad-accent: #94D351;
    --ad-charcoal: #363934;
    --ad-white: #ffffff;
    --ad-light: #f7f9fc;
    --ad-muted: #6c7782;

    --ad-radius-sm: 10px;
    --ad-radius-md: 16px;
    --ad-radius-lg: 28px;

    --ad-shadow-sm: 0 8px 24px rgba(14, 48, 76, 0.08);
    --ad-shadow-md: 0 18px 45px rgba(14, 48, 76, 0.14);

    --ad-transition: 0.3s ease;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Cairo", Arial, sans-serif;
    background: var(--ad-light);
    color: var(--ad-charcoal);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

body.modal-open {
    overflow: hidden;
}

/* ================================
   Header
================================ */

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: var(--ad-white);
    box-shadow: var(--ad-shadow-sm);
}

.ad-navbar {
    width: 100%;
    background: var(--ad-white);
}

.ad-nav-inner {
    width: min(1400px, 94%);
    margin: 0 auto;
    min-height: 86px;

    display: flex;
    align-items: center;
    gap: 28px;
}

.ad-logo {
    display: inline-flex;
    align-items: center;
    height: 76px;
    flex-shrink: 0;
}

.ad-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.ad-mobile-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: var(--ad-primary);
    color: var(--ad-white);
    font-size: 1.2rem;
    cursor: pointer;
}

.ad-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;

    list-style: none;
    padding: 0;
    margin: 0;

    flex: 1;
}

.ad-nav-menu > li {
    position: relative;
}

.ad-nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 14px 15px;
    border-radius: 12px;

    color: var(--ad-primary);
    font-weight: 700;
    font-size: 0.95rem;

    transition: var(--ad-transition);
}

.ad-nav-menu > li > a:hover,
.ad-nav-menu > li.active > a {
    color: var(--ad-accent);
    background: rgba(148, 211, 81, 0.12);
}

.ad-nav-menu i {
    font-size: 0.75rem;
}

/* ================================
   Dropdowns
================================ */

.ad-dropdown-menu,
.ad-subdropdown-menu {
    list-style: none;
    padding: 10px;
    margin: 0;

    position: absolute;
    top: calc(100% + 12px);
    left: 0;

    min-width: 250px;

    background: var(--ad-white);
    border: 1px solid rgba(14, 48, 76, 0.08);
    border-radius: 18px;
    box-shadow: var(--ad-shadow-md);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: var(--ad-transition);
    z-index: 1001;
}

.ad-dropdown:hover > .ad-dropdown-menu,
.ad-dropdown.is-open > .ad-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ad-dropdown-menu li {
    position: relative;
}

.ad-dropdown-menu a,
.ad-subdropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 12px 14px;
    border-radius: 12px;

    color: var(--ad-primary);
    font-weight: 600;
    font-size: 0.92rem;

    transition: var(--ad-transition);
}

.ad-dropdown-menu a:hover,
.ad-subdropdown-menu a:hover {
    background: rgba(148, 211, 81, 0.12);
    color: var(--ad-accent);
}

.ad-subdropdown-menu {
    top: 0;
    left: calc(100% + 12px);
}

.ad-subdropdown:hover > .ad-subdropdown-menu,
.ad-subdropdown.is-open > .ad-subdropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ================================
   Header Actions
================================ */

.ad-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ad-cart-link {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(14, 48, 76, 0.08);
    color: var(--ad-primary);

    transition: var(--ad-transition);
}

.ad-cart-link:hover {
    background: var(--ad-accent);
    color: var(--ad-primary);
    transform: translateY(-2px);
}

.ad-login-btn,
.ad-register-btn {
    border: none;
    cursor: pointer;

    padding: 11px 18px;
    border-radius: 12px;

    font-weight: 800;
    transition: var(--ad-transition);
}

.ad-login-btn {
    background: transparent;
    color: var(--ad-primary);
}

.ad-login-btn:hover {
    background: rgba(14, 48, 76, 0.08);
}

.ad-register-btn {
    background: var(--ad-accent);
    color: var(--ad-primary);
    box-shadow: 0 10px 24px rgba(148, 211, 81, 0.3);
}

.ad-register-btn:hover {
    transform: translateY(-2px);
}

.ad-user-menu {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--ad-primary);
    font-weight: 700;
}

.ad-user-menu span {
    color: var(--ad-secondary);
}

.ad-user-menu a {
    color: var(--ad-primary);
    font-size: 0.9rem;
}

.ad-user-menu a:hover {
    color: var(--ad-accent);
}

/* ================================
   Mobile Navigation
================================ */

@media (max-width: 980px) {
    .ad-nav-inner {
        flex-wrap: wrap;
        gap: 16px;
        padding: 10px 0 16px;
    }

    .ad-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ad-nav-menu,
    .ad-nav-actions {
        display: none;
        width: 100%;
    }

    .ad-nav-menu.is-open,
    .ad-nav-actions.is-open {
        display: flex;
    }

    .ad-nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .ad-nav-menu > li > a {
        width: 100%;
        justify-content: space-between;
        background: rgba(14, 48, 76, 0.04);
    }

    .ad-nav-actions {
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 10px;
    }

    .ad-dropdown-menu,
    .ad-subdropdown-menu {
        position: static;
        min-width: auto;
        box-shadow: none;
        border-radius: 14px;

        opacity: 1;
        visibility: visible;
        transform: none;

        display: none;
        margin-top: 6px;
        background: rgba(14, 48, 76, 0.04);
    }

    .ad-dropdown.is-open > .ad-dropdown-menu,
    .ad-subdropdown.is-open > .ad-subdropdown-menu {
        display: block;
    }

    .ad-dropdown:hover > .ad-dropdown-menu,
    .ad-subdropdown:hover > .ad-subdropdown-menu {
        display: none;
    }
}
/* ================================
   Footer
================================ */

.site-footer {
    background: var(--ad-primary);
    color: var(--ad-white);
    padding: 70px 0 35px;
}

.footer-container {
    width: min(1400px, 90%);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 40px;
}

.footer-column h3 {
    color: var(--ad-white);
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.75);
    transition: var(--ad-transition);
}

.footer-column a:hover {
    color: var(--ad-accent);
}

.footer-newsletter p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-newsletter input {
    flex: 1;
    min-width: 220px;
    padding: 15px 18px;
    border: none;
    border-radius: 14px;
    outline: none;
}

.footer-newsletter button {
    padding: 15px 22px;
    border: none;
    border-radius: 14px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    font-weight: 800;
    cursor: pointer;
    transition: var(--ad-transition);
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 45px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,0.72);
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ad-white);
    transition: var(--ad-transition);
}

.footer-social a:hover {
    background: var(--ad-accent);
    color: var(--ad-primary);
}

/* ================================
   Auth Modals
================================ */

.ad-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ad-modal.is-open {
    display: flex;
}

.ad-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 48, 76, 0.72);
    backdrop-filter: blur(8px);
}

.ad-modal-box {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--ad-white);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.ad-modal-box h2 {
    margin: 0 0 10px;
    color: var(--ad-primary);
    font-size: 2rem;
}

.ad-modal-box p {
    color: var(--ad-muted);
    line-height: 1.6;
}

.ad-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(14, 48, 76, 0.08);
    color: var(--ad-primary);
    cursor: pointer;
}

.ad-modal-box form {
    margin-top: 25px;
}

.ad-modal-box label {
    display: block;
    margin-bottom: 8px;
    color: var(--ad-primary);
    font-weight: 700;
}

.ad-modal-box input[type="text"],
.ad-modal-box input[type="email"],
.ad-modal-box input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(14,48,76,0.16);
    border-radius: 14px;
    margin-bottom: 18px;
    outline: none;
}

.ad-modal-box input:focus {
    border-color: var(--ad-accent);
    box-shadow: 0 0 0 4px rgba(148,211,81,0.15);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.checkbox-label {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--ad-muted) !important;
    margin:8px 0;
}

.checkbox-label input {
    margin-top: 4px;
}

.form-error {
    display: none;
    color: #d93025 !important;
    font-weight: 700;
    margin-bottom: 15px;
}

.ad-primary-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 16px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    font-weight: 900;
    cursor: pointer;
    transition: var(--ad-transition);
}

.ad-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(148,211,81,0.3);
}

/* ================================
   Responsive Footer & Modals
================================ */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .ad-modal-box {
        padding: 28px 22px;
    }
}
/* ================================
   Global Layout Utilities
================================ */

.ad-container {
    width: min(1400px, 90%);
    margin: 0 auto;
}

.ad-section {
    padding: 100px 0;
}

.ad-section-light {
    background: var(--ad-light);
}

.ad-section-white {
    background: var(--ad-white);
}

.ad-section-dark {
    background: var(--ad-primary);
    color: var(--ad-white);
}

.ad-section-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.ad-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(148,211,81,0.12);
    color: var(--ad-accent);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ad-section-heading h1,
.ad-section-heading h2 {
    margin: 22px 0;
    color: var(--ad-primary);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.05;
}

.ad-section-dark .ad-section-heading h1,
.ad-section-dark .ad-section-heading h2 {
    color: var(--ad-white);
}

.ad-section-heading span {
    color: var(--ad-accent);
}

.ad-section-heading p {
    color: var(--ad-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.ad-section-dark .ad-section-heading p {
    color: rgba(255,255,255,0.78);
}

/* ================================
   Buttons
================================ */

.ad-btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 26px;
    border-radius: 16px;
    border: none;

    font-weight: 900;
    cursor: pointer;
    transition: var(--ad-transition);
}

.ad-btn-primary {
    background: var(--ad-accent);
    color: var(--ad-primary);
    box-shadow: 0 14px 30px rgba(148,211,81,0.28);
}

.ad-btn-primary:hover {
    transform: translateY(-3px);
}

.ad-btn-secondary {
    background: transparent;
    color: var(--ad-primary);
    border: 2px solid var(--ad-primary);
}

.ad-btn-secondary:hover {
    background: var(--ad-primary);
    color: var(--ad-white);
}

/* ================================
   Cards
================================ */

.ad-card {
    background: var(--ad-white);
    border-radius: var(--ad-radius-lg);
    padding: 34px;
    box-shadow: var(--ad-shadow-sm);
    border: 1px solid rgba(14,48,76,0.08);
}

.ad-card-dark {
    background: var(--ad-primary);
    color: var(--ad-white);
}

.ad-card h3 {
    margin-top: 0;
    color: var(--ad-primary);
}

.ad-card-dark h3 {
    color: var(--ad-white);
}

.ad-card p {
    color: var(--ad-muted);
    line-height: 1.7;
}

.ad-card-dark p {
    color: rgba(255,255,255,0.78);
}

/* ================================
   Forms
================================ */

.ad-form input,
.ad-form select,
.ad-form textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(14,48,76,0.16);
    outline: none;
    margin-bottom: 16px;
}

.ad-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ad-form input:focus,
.ad-form select:focus,
.ad-form textarea:focus {
    border-color: var(--ad-accent);
    box-shadow: 0 0 0 4px rgba(148,211,81,0.15);
}

/* ================================
   Simple Page Hero
================================ */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(circle at top right, rgba(148,211,81,0.18), transparent 35%),
        linear-gradient(135deg, var(--ad-primary), var(--ad-secondary));
    color: var(--ad-white);
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    margin: 0 0 24px;
}

.page-hero h1 span {
    color: var(--ad-accent);
}

.page-hero p {
    max-width: 680px;
    font-size: 1.18rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}

/* ================================
   Responsive Utilities
================================ */

@media (max-width: 768px) {
    .ad-section {
        padding: 70px 0;
    }

    .ad-btn-row {
        justify-content: center;
    }

    .page-hero {
        padding: 90px 0;
        text-align: center;
    }

    .page-hero p {
        margin-left: auto;
        margin-right: auto;
    }
}
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.home-service-card {
    transition: var(--ad-transition);
}

.home-service-card i {
    font-size: 2.4rem;
    color: var(--ad-accent);
    margin-bottom: 20px;
}

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ad-shadow-md);
}

@media (max-width: 1000px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }
}
.web-dev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.web-dev-card {
    transition: var(--ad-transition);
}

.web-dev-card i {
    font-size: 2.4rem;
    color: var(--ad-accent);
    margin-bottom: 20px;
}

.web-dev-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ad-shadow-md);
}

@media (max-width: 900px) {
    .web-dev-grid {
        grid-template-columns: 1fr;
    }
}
/* DOMAIN SECTION */
.domains {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
}

.domains-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-tag {
    display: inline-flex;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(148,211,81,.12);
    color: var(--ad-accent);
    font-weight: 900;
    letter-spacing: 2px;
}

.domains-text h2,
.section-heading h2 {
    color: var(--ad-primary);
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1.05;
}

.domains-text h2 span,
.section-heading h2 span {
    color: var(--ad-accent);
}

.domains-text p,
.section-heading p {
    color: var(--ad-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.domain-search {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.domain-search input {
    flex: 1;
    min-width: 260px;
    padding: 17px;
    border-radius: 14px;
    border: 1px solid rgba(14,48,76,.15);
}

.domain-search button,
.btn-primary {
    background: var(--ad-accent);
    color: var(--ad-primary);
    border: none;
    border-radius: 14px;
    padding: 17px 26px;
    font-weight: 900;
}

.btn-secondary {
    border: 2px solid var(--ad-primary);
    color: var(--ad-primary);
    border-radius: 14px;
    padding: 15px 26px;
    font-weight: 900;
}

.trust-bar,
.domains-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-item {
    background: white;
    color: var(--ad-primary);
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: var(--ad-shadow-sm);
}

.domains-image img {
    border-radius: 28px;
    box-shadow: var(--ad-shadow-md);
}

.hosting-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.domain-info-card {
    background: var(--ad-primary);
    color: white;
    padding: 40px;
    border-radius: 24px;
}

.domain-info-card h3 {
    color: white;
}

.domain-info-card p {
    color: rgba(255,255,255,.78);
    line-height: 1.8;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.domain-select select {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
}

.learn-more {
    color: var(--ad-accent);
    font-weight: 900;
}

.dreams-code-reality {
    margin-top: 35px;
    padding: 18px;
    text-align: center;
    border-radius: 18px;
    background: var(--ad-primary);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
}

.typing-word,
.cursor {
    color: var(--ad-accent);
}

/* HOSTING SECTION */
.hosting-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.hosting-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hosting-section .ad-container {
    position: relative;
    z-index: 2;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(2,85,122,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2,85,122,.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
}

.orb-1 {
    width: 420px;
    height: 420px;
    background: var(--ad-accent);
    top: -120px;
    right: -100px;
}

.orb-2 {
    width: 360px;
    height: 360px;
    background: var(--ad-secondary);
    bottom: -120px;
    left: -100px;
}

.floating-code {
    position: absolute;
    right: 5%;
    top: 20%;
    font-size: 12rem;
    color: rgba(148,211,81,.08);
    font-weight: 900;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 55px;
    color: var(--ad-primary);
    font-weight: 800;
}

.switch {
    position: relative;
    width: 68px;
    height: 36px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #d7dde5;
    border-radius: 999px;
}

.slider::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    background: white;
}

.hostingSwiper {
    padding: 30px 10px 80px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

.hosting-card {
    width: 100%;
    max-width: 390px;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(14,48,76,.08);
    border-radius: 30px;
    padding: 38px;
    box-shadow: var(--ad-shadow-md);
    text-align: center;
}

.hosting-card.featured {
    border: 2px solid var(--ad-accent);
}

.popular-badge {
    background: var(--ad-accent);
    color: var(--ad-primary);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 18px;
    display: inline-block;
}

.package-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    border-radius: 22px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.package-header h3 {
    color: var(--ad-primary);
    font-size: 2rem;
    margin: 0;
}

.package-header span {
    color: var(--ad-muted);
}

.price {
    margin: 24px 0;
}

.currency,
.period {
    color: var(--ad-muted);
}

.amount {
    color: var(--ad-primary);
    font-size: 3.8rem;
    font-weight: 900;
}

.storage-ring {
    width: 130px;
    height: 130px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-value {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ring-value span {
    color: var(--ad-primary);
    font-size: 1.6rem;
    font-weight: 900;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.features li {
    margin-bottom: 14px;
    color: var(--ad-muted);
    font-weight: 700;
}

.features i {
    color: var(--ad-accent);
    margin-right: 10px;
}

.hosting-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 16px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    font-weight: 900;
    cursor: pointer;
}

.hosting-comparison {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.comparison-item {
    background: white;
    padding: 24px;
    border-radius: 22px;
    text-align: center;
    box-shadow: var(--ad-shadow-sm);
}

.comparison-item i {
    color: var(--ad-accent);
    font-size: 1.8rem;
}

.upgrade-notice {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--ad-primary), var(--ad-secondary));
    color: white;
    border-radius: 28px;
    padding: 38px;
    display: flex;
    gap: 24px;
}

.notice-icon {
    font-size: 2rem;
    color: var(--ad-accent);
}

.notice-content strong {
    color: var(--ad-accent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .domains-content,
    .hosting-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-bar,
    .domains-buttons,
    .domain-search {
        justify-content: center;
    }

    .hosting-comparison {
        grid-template-columns: 1fr;
    }

    .upgrade-notice {
        flex-direction: column;
        text-align: center;
    }
}
/* ================================
   Premium Section Headings
================================ */

.section-tag,
.ad-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    background: linear-gradient(
        135deg,
        rgba(148,211,81,.22),
        rgba(148,211,81,.08)
    );
    border: 1px solid rgba(148,211,81,.35);
    border-radius: 999px;
    color: #94D351;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(148,211,81,.18);
    margin-bottom: 22px;
}

.domains-text h2,
.section-heading h2,
.ad-section-heading h2 {
    font-size: clamp(3.6rem, 7vw, 6.4rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -3px;
    margin: 20px 0 28px;
    color: #0E304C;
}

.domains-text h2 span,
.section-heading h2 span,
.ad-section-heading h2 span {
    color: #94D351;
    position: relative;
    z-index: 1;
}

.domains-text h2 span::after,
.section-heading h2 span::after,
.ad-section-heading h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 14px;
    background: rgba(148,211,81,.18);
    z-index: -1;
    border-radius: 30px;
}

.domains-text p,
.section-heading p,
.ad-section-heading p {
    max-width: 720px;
    font-size: 1.18rem;
    line-height: 1.9;
    color: #5B6670;
}

/* Mobile heading refinement */
@media (max-width: 768px) {
    .domains-text h2,
    .section-heading h2,
    .ad-section-heading h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
        letter-spacing: -2px;
    }
}
/* Tighter section spacing */
.domains {
    padding: 65px 0;
}

.hosting-section {
    padding: 70px 0;
}

.ad-section {
    padding: 70px 0;
}

.section-heading {
    margin-bottom: 35px;
}

.billing-toggle {
    margin-bottom: 30px;
}

/* Billing toggle buttons */
.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.billing-option {
    border: 1px solid rgba(14,48,76,.12);
    background: white;
    color: var(--ad-primary);
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.billing-option.active {
    background: var(--ad-accent);
    color: var(--ad-primary);
}

.billing-option small {
    display: block;
    font-size: .68rem;
    opacity: .75;
}

/* Shorter hosting cards */
.hosting-card {
    padding: 26px 28px;
    max-width: 350px;
}

.package-icon {
    width: 60px;
    height: 60px;
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.package-header h3 {
    font-size: 1.55rem;
}

.price {
    margin: 14px 0;
}

.amount {
    font-size: 3rem;
}

.storage-ring {
    width: 88px;
    height: 88px;
    margin-bottom: 18px;
}

.ring-value {
    width: 68px;
    height: 68px;
}

.ring-value span {
    font-size: 1.05rem;
}

.ring-value small {
    font-size: .65rem;
}

.features {
    margin-bottom: 18px;
}

.features li {
    margin-bottom: 8px;
    font-size: .9rem;
}

.hosting-btn {
    padding: 13px;
}

.annual-saving {
    color: var(--ad-primary);
    font-weight: 800;
    margin-bottom: 14px;
    font-size: .85rem;
}

.annual-saving small {
    display: block;
    color: var(--ad-accent);
}
.domain-result {
    margin: 18px 0 28px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(148,211,81,.12);
    border: 1px solid rgba(148,211,81,.35);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.domain-result strong {
    display: block;
    color: var(--ad-primary);
}

.domain-result span {
    color: var(--ad-muted);
}

.domain-cart-btn {
    background: var(--ad-accent);
    color: var(--ad-primary);
    border: none;
    padding: 13px 18px;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
}
.package-header {
    margin-bottom: 10px;
}

.package-header h3 {
    margin-bottom: 2px;
}

.price {
    margin: 10px 0;
}

.storage-ring {
    margin: 14px auto;
}

.features li {
    margin: 5px 0;
    padding: 0;
    line-height: 1.3;
}

.features {
    margin: 16px 0;
}

.hosting-btn {
    margin-top: 12px;
}
/* ================================
   Compact Hosting Cards Redesign
================================ */

.hosting-card.compact-card {
    max-width: 340px;
    padding: 24px;
    text-align: left;
    border-radius: 26px;
}

.compact-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.compact-top .package-icon {
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 16px;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.compact-top h3 {
    margin: 0 0 2px;
    font-size: 1.55rem;
    color: var(--ad-primary);
}

.compact-top span {
    color: var(--ad-muted);
    font-size: .9rem;
}

.compact-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin: 10px 0 6px;
}

.compact-price .currency {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--ad-accent);
    margin-bottom: 6px;
}

.compact-price .amount {
    font-size: 3rem;
    line-height: .9;
}

.compact-price .period {
    margin-bottom: 5px;
    color: var(--ad-muted);
    font-size: .9rem;
}

.annual-line {
    margin-bottom: 12px;
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(148,211,81,.12);
}

.annual-line span {
    display: block;
    color: var(--ad-primary);
    font-weight: 900;
    font-size: .86rem;
}

.annual-line small {
    display: block;
    color: var(--ad-accent);
    font-weight: 800;
    font-size: .74rem;
    margin-top: 2px;
}

.compact-storage {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-top: 1px solid rgba(14,48,76,.08);
    border-bottom: 1px solid rgba(14,48,76,.08);
    margin-bottom: 12px;
}

.compact-storage strong {
    color: var(--ad-primary);
    font-size: 1.2rem;
}

.compact-storage span {
    color: var(--ad-muted);
    font-weight: 700;
    font-size: .85rem;
}

.compact-features {
    margin: 0 0 14px;
}

.compact-features li {
    margin-bottom: 7px;
    font-size: .86rem;
    line-height: 1.35;
}

.hosting-card.compact-card .hosting-btn {
    padding: 12px 14px;
    border-radius: 14px;
}

.hosting-card.compact-card .popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    margin: 0;
    font-size: .65rem;
    padding: 6px 10px;
}

.hosting-card.compact-card.featured {
    box-shadow:
        0 0 34px rgba(148,211,81,.25),
        var(--ad-shadow-md);
}

@media (max-width: 768px) {
    .hosting-card.compact-card {
        max-width: 100%;
    }
}
.swiper-slide {
    transition: opacity .4s ease, transform .4s ease;
}

.swiper-slide:not(.swiper-slide-active) {
    opacity: .65;
}

.swiper-slide-active {
    opacity: 1;
}
.web-dev-cta {
    margin-top: 35px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--ad-primary), var(--ad-secondary));
    color: white;
    text-align: center;
}

.web-dev-cta h3 {
    margin: 0 0 8px;
    font-size: 2rem;
}

.web-dev-cta p {
    margin: 0 0 22px;
    color: rgba(255,255,255,.78);
}
/* ================================
   Auth Modal - v2
================================ */

.ad-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ad-auth-modal.is-open {
    display: flex;
}

.ad-auth-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14,48,76,.78);
    backdrop-filter: blur(10px);
}

.ad-auth-box{

    position:relative;

    width:min(560px,100%);

    max-height:88vh;

    overflow-y:auto;

    padding:38px;

    padding-right:28px;

    background:#fff;

    border-radius:30px;

    scrollbar-width:thin;

    scrollbar-color:#94D351 transparent;
}
.ad-auth-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(14,48,76,.08);
    color: var(--ad-primary);
    cursor: pointer;
}

.auth-brand {
    text-align: center;
    margin-bottom: 18px;
}

.auth-brand img {
    height: 70px;
    width: auto;
    margin: 0 auto 12px;
}

.auth-brand h2 {
    margin-top:0;
    color: var(--ad-primary);
    font-size: 2rem;
}

.auth-brand p {
    margin: 0;
    color: var(--ad-muted);
    line-height: 1.6;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(14,48,76,.06);
    margin-bottom: 18px;
}

.auth-tab {
    border: none;
    padding: 13px;
    border-radius: 14px;
    background: transparent;
    color: var(--ad-primary);
    font-weight: 900;
    cursor: pointer;
}

.auth-tab.active {
    background: var(--ad-accent);
    box-shadow: 0 10px 24px rgba(148,211,81,.25);
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

.auth-panel label {
    display: block;
    margin-bottom: 4px;
    color: var(--ad-primary);
    font-weight: 800;
}

.auth-panel input[type="text"],
.auth-panel input[type="email"],
.auth-panel input[type="password"] {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(14,48,76,.16);
    border-radius: 14px;
    outline: none;
}

.auth-panel input:focus {
    border-color: var(--ad-accent);
    box-shadow: 0 0 0 4px rgba(148,211,81,.14);
}

.auth-error {
    color: #d93025;
    font-weight: 800;
    margin: 0 0 14px;
}

@media (max-width: 600px) {
    .ad-auth-box {
        padding: 28px 22px;
    }

    .auth-brand h2 {
        font-size: 1.6rem;
    }
}
.ad-auth-box::-webkit-scrollbar{

    width:10px;

}

.ad-auth-box::-webkit-scrollbar-track{

    background:transparent;

    margin:18px 0;
    height

}

.ad-auth-box{
    position:relative;
    width:min(650px,100%);
    max-height:90vh;

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    box-shadow:0 35px 90px rgba(0,0,0,.28);
}
.ad-auth-content{

    max-height:90vh;

    overflow-y:auto;

    padding-bottom:50px;

    padding-right:22px;

    scrollbar-width:thin;

    scrollbar-color:#94D351 transparent;

}
/* ================================
   Home Page
================================ */

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background:
        radial-gradient(circle at top right, rgba(148,211,81,.22), transparent 34%),
        linear-gradient(135deg, var(--ad-primary), var(--ad-secondary));
    color: white;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
}

.hero-orb-1 {
    width: 420px;
    height: 420px;
    background: var(--ad-accent);
    right: -120px;
    top: -120px;
}

.hero-orb-2 {
    width: 360px;
    height: 360px;
    background: #ffffff;
    left: -140px;
    bottom: -140px;
}

.hero-code {
    position: absolute;
    right: 6%;
    bottom: 8%;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255,255,255,.06);
}

.home-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.home-hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: .9;
    margin: 24px 0;
    letter-spacing: -4px;
}

.home-hero h1 span {
    color: var(--ad-accent);
}

.home-hero p {
    max-width: 680px;
    color: rgba(255,255,255,.82);
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-secondary-btn {
    border-color: white;
    color: white;
}

.hero-secondary-btn:hover {
    background: white;
    color: var(--ad-primary);
}

.home-hero-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    margin-bottom: 28px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--ad-accent);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--ad-accent);
}

.hero-card-body {
    display: grid;
    gap: 18px;
}

.hero-stat {
    background: rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 22px;
}

.hero-stat strong {
    display: block;
    font-size: 2.2rem;
    color: var(--ad-accent);
}

.hero-stat span {
    color: rgba(255,255,255,.78);
}

.hero-code-preview {
    margin-top: 24px;
    padding: 18px;
    background: rgba(0,0,0,.22);
    border-radius: 18px;
    color: white;
}

.hero-code-preview span {
    color: var(--ad-accent);
}

/* Why Section */

.home-why-section {
    background: #f7f9fc;
}

.home-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.home-why-content h2,
.home-cta-card h2 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: .95;
    margin: 22px 0;
    color: var(--ad-primary);
    letter-spacing: -3px;
}

.home-why-content h2 span,
.home-cta-card h2 span {
    color: var(--ad-accent);
}

.home-why-content > p,
.home-cta-card p {
    color: var(--ad-muted);
    font-size: 1.12rem;
    line-height: 1.8;
}

.why-list {
    margin-top: 35px;
    display: grid;
    gap: 22px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-item i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item h3 {
    margin: 0 0 6px;
    color: var(--ad-primary);
}

.why-item p {
    margin: 0;
    color: var(--ad-muted);
    line-height: 1.6;
}

.home-trust-panel {
    display: grid;
    gap: 22px;
}

.trust-panel-card {
    background: white;
    padding: 30px;
    border-radius: 26px;
    box-shadow: var(--ad-shadow-sm);
}

.trust-panel-card span {
    color: var(--ad-accent);
    font-weight: 900;
}

.trust-panel-card h3 {
    color: var(--ad-primary);
    margin: 8px 0;
}

.trust-panel-card p {
    color: var(--ad-muted);
}

/* Stats */

.home-stats-section {
    background: var(--ad-primary);
    padding: 45px 0;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.home-stat-box {
    text-align: center;
    color: white;
}

.home-stat-box strong {
    display: block;
    color: var(--ad-accent);
    font-size: 2.6rem;
}

.home-stat-box span {
    color: rgba(255,255,255,.78);
}

/* CTA */

.home-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 55px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(148,211,81,.18), transparent 35%),
        #ffffff;
    box-shadow: var(--ad-shadow-md);
}

.home-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Responsive */

@media (max-width: 950px) {
    .home-hero-grid,
    .home-why-grid,
    .home-cta-card {
        grid-template-columns: 1fr;
    }

    .home-hero{

    position:relative;

    overflow:hidden;

    padding:140px 0;

    background:
    radial-gradient(circle at top right,
    rgba(148,211,81,.12),
    transparent 35%),

    linear-gradient(
    135deg,
    #031D36 0%,
    #05284B 100%
    );

}

.home-hero .ad-container{

    display:grid;

    grid-template-columns:58% 42%;

    align-items:center;

}
    .home-hero p,
    .home-why-content > p,
    .home-cta-card p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero .ad-btn-row {
        justify-content: center;
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .home-stats-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-card {
        padding: 34px;
    }
}
.ad-auth-content::-webkit-scrollbar{

    width:12px;

}

.ad-auth-content::-webkit-scrollbar-track{

    background:transparent;

    margin:18px 0;

}

.ad-auth-content::-webkit-scrollbar-thumb{

    background:#94D351;

    border-radius:100px;

    border:3px solid white;

}

.ad-auth-box::-webkit-scrollbar-thumb:hover{

    background:#7BC93A;

}
.hero-tag{

    display:inline-block;

    padding:10px 22px;

    border:1px solid rgba(148,211,81,.4);

    border-radius:50px;

    color:#94D351;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:35px;

}

.home-hero h1{

    font-size:5.4rem;

    line-height:.95;

    font-weight:900;

    color:white;

}

.home-hero h1 span{

    color:#94D351;

}

.home-hero p{

    margin:30px 0;

    max-width:620px;

    color:rgba(255,255,255,.82);

    font-size:1.2rem;

    line-height:1.8;

}
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    font-size: .75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-cart-link {
    position: relative;
}

.cart-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: var(--ad-primary);
    color: white;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: var(--ad-shadow-md);
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index: 6000;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}
/* ================================
   Shop Page
================================ */

.shop-hero {
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(148,211,81,.18), transparent 35%),
        linear-gradient(135deg, var(--ad-primary), var(--ad-secondary));
    color: white;
}

.shop-hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    line-height: .95;
    margin: 24px 0;
    letter-spacing: -3px;
}

.shop-hero h1 span {
    color: var(--ad-accent);
}

.shop-hero p {
    color: rgba(255,255,255,.8);
    font-size: 1.15rem;
}

.shop-section {
    padding: 70px 0;
    background: var(--ad-light);
}

.shop-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 34px;
    align-items: start;
}

.shop-filters {
    background: white;
    padding: 24px;
    border-radius: 26px;
    box-shadow: var(--ad-shadow-sm);
    position: sticky;
    top: 20px;
}

.shop-filter-form label {
    display: block;
    color: var(--ad-primary);
    font-weight: 900;
    margin: 0 0 8px;
}

.shop-filter-form input,
.shop-filter-form select {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid rgba(14,48,76,.14);
    outline: none;
}

.clear-filters {
    display: inline-block;
    margin-top: 14px;
    color: var(--ad-muted);
    font-weight: 800;
}

.shop-toolbar {
    margin-bottom: 24px;
}

.shop-toolbar h2 {
    margin: 0;
    color: var(--ad-primary);
    font-size: 2rem;
}

.shop-toolbar p {
    margin: 5px 0 0;
    color: var(--ad-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--ad-shadow-sm);
    transition: var(--ad-transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ad-shadow-md);
}

.product-image {
    height: 210px;
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 22px;
}

.product-category {
    display: inline-block;
    color: var(--ad-accent);
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-content h3 {
    margin: 0 0 10px;
    color: var(--ad-primary);
    font-size: 1.15rem;
    line-height: 1.35;
}

.product-content p {
    color: var(--ad-muted);
    font-size: .9rem;
    line-height: 1.6;
    min-height: 58px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--ad-muted);
    font-size: .82rem;
    margin: 16px 0;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.product-bottom strong {
    color: var(--ad-primary);
    font-size: 1.25rem;
}

.product-cart-btn {
    border: none;
    padding: 11px 14px;
    border-radius: 14px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    font-weight: 900;
    cursor: pointer;
}

.no-products {
    grid-column: 1 / -1;
    background: white;
    padding: 40px;
    border-radius: 26px;
    text-align: center;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: static;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
.shop-landing {
    padding: 70px 0 40px;
    background: var(--ad-light);
}

.shop-category-grid,
.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shop-category-card {
    background: white;
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--ad-shadow-sm);
    transition: var(--ad-transition);
}

.shop-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ad-shadow-md);
}

.shop-category-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.shop-category-card h3 {
    color: var(--ad-primary);
    margin: 0 0 8px;
}

.shop-category-card span {
    color: var(--ad-muted);
    font-weight: 700;
}

.deals-section {
    padding: 40px 0 70px;
    background: var(--ad-light);
}

.shop-section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 30px;
}

.shop-section-title h2 {
    color: var(--ad-primary);
    font-size: 2.4rem;
    margin: 14px 0 0;
}

.view-all-link {
    color: var(--ad-accent);
    font-weight: 900;
}

.discounted-card {
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--ad-accent);
    color: var(--ad-primary);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.old-price {
    color: var(--ad-muted);
    text-decoration: line-through;
    font-size: .9rem;
}

.discounted-price strong {
    color: var(--ad-accent);
    font-size: 1.25rem;
}

@media (max-width: 1100px) {
    .shop-category-grid,
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .shop-category-grid,
    .deals-grid {
        grid-template-columns: 1fr;
    }

    .shop-section-title {
        flex-direction: column;
        align-items: flex-start;
    }
}
.dealsSwiper {
    padding: 10px 4px 55px;
}

.dealsSwiper .swiper-slide {
    height: auto;
}

.product-content h3 {
    min-height: 58px;
}

.product-content p {
    display: none;
}

.deals-pagination .swiper-pagination-bullet-active {
    background: var(--ad-accent);
}
/* ================================
   Cart Page
================================ */

.cart-page {
    padding: 80px 0;
    background: var(--ad-light);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 34px;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr 140px 120px;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: var(--ad-shadow-sm);
}

.cart-item-image {
    width: 110px;
    height: 90px;
    border-radius: 18px;
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-image i {
    color: var(--ad-muted);
    font-size: 2rem;
}

.cart-item-info span {
    color: var(--ad-accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: .75rem;
}

.cart-item-info h3 {
    color: var(--ad-primary);
    margin: 6px 0 8px;
    font-size: 1rem;
    line-height: 1.35;
}

.cart-item-info strong {
    color: var(--ad-primary);
}

.cart-item-actions {
    display: grid;
    gap: 10px;
}

.cart-item-actions input {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(14,48,76,.15);
}

.cart-item-actions button {
    border: none;
    background: rgba(220, 53, 69, .1);
    color: #dc3545;
    padding: 10px;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
}

.cart-line-total {
    color: var(--ad-primary);
    font-weight: 900;
    text-align: right;
}

.cart-summary {
    background: #fff;
    padding: 28px;
    border-radius: 26px;
    box-shadow: var(--ad-shadow-sm);
    position: sticky;
    top: 24px;
}

.cart-summary h2 {
    margin: 0 0 22px;
    color: var(--ad-primary);
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--ad-muted);
}

.summary-total {
    border-top: 1px solid rgba(14,48,76,.12);
    padding-top: 18px;
    color: var(--ad-primary);
    font-size: 1.2rem;
    font-weight: 900;
}

.cart-summary .ad-btn {
    width: 100%;
    margin-top: 12px;
}

.empty-cart {
    background: #fff;
    padding: 60px 30px;
    border-radius: 30px;
    box-shadow: var(--ad-shadow-sm);
    text-align: center;
}

.empty-cart i {
    font-size: 3rem;
    color: var(--ad-accent);
    margin-bottom: 18px;
}

.empty-cart h2 {
    color: var(--ad-primary);
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--ad-muted);
    margin-bottom: 24px;
}

@media (max-width: 1050px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .cart-item {
        grid-template-columns: 90px 1fr;
    }

    .cart-item-actions,
    .cart-line-total {
        grid-column: 1 / -1;
    }

    .cart-line-total {
        text-align: left;
    }
}
.domain-results-list {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.domain-result-card {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    align-items: center;
    background: white;
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--ad-shadow-sm);
    border: 1px solid rgba(14,48,76,.08);
}

.domain-result-card strong {
    color: var(--ad-primary);
}

.domain-result-card span {
    display: block;
    color: var(--ad-muted);
    font-size: .9rem;
}

.domain-result-card.available {
    border-color: rgba(148,211,81,.45);
}

.domain-result-card.taken {
    opacity: .65;
}

.domain-price {
    text-align: right;
}

.domain-price strong {
    color: var(--ad-accent);
}

.domain-price small {
    display: block;
    color: var(--ad-muted);
}

.domain-cart-btn {
    border: none;
    border-radius: 14px;
    padding: 12px 16px;
    background: var(--ad-accent);
    color: var(--ad-primary);
    font-weight: 900;
    cursor: pointer;
}
.legal-hero{
    padding:140px 0 90px;
    text-align:center;
    background:linear-gradient(135deg,#0E304C,#02557A);
    color:#fff;
}

.legal-hero h1{
    font-size:3.5rem;
    margin:20px 0;
}

.legal-hero span{
    color:#94D351;
}

.legal-summary{
    padding:70px 0;
    background:#f8fafc;
}

.summary-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.summary-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.summary-card:hover{
    transform:translateY(-8px);
}

.summary-card i{
    font-size:2.4rem;
    color:#94D351;
    margin-bottom:20px;
}

.legal-content{
    padding:80px 0;
}

.legal-card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    margin-bottom:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.legal-card h2{
    color:#0E304C;
    margin-bottom:20px;
}

.legal-card ul{
    padding-left:22px;
    line-height:2;
}

.legal-contact{
    padding:90px 0;
    text-align:center;
    background:#0E304C;
    color:#fff;
}
/*====================================================
DOMAIN SETUP MODAL
====================================================*/

.domain-choice-modal{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:25px;
}

.domain-choice-modal.is-open{
    display:flex;
}

.domain-choice-backdrop{
    position:absolute;
    inset:0;
    background:rgba(2,85,122,.55);
    backdrop-filter:blur(8px);
}

.domain-choice-box{
    position:relative;
    z-index:2;
    width:min(900px,100%);
    background:#fff;
    border-radius:26px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    animation:popup .25s ease;
}

@keyframes popup{

    from{
        opacity:0;
        transform:translateY(20px) scale(.96);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

.domain-choice-close{

    position:absolute;
    right:20px;
    top:20px;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#eef6fb;

    cursor:pointer;

    transition:.25s;
}

.domain-choice-close:hover{

    background:#02557A;
    color:#fff;

}

.domain-choice-box h2{

    text-align:center;
    color:#0E304C;
    margin-bottom:10px;

}

.domain-choice-box p{

    text-align:center;
    color:#666;
    margin-bottom:35px;

}

.domain-choice-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;

}

.domain-choice-option{

    border:2px solid #e5edf3;
    border-radius:20px;

    background:#fff;

    padding:30px 24px;

    cursor:pointer;

    transition:.25s;

    display:flex;
    flex-direction:column;
    align-items:center;

}

.domain-choice-option:hover{

    border-color:#94D351;
    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.domain-choice-option i{

    font-size:40px;

    color:#02557A;

    margin-bottom:18px;

}

.domain-choice-option strong{

    font-size:20px;

    color:#0E304C;

    margin-bottom:12px;

}

.domain-choice-option span{

    text-align:center;
    color:#777;
    font-size:14px;
    line-height:1.6;

}

.domain-point-label{

    display:block;
    font-weight:600;
    color:#0E304C;
    margin-bottom:10px;

}

.domain-point-input{

    width:100%;

    padding:14px 18px;

    border:2px solid #dce8ef;

    border-radius:12px;

    margin-bottom:20px;

    font-size:16px;

}

.domain-point-input:focus{

    outline:none;

    border-color:#94D351;

}

.domain-later-check{

    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:30px;

    color:#555;

}

.domain-choice-actions{

    display:flex;
    justify-content:flex-end;
    gap:12px;

}

@media(max-width:900px){

    .domain-choice-grid{

        grid-template-columns:1fr;

    }

    .domain-choice-box{

        padding:28px;

    }

}
.cart-item-detail {
    margin: 4px 0;
    color: var(--ad-muted);
    font-size: .85rem;
}