@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
 :root {
      --gf-bg: #eef8fa;
      --gf-purple: #7137c7;
      --gf-pink: #ef2d7c;
      --gf-ink: #111111;
      --gf-muted: #6c6c6c;
      --gf-radius: 22px;
    }

    * { box-sizing: border-box; }
    a{text-decoration: none}

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--gf-ink);
      background: #e8f4f6;
      font-family: "Raleway", sans-serif;
      overflow-x: hidden;
    }

/*app drawer mobile view */

/* Mobile Bottom App Navigation */

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 767px) {

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;

        height: 68px;

        display: flex;
        align-items: center;
        justify-content: space-around;

        background: rgba(255, 255, 255, .96);

        border-top: 1px solid #e8e8e8;

        box-shadow: 0 -8px 30px rgba(0, 0, 0, .08);

        z-index: 9999;

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-nav-item {
        position: relative;

        flex: 1;

        height: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 3px;

        color: #222;
        text-decoration: none;

        font-size: 10px;
        font-weight: 600;

        transition: .2s ease;
    }

    .mobile-nav-item i {
        font-size: 21px;
        line-height: 1;
    }

    .mobile-nav-item span {
        font-size: 10px;
    }

    .mobile-nav-item:hover,
    .mobile-nav-item:active {
        color: #7137c7;
    }

    /* Cart / wishlist counter */

    .mobile-nav-item small {
        position: absolute;

        top: 10px;
        margin-left: 28px;

        min-width: 16px;
        height: 16px;

        padding: 0 4px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: #ff4b63;
        color: #fff;

        font-size: 9px;
        font-weight: 700;
    }

    /* Cart highlight */

    .mobile-cart i {
        color: #7137c7;
    }

    /* Prevent content being hidden behind bottom bar */

    body {
        padding-bottom: 68px;
    }
}


    /* ---------- Header ---------- */
    .gf-header {
      background: var(--gf-bg);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(0,0,0,.035);
      transition: box-shadow .28s ease, background .28s ease;
    }
    .gf-padd-8{padding: 0 10rem !important}
    /* Compact sticky state after the user has scrolled */
    .gf-header.is-scrolled {
      background: rgba(238,248,250,.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 8px 28px rgba(25,25,25,.10);
    }

    .gf-navbar {
      min-height: 136px;
      display: flex;
      align-items: center;
      transition: min-height .28s ease;
    }

    .gf-header.is-scrolled .gf-navbar {
      min-height: 82px;
    }

    .gf-logo {
      color: #111;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      white-space: nowrap;
      height: auto;
      overflow: hidden;
    }
    .gf-logo img{ margin: 0 auto; width:60%; height: auto; display: block;}

    .gf-logo-mark {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      font-size: 44px;
      line-height: 1;
      transform: translateY(-1px);
    }

    .gf-logo-word {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(27px, 2.35vw, 39px);
      letter-spacing: .015em;
      transition: font-size .28s ease;
    }

    .gf-header.is-scrolled .gf-logo-word {
      font-size: clamp(23px, 1.9vw, 31px);
    }

    .gf-header.is-scrolled .gf-logo-mark {
      transform: scale(.86);
      transition: transform .28s ease;
    }

    .gf-header.is-scrolled .gf-pill {
      min-height: 43px;
      padding-inline: 19px;
    }

    .gf-header.is-scrolled .gf-select {
      min-height: 34px;
    }

    .gf-logo-reg {
      font-family: Arial, sans-serif;
      font-size: 12px;
      vertical-align: top;
      margin-left: 2px;
    }
    .gf-actions-right {
      display: flex;
      align-items: center;
      gap: 0px;
    }
    .gf-actions-left {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .gf-pill {
      border: 0;
      border-radius: 999px;
      min-height: 60px;
      padding: 0 30px;
      font-weight: 700;
      color: #fff;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .gf-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 9px 22px rgba(0,0,0,.12);
    }

    .gf-pill-purple { background: var(--gf-purple); }
    .gf-pill-pink { background: var(--gf-pink); }

    .gf-select {
      min-height: 40px;
      border: 1px solid #aeb8ba;
      border-radius: 999px;
      background: transparent;
      padding: 0 20px;
      font-size: 14px;
      outline: 0;
      margin-right: 20px;
    }

    .gf-icon-btn {
      width: 40px;
      height: 40px;
      border: 0;
      background: transparent;
      display: grid;
      place-items: center;
      font-size: 23px;
      color: #111;
      transition: transform .2s ease;
    }

    .gf-icon-btn:hover { transform: translateY(-2px) scale(1.05); }

    .gf-cart {
      position: relative;
    }

    .gf-cart-count {
      position: absolute;
      top: -1px;
      right: -2px;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background: #ff5a5f;
      color: #fff;
      font: 700 10px/17px Arial, sans-serif;
      text-align: center;
    }
    .gf-font-size-20{font-size: 20px}

    /* ---------- banner slider ---------- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero .carousel-item {
    height: 812px;
    position: relative;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(40, 28, 20, .58),
        rgba(40, 28, 20, .18) 50%,
        transparent
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content small {
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 700;
}

.hero-content h1 {
    font-family: Georgia, serif;
    font-size: clamp(45px, 5vw, 75px);
    font-weight: 400;
    line-height: 1;
    margin: 18px 0;
}

.hero-content h1 em {
    font-style: italic;
}

.hero-content p {
    max-width: 470px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-arrow {
    width: 80px;
}

.hero-arrow span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.85);
    color: #111;
    font-size: 18px;
    transition: .25s;
}

.hero-arrow:hover span {
    background: #111;
    color: #fff;
    transform: scale(1.08);
}

@media (max-width: 767px) {

    .hero .carousel-item {
        height: 620px;
    }

    .hero-img {
        object-position: 65% center;
    }

    .hero .carousel-item::after {
        background: linear-gradient(
            180deg,
            transparent 20%,
            rgba(30,20,15,.75)
        );
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 75px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-arrow {
        width: 50px;
    }

    .hero-arrow span {
        width: 38px;
        height: 38px;
    }
}

     /* ---------- banner slider close---------- */
     .section-heading {
    padding: 26px 20px 30px;
    background: #eaf5f7;
}

.section-heading h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.section-heading h2 span {
    color: #7137c7;
}

.section-heading p {
    margin: 14px 0 0;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 2.1px;
    line-height: 1.3;
}
   
    /* Decorative soft light sweep */

    .gf-hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      min-height: inherit;
      display: flex;
      align-items: center;
      padding: 70px 0;
    }

    .gf-hero-copy {
      max-width: 520px;
      opacity: 0;
      transform: translateY(28px);
      animation: revealUp .9s .15s cubic-bezier(.2,.8,.2,1) forwards;
    }

    .gf-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 15px;
      border-radius: 999px;
      background: rgba(255,255,255,.75);
      backdrop-filter: blur(10px);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .gf-eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gf-pink);
      box-shadow: 0 0 0 5px rgba(239,45,124,.12);
    }

    .gf-hero h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 5vw, 76px);
      line-height: .98;
      font-weight: 500;
      margin: 0 0 20px;
      text-shadow: 0 2px 25px rgba(255,255,255,.35);
    }

    .gf-hero p {
      max-width: 440px;
      font-size: 17px;
      line-height: 1.65;
      margin-bottom: 28px;
      color: #332b27;
    }

    .gf-hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border: 0;
      color: #fff;
      background: #111;
      border-radius: 999px;
      padding: 14px 24px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 12px 28px rgba(0,0,0,.18);
      transition: all .3s ease;
    }

    .gf-hero-btn:hover {
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 18px 35px rgba(0,0,0,.22);
    }

    .gf-hero-btn i { transition: transform .3s ease; }
    .gf-hero-btn:hover i { transform: translateX(5px); }

    /* ---------- Floating accents ---------- */
    .gf-floating-note {
      position: absolute;
      right: 4%;
      bottom: 7%;
      max-width: 230px;
      padding: 15px 18px;
      background: rgba(255,255,255,.73);
      border: 1px solid rgba(255,255,255,.6);
      backdrop-filter: blur(14px);
      border-radius: 18px;
      box-shadow: 0 15px 35px rgba(60,30,15,.12);
      animation: bob 5s ease-in-out infinite;
    }

    .gf-floating-note strong {
      display: block;
      font-family: Georgia, serif;
      font-size: 17px;
      margin-bottom: 2px;
    }

    .gf-floating-note span {
      font-size: 12px;
      color: #625a54;
    }

    /* ---------- Intro section ---------- */
    .gf-intro {
      padding: 78px 0;
      background: #fff;
    }

    .gf-section-kicker {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-weight: 800;
      color: #7a4bc2;
      margin-bottom: 13px;
    }

    .gf-section-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(34px, 4vw, 58px);
      font-weight: 500;
      line-height: 1.04;
      margin: 0;
    }

    .gf-feature {
      height: 100%;
      padding: 28px;
      border-radius: var(--gf-radius);
      background: #f7f2ed;
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .gf-feature:hover {
      transform: translateY(-7px);
      box-shadow: 0 18px 40px rgba(45,30,20,.09);
    }

    .gf-feature i {
      display: inline-grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      font-size: 22px;
      margin-bottom: 18px;
    }

    .gf-feature h3 {
      font-family: Georgia, serif;
      font-size: 23px;
      margin-bottom: 8px;
    }

    .gf-feature p {
      margin: 0;
      color: #716963;
      line-height: 1.65;
      font-size: 14px;
    }


    /* ---------- Header dropdown / mega menu ---------- */
    .gf-catalog-wrap, .gf-user-wrap { position: relative; }

    .gf-mega-menu {
      position: absolute;
      top: calc(100% + 16px);
      left: 0;
      width: min(1040px, 82vw);
      background: rgba(255,255,255,.98);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 22px;
      box-shadow: 0 25px 70px rgba(27,20,35,.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
      overflow: hidden;
    }

    .gf-catalog-wrap:hover .gf-mega-menu,
    .gf-catalog-wrap:focus-within .gf-mega-menu,
    .gf-catalog-wrap.is-open .gf-mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .gf-mega-inner { padding: 28px 30px 18px; }
    .gf-mega-heading {
      display:flex; justify-content:space-between; gap:20px; align-items:flex-end;
      padding-bottom:22px; margin-bottom:24px; border-bottom:1px solid #eee;
    }
    .gf-menu-kicker {
      display:block; font-size:10px; text-transform:uppercase; letter-spacing:.17em;
      font-weight:800; color:#8754cb; margin-bottom:5px;
    }
    .gf-mega-heading h3, .gf-cart-head h3 {
      font: 500 27px Georgia, "Times New Roman", serif; margin:0;
    }
    .gf-mega-heading > a {
      color:#111; font-size:13px; font-weight:700; text-decoration:none;
    }
    .gf-menu-group { display:flex; flex-direction:column; gap:8px; }
    .gf-menu-group a {
      color:#625c58; text-decoration:none; font-size:13px; line-height:1.35;
      transition: color .18s ease, transform .18s ease;
    }
    .gf-menu-group a:hover { color:#7137c7; transform:translateX(3px); }
    .gf-menu-group .gf-menu-title {
      color:#111; font:700 15px Georgia, "Times New Roman", serif; margin-bottom:5px;
    }
    .gf-menu-group .gf-menu-title i { color:#7137c7; margin-left:4px; }
    .gf-mega-bottom {
      display:flex; align-items:center; gap:22px; margin-top:27px; padding-top:16px;
      border-top:1px solid #eee;
    }
    .gf-mega-bottom a { color:#111; font-size:12px; text-decoration:none; font-weight:700; }
    .gf-mega-bottom i { color:#7137c7; margin-right:5px; }

    .gf-user-dropdown {
      position:absolute; top:calc(100% + 8px); right:-8px; width:225px; background:#fff;
      border:1px solid #eee; border-radius:16px; box-shadow:0 18px 50px rgba(0,0,0,.13);
      padding:9px; opacity:0; visibility:hidden; transform:translateY(7px);
      transition:.2s ease; z-index:1100;
    }
    .gf-user-wrap.is-open .gf-user-dropdown {
      opacity:1; visibility:visible; transform:translateY(0);
    }
    .gf-user-title { font-size:12px; font-weight:800; padding:10px 11px 8px; color:#777; }
    .gf-user-dropdown a {
      display:flex; align-items:center; gap:10px; padding:11px; border-radius:10px;
      color:#222; text-decoration:none; font-size:13px;
    }
    .gf-user-dropdown a:hover { background:#f7f3fb; color:#7137c7; }

    /* ---------- Search top panel ---------- */
    .gf-search-panel {
      position:fixed; left:0; right:0; top:0; z-index:2000; background:rgba(255,255,255,.98);
      box-shadow:0 20px 60px rgba(0,0,0,.14); transform:translateY(-110%);
      transition:transform .38s cubic-bezier(.2,.8,.2,1);
      padding:28px 0 25px;
    }
    .gf-search-panel.is-open { transform:translateY(0); }
    .gf-search-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:15px; }
    .gf-search-label { font:500 23px Georgia, serif; }
    .gf-search-close {
      width:40px; height:40px; border:0; border-radius:50%; background:#f4f4f4;
      display:grid; place-items:center; color:#111; transition:.2s ease;
    }
    .gf-search-close:hover { background:#eee; transform:rotate(90deg); }
    .gf-search-form {
      height:64px; border:1px solid #d9d9d9; border-radius:17px; display:flex; align-items:center;
      padding-left:20px; overflow:hidden; background:#fff;
    }
    .gf-search-form > i { font-size:22px; color:#777; }
    .gf-search-form input {
      flex:1; border:0; outline:0; padding:0 16px; height:100%; font-size:16px;
    }
    .gf-search-form button {
      height:100%; padding:0 28px; border:0; background:#111; color:#fff; font-weight:700;
    }
    .gf-search-suggestions { display:flex; align-items:center; gap:9px; flex-wrap:wrap; padding-top:13px; font-size:12px; color:#777; }
    .gf-search-suggestions button {
      border:1px solid #e1e1e1; background:#fff; border-radius:999px; padding:7px 12px; font-size:12px;
    }

    /* ---------- Cart drawer ---------- */
    .gf-drawer-overlay {
      position:fixed; inset:0; background:rgba(0,0,0,.36); opacity:0; visibility:hidden; z-index:2500;
      transition:.3s ease;
    }
    .gf-drawer-overlay.is-open { opacity:1; visibility:visible; }
    .gf-cart-drawer {
      position:fixed; top:0; right:0; height:100vh; width:min(430px, 92vw); background:#fff; z-index:2600;
      transform:translateX(105%); transition:transform .4s cubic-bezier(.2,.8,.2,1);
      display:flex; flex-direction:column; box-shadow:-20px 0 60px rgba(0,0,0,.15);
    }
    .gf-cart-drawer.is-open { transform:translateX(0); }
    .gf-cart-head {
      display:flex; justify-content:space-between; align-items:flex-start; padding:28px 26px 20px;
      border-bottom:1px solid #eee;
    }
    .gf-cart-head h3 span { font:400 12px Arial; color:#888; }
    .gf-cart-body { flex:1; overflow:auto; padding:6px 26px; }
    .gf-cart-item {
      display:grid; grid-template-columns:62px 1fr 25px; gap:13px; padding:20px 0;
      border-bottom:1px solid #eee;
    }
    .gf-cart-thumb {
      width:62px; height:74px; border-radius:12px; background:linear-gradient(145deg,#c99c73,#8b5b37);
      color:#fff; display:grid; place-items:center; font:700 13px Georgia,serif;
    }
    .gf-cart-thumb-light { background:linear-gradient(145deg,#f4f3ef,#b7c0c3); color:#222; }
    .gf-cart-info strong { display:block; font-size:13px; line-height:1.35; margin-bottom:3px; }
    .gf-cart-info > span { color:#888; font-size:11px; }
    .gf-cart-line { display:flex; align-items:center; justify-content:space-between; margin-top:14px; }
    .gf-cart-line b { font-size:13px; }
    .gf-qty { display:flex; align-items:center; border:1px solid #ddd; border-radius:999px; overflow:hidden; }
    .gf-qty button { width:27px; height:27px; border:0; background:#fff; }
    .gf-qty span { width:25px; text-align:center; font-size:12px; }
    .gf-remove { border:0; background:transparent; color:#aaa; align-self:start; padding:5px; }
    .gf-remove:hover { color:#e33; }
    .gf-cart-foot { padding:20px 26px 25px; border-top:1px solid #eee; }
    .gf-cart-foot > div { font-size:14px; }
    .gf-cart-foot small { color:#888; font-size:11px; }
    .gf-checkout {
      width:100%; margin-top:16px; height:50px; border:0; border-radius:999px; background:#111; color:#fff;
      font-weight:700; transition:.2s ease;
    }
    .gf-checkout:hover { transform:translateY(-2px); }
    .gf-view-cart { display:block; text-align:center; margin-top:12px; color:#111; font-size:12px; font-weight:700; }

    /* ---------- Mobile menu ---------- */
    .gf-mobile-offcanvas { width:min(430px, 92vw) !important; }
    .gf-mobile-catalog-toggle {
      width:100%; border:0; background:#7137c7; color:#fff; border-radius:15px; min-height:52px;
      display:flex; justify-content:space-between; align-items:center; padding:0 18px; font-weight:700;
    }
    .gf-mobile-menu { padding:6px 0 8px; }
    .gf-mobile-group { border-bottom:1px solid #eee; }
    .gf-mobile-group > button {
      width:100%; border:0; background:#fff; padding:15px 3px; display:flex; justify-content:space-between;
      font-weight:700; font-size:14px; text-align:left;
    }
    .gf-mobile-group > button i { transition:.2s ease; }
    .gf-mobile-group > button[aria-expanded="true"] i { transform:rotate(45deg); }
    .gf-mobile-group .collapse { padding:0 0 10px 13px; }
    .gf-mobile-group a {
      display:block; padding:7px 0; color:#666; text-decoration:none; font-size:13px;
    }
    .gf-mobile-links { margin-top:18px; border-top:1px solid #eee; padding-top:8px; }
    .gf-mobile-links a {
      display:flex; align-items:center; padding:14px 2px; color:#222; text-decoration:none; font-size:14px;
      border-bottom:1px solid #f0f0f0;
    }

    /* ---------- Animations ---------- */

    @keyframes revealUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes bob {
      0%, 100% { transform: translateY(0) rotate(-1deg); }
      50% { transform: translateY(-10px) rotate(1deg); }
    }

    /* ---------- Responsive ---------- */

     @media (max-width: 1700.98px) {
      .gf-padd-8 {  padding: 0 4rem !important;}
     }

     @media (max-width: 1300.98px) {
      .gf-logo img {  width: 50%; }
    }

    @media (max-width: 1199.98px) {
      .gf-navbar { min-height: 108px; }
      .gf-actions-left .gf-pill { padding-inline: 17px; }
      .gf-logo-word { font-size: 31px; }
      .gf-logo-mark { font-size: 38px; width: 45px; }
      .gf-logo  {width: 50px; height: 50px; overflow: hidden; position: relative;    }
      .gf-padd-8 {  padding: 0 !important;}
      .gf-logo  img {width: 240px; max-width: none; position: absolute; left: 0; top: 50%; transform: translateY(-50%);    }
    }

    @media (max-width: 991.98px) {
      .gf-navbar { min-height: 82px; }
      .gf-header.is-scrolled .gf-navbar { min-height: 68px; }
      .gf-logo { margin: auto; }
      .gf-logo-mark { font-size: 35px; width: 40px; }
      .gf-logo-word { font-size: 27px; }
      .gf-logo img{width: 240px; }
       .gf-logo  {width: 240px; overflow: hidden; position: relative;    }
      .gf-desktop-actions { display: none !important; }
      .gf-padd-8 {  padding: 0 !important;}

      .gf-mobile-actions {
        display: flex !important;
        position: absolute;
        right: 12px;
      }
      .gf-floating-note { right: 20px; bottom: 20px; }
    }

    @media (max-width: 575.98px) {
      .gf-navbar { min-height: 72px; }
      .gf-logo-mark { display: none; }
      .gf-logo-word { font-size: 22px; letter-spacing: 0; }
      .gf-logo-reg { font-size: 8px; }

      .gf-floating-note {
        left: 16px;
        right: auto;
        bottom: 18px;
        max-width: 205px;
      }

      .gf-intro { padding: 60px 0; }
      .gf-feature { padding: 23px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behaviour: auto !important;
      }
    }
    .categories {
    background: #eaf5f7;
}

.categories h2 span {
    color: #7137c7;
}

.categories h2 {
    font-size: 36px;
}

.categories p {
    font-size: 18px;
    letter-spacing: 1px;
}

/* Desktop: normal grid */
.cat-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cat-card {
    text-decoration: none;
    color: #111;
}

.cat-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 36px;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.45),
        transparent 55%
    );
    opacity: 0;
    transition: opacity .4s ease;
}

.cat-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}

.cat-card h3 {
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    margin: 40px 0 30px;
    transition: color .3s ease;
}

.cat-card:hover .cat-img img {
    transform: scale(1.07);
}

.cat-card:hover .cat-overlay,
.cat-card:hover .cat-arrow {
    opacity: 1;
}

.cat-card:hover .cat-arrow {
    transform: translateY(0);
}

.cat-card:hover h3 {
    color: #7137c7;
}

/* Hide slider controls on desktop */
.cat-prev,
.cat-next {
    display: none;
}
@media (max-width: 767px) {

    .categories {
        overflow: hidden;
    }

    .categories h2 {
        font-size: 28px;
    }

    .categories p {
        font-size: 14px;
    }

    .cat-slider {
        position: relative;
        overflow: hidden;
    }

    .cat-track {
        display: flex;
        gap: 10px;
        transition: transform .45s ease;
    }

    .cat-card {
        flex: 0 0 calc((100% - 20px) / 3);
        min-width: 0;
    }

    .cat-img {
        border-radius: 20px;
    }

    .cat-card h3 {
        font-size: 13px;
        line-height: 1.3;
        margin-top: 10px;
    }

    /* Mobile arrows */
    .cat-prev,
    .cat-next {
        display: flex;
        position: absolute;
        top: 42%;
        z-index: 5;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 50%;
        background: #fff;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0,0,0,.12);
    }

    .cat-prev {
        left: 5px;
    }

    .cat-next {
        right: 5px;
    }

    .cat-prev:disabled,
    .cat-next:disabled {
        opacity: .35;
    }

    .cat-arrow {
        width: 32px;
        height: 32px;
        right: 8px;
        bottom: 8px;
    }
}
@media (min-width: 1800px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 100%;
    padding: 0 10rem;
  }
}
.feature-product {
    background: #eaf5f7;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.feature-image {
    height: 610px;
    overflow: hidden;
    border-radius: 42px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-content {
    max-width: 520px;
    padding: 20px 30px;
}

.feature-content h2 {
    margin: 0 0 32px;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(42px, 3.3vw, 64px);
    line-height: 1.05;
    font-weight: 600;
    color: #050505;
}

.feature-content h2 span {
    color: #ef2d91;
}

.feature-content p {
    margin: 0 0 28px;
    max-width: 500px;
    font-size: 17px;
    line-height: 1.45;
    color: #222;
}

.feature-link {
    display: inline-block;
    color: #a83c68;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: color .3s ease;
}

.feature-link:hover {
    color: #7137c7;
}
@media (max-width: 991px) {

    .feature-product {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .feature-image {
        height: 450px;
        border-radius: 28px;
    }

    .feature-content {
        max-width: none;
        padding: 10px 15px 0;
        text-align: center;
    }

    .feature-content h2 {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .feature-content p {
        font-size: 15px;
        line-height: 1.5;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {

    .feature-product {
        padding-left: 10px;
        padding-right: 10px;
    }

    .feature-image {
        height: 330px;
        border-radius: 22px;
    }

    .feature-content {
        padding-left: 5px;
        padding-right: 5px;
    }

    .feature-content h2 {
        font-size: 36px;
        line-height: 1.05;
    }

    .feature-content p {
        font-size: 14px;
    }

    .feature-link {
        font-size: 13px;
    }
}

/* ---------------- SHOP ----------------------- */

.shop-new {
    background: #eaf5f7;
    overflow: hidden;
}

.shop-heading {
    margin-bottom: 55px;
}

.shop-heading h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-heading h2 span {
    color: #7137c7;
}

.shop-heading p {
    font-size: 19px;
    letter-spacing: 2px;
    margin: 0;
}


/* Slider */

.shop-slider {
    position: relative;
    overflow: hidden;
}

.shop-track {
    display: flex;
    gap: 24px;
    transition: transform .5s ease;
    will-change: transform;
}

.shop-product {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
}


/* Image */

.shop-image {
    position: relative;
    height: 475px;
    overflow: hidden;
    background: #fff;
    border-radius: 40px;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .5s ease;
}

.shop-product:hover .shop-image img {
    transform: scale(1.04);
}


/* Badge */

.shop-badge {
    position: absolute;
    top: 26px;
    left: 30px;
    z-index: 2;

    background: #ed2c88;
    color: #fff;

    padding: 9px 22px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;
}

.shop-number {
    position: absolute;
    right: 10px;
    bottom: 80px;

    background: #000;
    color: #fff;

    padding: 3px 10px;
    border-radius: 20px;

    font-size: 14px;
}


/* Information */

.shop-info {
    padding: 20px 14px 0;
}

.shop-info h3 {
    min-height: 58px;
    margin: 0 0 10px;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 1px;
}

.shop-price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
}


/* Add to cart */

.shop-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 24px;

    border: 0;
    border-radius: 50px;

    background: #ed2c88;
    color: #fff;

    font-size: 15px;
    font-weight: 700;

    transition: .3s ease;
}

.shop-cart:hover {
    background: #7137c7;
    transform: translateY(-2px);
}


/* Arrows - DESKTOP TOO */

.shop-prev,
.shop-next {
    display: flex;

    position: absolute;
    top: 40%;
    z-index: 5;

    width: 46px;
    height: 46px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #111;

    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 20px rgba(0,0,0,.15);

    transition: .3s ease;
}

.shop-prev {
    left: 10px;
}

.shop-next {
    right: 10px;
}

.shop-prev:hover,
.shop-next:hover {
    background: #ed2c88;
    color: #fff;
}

.shop-prev:disabled,
.shop-next:disabled {
    opacity: .3;
    cursor: not-allowed;
}
@media (max-width: 1199px) {

    .shop-product {
        flex: 0 0 calc((100% - 48px) / 3);
    }

}
@media (max-width: 767px) {

    .shop-heading {
        margin-bottom: 35px;
    }

    .shop-heading h2 {
        font-size: 28px;
    }

    .shop-heading p {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .shop-track {
        gap: 12px;
    }

    /* 2 products visible */
    .shop-product {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .shop-image {
        height: 280px;
        border-radius: 22px;
    }

    .shop-badge {
        top: 15px;
        left: 15px;
        padding: 7px 14px;
        font-size: 11px;
    }

    .shop-number {
        right: 7px;
        bottom: 55px;
        font-size: 11px;
    }

    .shop-info {
        padding: 13px 4px 0;
    }

    .shop-info h3 {
        min-height: 65px;
        font-size: 13px;
        line-height: 1.35;
        letter-spacing: .4px;
    }

    .shop-price {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .shop-cart {
        width: 100%;
        padding: 11px 5px;
        font-size: 10px;
        gap: 6px;
    }

    .shop-prev,
    .shop-next {
        width: 34px;
        height: 34px;
        top: 34%;
    }

    .shop-prev {
        left: 5px;
    }

    .shop-next {
        right: 5px;
    }
}
.bg-for-shop{
  background-image: url("../images/shop-bg.png");
  background-repeat: no-repeat;
  width: 94%;
  padding: 100px 0;
  margin: 0 3%;

}
.bg-for-shop .container{padding: 0 6rem}

/* ------------------- Certification section----------------------- */
.certificates-section {
      background-color: #eef6fa;
      padding: 60px 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* Left Heading & Button Area */
    .cert-title-lead {
      color: #6c34af;
      font-weight: 800;
      font-size: 2.3rem;
      line-height: 1.1;
    }

    .cert-title-main {
      color: #121826;
      font-weight: 800;
      font-size: 2.3rem;
      line-height: 1.2;
    }

    .btn-download-cert {
      background: linear-gradient(135deg, #ea1f78, #d8237b);
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 12px 38px;
      border-radius: 50px;
      border: none;
      box-shadow: 0 6px 18px rgba(216, 35, 123, 0.35);
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-download-cert:hover {
      background: linear-gradient(135deg, #c71664, #b01056);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(216, 35, 123, 0.45);
      color: #fff;
    }

    /* Right Image Wrapper */
    .cert-img-wrapper {
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cert-img-wrapper:hover {
      transform: translateY(-4px);
    }

    .cert-img-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

/* ---------------Blog------------------- */
.blog-section {
      padding: 90px 0;
    }

    /* Base Blog Card */
    .blog-card {
      text-decoration: none;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* Rounded Image Frame & Zoom Effect */
    .blog-img-wrapper {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
      background-color: #ffffff;
    }

    .blog-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* -------------------------------------------------------------
       STAGGERED UP & DOWN POSITIONING (DESKTOP)
       Card 1: Normal / Up
       Card 2: Shifted Down (+55px)
       Card 3: Normal / Up
       Card 4: Shifted Down (+55px)
    -------------------------------------------------------------- */
    @media (min-width: 992px) {
      .card-offset-down {
        transform: translateY(55px);
      }
      .card-offset-down:hover {
        transform: translateY(47px); /* smooth hover lift */
      }
      .card-offset-up:hover {
        transform: translateY(-8px); /* smooth hover lift */
      }
    }

    @media (max-width: 991.98px) {
      .blog-card:hover {
        transform: translateY(-6px);
      }
    }

    .blog-card:hover .blog-img-wrapper img {
      transform: scale(1.06);
    }

    .blog-card:hover .blog-title {
      color: var(--accent-pink);
    }

    /* Typography */
    .blog-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--gf-purple );
      line-height: 1.35;
      margin-bottom: 12px;
      transition: color 0.25s ease;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .blog-excerpt {
      font-size: 0.82rem;
      color: #000;
      line-height: 1.55;
      margin-bottom: 0;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Footer Container with Customizable Background */


    .site-footer {
      position: relative;
      background: url('../images/footer_bg.jpg') center center / cover no-repeat;
      color: #ffffff;
      padding: 70px 0 35px;
      overflow: hidden;
    }

    /* Headings & Links */
    .footer-heading {
      font-size: 2.5rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 22px;
      letter-spacing: -0.2px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #d1d5db;
      text-decoration: none;
      font-size: 1.25rem;
      font-weight: 500;
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--accent-pink);
      transform: translateX(4px);
    }
    .tm-60{margin-top: 60px}
    /* CTA Action Buttons */
    .btn-footer-pink {
      background:#ed358b;
      color: #ffffff;
      border: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.25rem;
      padding: 16px 24px;
      width: 100%;
      max-width: 280px;
      display: inline-block;
      text-align: center;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      margin-bottom: 12px;
    }
    .btn-footer-pink:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(232, 44, 129, 0.4);
      color: #ffffff;
    }

    .btn-footer-purple {
      background: #7538bf;
      color: #ffffff;
      border: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.25rem;
      padding: 16px 24px;
      width: 100%;
      max-width: 280px;
      display: inline-block;
      text-align: center;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      margin-bottom: 24px;
    }
    .btn-footer-purple:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(108, 52, 175, 0.4);
      color: #ffffff;
    }

    /* Social Contact Icons */
    .contact-social-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.95rem;
      margin: 14px 0;
      text-decoration: none;
      transition: transform 0.2s ease;
    }
    .contact-social-btn:hover {
      transform: scale(1.12);
      color: #fff;
    }

    /* Counter Badges Row */
    .stat-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.68rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      color: #ffffff;
      text-decoration: none;
    }
    .stat-fb { background: #1877f2; }
    .stat-insta { background: #e1306c; }
    .stat-yt { background: #ff0000; }
    .stat-tiktok { background: #111111; border: 1px solid #333; }
    .stat-tg { background: #0088cc; }

    /* Legal Disclaimer */
    .legal-micro-text {
      font-size: 0.85rem;
      color: #fff;
      line-height: 1.45;
    }
    .gf-big-text{font-size: 1.875rem; font-weight: bold; color: #fff}
    .gf-mid-text{font-size: 1.25rem; font-weight: normal; color: #fff}
    .gf-mid2-text{font-size: 1rem; font-weight: normal; color: #fff}
    .bg-telegram{background: #2ea4e1}
    .bg-whatsapp{background: #248e01}
    .bg-viber{background: #9956d1}
    /* =========================================================
       MOBILE ACCORDION OVERRIDES (ONLY SHOWN BELOW 992px)
    ========================================================= */
    .mobile-footer-accordion .accordion-item {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 8px;
      border-radius: 12px !important;
      overflow: hidden;
    }
    .mobile-footer-accordion .accordion-button {
      background: transparent;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.05rem;
      box-shadow: none;
      padding: 14px 16px;
    }
    .mobile-footer-accordion .accordion-button:not(.collapsed) {
      background: rgba(255, 255, 255, 0.08);
      color: var(--accent-pink);
    }
    .mobile-footer-accordion .accordion-button::after {
      filter: invert(1);
    }
    .mobile-footer-accordion .accordion-body {
      padding: 12px 16px 18px;
    }

    /* -------------------Inner page Login/register---------------------- */

    .gf-login-register {width: 100%; height: auto; padding: 60px 0; }
    .gf-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .gf-auth {
            position: relative;
            width: 100%;
            max-width: 1100px;
            min-height: 650px;
            background: #fff;
            border-radius: 42px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(35, 35, 35, .10);
        }

        .gf-form {
            position: absolute;
            top: 0;
            width: 50%;
            height: 100%;
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            transition: .6s ease;
        }

        .gf-form form {
            width: 100%;
            max-width: 390px;
        }

        .gf-login {
            left: 0;
            z-index: 2;
        }

        .gf-register {
            left: 0;
            opacity: 0;
            z-index: 1;
        }

        .gf-auth.gf-register-active .gf-login {
            transform: translateX(100%);
            opacity: 0;
        }

        .gf-auth.gf-register-active .gf-register {
            transform: translateX(100%);
            opacity: 1;
            z-index: 3;
        }

        .gf-title {
            font-family: Georgia, serif;
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .gf-title span {
            color: var(--gf-purple);
        }

        .gf-subtitle {
            color: #777;
            font-size: 14px;
            margin-bottom: 28px;
        }

        .gf-input {
            position: relative;
            margin-bottom: 14px;
        }

        .gf-input i {
            position: absolute;
            left: 17px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .gf-input input {
            width: 100%;
            height: 54px;
            border: 1px solid #e4e4e4;
            border-radius: 14px;
            padding: 0 18px 0 48px;
            outline: none;
            transition: .2s;
            background: #fafafa;
        }

        .gf-input input:focus {
            border-color: var(--gf-purple);
            background: #fff;
        }

        .gf-forgot {
            display: block;
            text-align: right;
            color: #777;
            font-size: 13px;
            text-decoration: none;
            margin: 8px 0 24px;
        }

        .gf-forgot:hover {
            color: var(--gf-purple);
        }

        .gf-btn {
            width: 100%;
            border: 0;
            height: 54px;
            border-radius: 28px;
            background: var(--gf-purple);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .8px;
            text-transform: uppercase;
            transition: .25s;
        }

        .gf-btn:hover {
            background: var(--gf-pink);
            transform: translateY(-2px);
        }

        .gf-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 25px 0;
            color: #aaa;
            font-size: 12px;
        }

        .gf-divider::before,
        .gf-divider::after {
            content: "";
            height: 1px;
            background: #eee;
            flex: 1;
        }

        .gf-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .gf-social a {
            width: 42px;
            height: 42px;
            border: 1px solid #e5e5e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            text-decoration: none;
            transition: .2s;
        }

        .gf-social a:hover {
            color: var(--gf-purple);
            border-color: var(--gf-purple);
        }

        /* Sliding panel */

        .gf-panel {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            z-index: 10;
            transition: .6s ease;
            overflow: hidden;
        }

        .gf-auth.gf-register-active .gf-panel {
            transform: translateX(-100%);
        }

        .gf-panel-inner {
            width: 200%;
            height: 100%;
            display: flex;
            transition: .6s ease;
            transform: translateX(0);
        }

        .gf-auth.gf-register-active .gf-panel-inner {
            transform: translateX(-50%);
        }

        .gf-panel-side {
            width: 50%;
            height: 100%;
            flex-shrink: 0;
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .gf-panel-side::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(255,255,255,.16);
            top: -150px;
            right: -130px;
        }

        .gf-panel-side::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,.10);
            bottom: -130px;
            left: -100px;
        }

        .gf-panel-content {
            position: relative;
            z-index: 2;
            max-width: 400px;
            color: #fff;
        }

        .gf-panel-content h2 {
            font-family: Georgia, serif;
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .gf-panel-content h2 span {
            color: #ffd5e9;
        }

        .gf-panel-content p {
            font-size: 15px;
            line-height: 1.8;
            opacity: .92;
            margin-bottom: 30px;
        }

        .gf-panel-btn {
            background: transparent;
            border: 1px solid rgba(255,255,255,.8);
            color: #fff;
            border-radius: 30px;
            padding: 13px 34px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .gf-panel-btn:hover {
            background: #fff;
            color: var(--gf-purple);
        }

        .gf-panel-login {
            background: linear-gradient(145deg, #7137c7, #9b5de5);
        }

        .gf-panel-register {
            background: linear-gradient(145deg, #ed2c88, #f46cae);
        }

        .gf-mobile-switch {
            display: none;
            text-align: center;
            margin-top: 25px;
            font-size: 13px;
            color: #777;
        }

        .gf-mobile-switch button {
            border: 0;
            background: none;
            color: var(--gf-purple);
            font-weight: 600;
        }

        /* Mobile */

        @media (max-width: 767px) {

            .gf-page {
                padding: 20px 15px;
            }

            .gf-auth {
                min-height: auto;
                border-radius: 25px;
            }

            .gf-form {
                position: relative;
                width: 100%;
                min-height: 620px;
                padding: 45px 25px;
                display: none;
            }

            .gf-login,
            .gf-register {
                left: auto;
                opacity: 1;
                transform: none !important;
            }

            .gf-login {
                display: flex;
            }

            .gf-auth.gf-register-active .gf-login {
                display: none;
            }

            .gf-auth.gf-register-active .gf-register {
                display: flex;
            }

            .gf-panel {
                display: none;
            }

            .gf-logo {
                margin-bottom: 25px;
            }

            .gf-title {
                font-size: 34px;
            }

            .gf-mobile-switch {
                display: block;
            }

            .gf-social {
                margin-bottom: 10px;
            }
        }
/* ----------------------------------CMS Pages design------------------------------------ */
.gf-cms-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 25%, #fff 0, #fff 24%, transparent 52%),
        var(--gf-bg);
    padding: 0 0 100px;
}


/* Breadcrumb */

.gf-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    font-size: 15px;
    color: #555;
}

.gf-breadcrumb a {
    color: var(--gf-pink);
    text-decoration: none;
}

.gf-breadcrumb .bi-chevron-right {
    color: #aaa;
    font-size: 12px;
}


/* Page title */

.gf-page-title {
    margin: 35px 0 55px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 700;
    color: var(--gf-dark);
}


/* Main intro */

.gf-about-intro {
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

.gf-about-image {
    height: 520px;
    overflow: hidden;
    border-radius: 40px;
    background: #fff;
}

.gf-about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.gf-about-image:hover img {
    transform: scale(1.03);
}


/* Content */

.gf-about-content h2,
.gf-section-content h2,
.gf-section-heading h2 {
    margin-bottom: 25px;
    color: var(--gf-dark);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 700;
}

.gf-about-content h2 span,
.gf-section-content h2 span,
.gf-section-heading h2 span {
    color: var(--gf-pink);
}

.gf-about-content p,
.gf-section-content p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
}


/* Story */

.gf-about-story {
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

.gf-about-card {
    min-height: 330px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 40px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(40, 40, 40, .07);
}

.gf-about-card-icon,
.gf-value-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9d8e8;
    color: var(--gf-pink);
    font-size: 24px;
}

.gf-about-card h3 {
    margin-bottom: 15px;
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}

.gf-about-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}


/* Values */

.gf-values {
    position: relative;
    z-index: 2;
}

.gf-section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.gf-section-heading p {
    font-size: 17px;
    line-height: 1.7;
}

.gf-value-card {
    height: 100%;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .75);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gf-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(40, 40, 40, .08);
}

.gf-value-card h3 {
    margin-bottom: 15px;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.gf-value-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}


/* Decorative shape */

.gf-decorative-shape {
    position: absolute;
    right: -110px;
    bottom: 40px;
    width: 480px;
    height: 300px;
    border-radius: 55% 45% 60% 40%;
    background: linear-gradient(
        135deg,
        rgba(91, 201, 255, .65),
        rgba(236, 43, 137, .75),
        rgba(255, 100, 40, .7)
    );
    transform: rotate(-18deg);
    filter: blur(.2px);
    opacity: .75;
}


/* Responsive */

@media (max-width: 991px) {

    .gf-cms-page {
        padding-bottom: 70px;
    }

    .gf-page-title {
        margin-bottom: 35px;
    }

    .gf-about-image {
        height: 450px;
    }

    .gf-about-intro,
    .gf-about-story {
        margin-bottom: 70px;
    }

    .gf-about-card {
        min-height: auto;
    }

}


@media (max-width: 575px) {

    .gf-cms-page {
        padding-bottom: 50px;
    }

    .gf-breadcrumb {
        font-size: 13px;
    }

    .gf-page-title {
        margin: 28px 0 30px;
        font-size: 42px;
    }

    .gf-about-image {
        height: 330px;
        border-radius: 25px;
    }

    .gf-about-content h2,
    .gf-section-content h2,
    .gf-section-heading h2 {
        font-size: 34px;
    }

    .gf-about-content p,
    .gf-section-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .gf-about-card {
        padding: 30px;
        border-radius: 25px;
    }

    .gf-about-card h3 {
        font-size: 28px;
    }

    .gf-value-card {
        padding: 30px;
        border-radius: 25px;
    }

    .gf-value-card h3 {
        font-size: 27px;
    }

    
}

/* Contact section */

.gf-contact-section {
    position: relative;
    z-index: 2;
}


/* Form */

.gf-contact-form {
    height: 100%;
    padding: 38px 40px;
    border-radius: 38px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(35, 35, 35, .08);
}

.gf-contact-form h2 {
    margin: 0;
    text-align: center;
    color: var(--gf-dark);
    font-size: 32px;
    line-height: 1.08;
    font-weight: 700;
}

.gf-contact-form h2 span {
    display: block;
}

.gf-contact-subtitle {
    margin: 8px 0 30px;
    text-align: center;
    font-size: 18px;
}


/* Inputs */

.gf-form-field {
    margin-bottom: 14px;
}

.gf-form-field .form-control {
    min-height: 62px;
    padding: 15px 22px;
    border: 1px solid #e4e4e4;
    border-radius: 32px;
    color: var(--gf-dark);
    box-shadow: none;
    font-size: 16px;
}

.gf-form-field textarea.form-control {
    min-height: 190px;
    border-radius: 28px;
    resize: none;
}

.gf-form-field .form-control:focus {
    border-color: var(--gf-pink);
    box-shadow: 0 0 0 3px rgba(244, 119, 158, .10);
}

.gf-form-field .form-control::placeholder {
    color: #92929b;
}


/* Submit */

.gf-submit {
    width: 100%;
    min-height: 64px;
    margin-top: 5px;
    border: 0;
    border-radius: 34px;
    background: var(--gf-pink);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .25s ease;
}

.gf-submit:hover {
    background: var(--gf-purple);
    transform: translateY(-2px);
}


/* Map */

.gf-map {
    position: relative;
    height: 100%;
    min-height: 640px;
    overflow: hidden;
    border-radius: 38px;
    background: #ddd;
}

.gf-map iframe {
    width: 100%;
    height: 100%;
    min-height: 640px;
    display: block;
    border: 0;
}


/* Contact information over map */

.gf-map-info {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.gf-contact-details {
    width: 330px;
    padding: 25px 28px;
    border-radius: 28px;
    background: rgba(244, 119, 158, .96);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.gf-contact-details p,
.gf-contact-details a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.gf-contact-details a:last-child {
    margin-bottom: 0;
}

.gf-contact-details i {
    width: 22px;
    font-size: 17px;
}

.gf-contact-details a:hover {
    opacity: .8;
}

.gf-instagram {
    width: fit-content;
    margin-top: 20px !important;
    padding: 13px 22px;
    border-radius: 28px;
    background: var(--gf-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}


/* Decorative shape */

.gf-contact-shape {
    position: absolute;
    right: -130px;
    bottom: -80px;
    width: 430px;
    height: 260px;
    border-radius: 55% 45% 60% 40%;
    background: linear-gradient(
        135deg,
        rgba(91, 201, 255, .55),
        rgba(236, 43, 137, .75),
        rgba(255, 100, 40, .65)
    );
    transform: rotate(-18deg);
}


/* Tablet */

@media (max-width: 991px) {

    .gf-contact-form {
        padding: 30px;
    }

    .gf-contact-form h2 {
        font-size: 28px;
    }

    .gf-map,
    .gf-map iframe {
        min-height: 580px;
    }

    .gf-contact-details {
        width: 280px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .gf-cms-page {
        padding-bottom: 60px;
    }

    .gf-page-title {
        margin: 30px 0;
        font-size: 42px;
    }

    .gf-contact-form {
        padding: 32px 22px;
        border-radius: 28px;
    }

    .gf-contact-form h2 {
        font-size: 30px;
    }

    .gf-form-field .form-control {
        min-height: 58px;
    }

    .gf-form-field textarea.form-control {
        min-height: 160px;
    }

    .gf-map,
    .gf-map iframe {
        min-height: 430px;
    }

    .gf-map {
        border-radius: 28px;
    }

    .gf-map-info {
        top: 15px;
        left: 15px;
        right: 15px;
    }

    .gf-contact-details {
        width: 100%;
        padding: 20px;
        border-radius: 22px;
    }

    .gf-contact-details p,
    .gf-contact-details a {
        font-size: 13px;
    }

    .gf-contact-shape {
        width: 250px;
        height: 160px;
        right: -100px;
        bottom: -40px;
    }
}

/* ----------------------Blog------------------------------- */

.gf-blog-section {
    padding: 20px 0 100px;
}

.gf-blog-card {
    height: 100%;
}

.gf-blog-image {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    border-radius: 32px;
    background: #eee;
}

.gf-blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .18),
        transparent 45%
    );
    opacity: 0;
    transition: opacity .35s ease;
}

.gf-blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.gf-blog-card:hover .gf-blog-image img {
    transform: scale(1.07);
}

.gf-blog-card:hover .gf-blog-image::after {
    opacity: 1;
}


/* Arrow */

.gf-blog-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    color: var(--gf-purple);

    opacity: 0;
    transform: translateY(10px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.gf-blog-card:hover .gf-blog-arrow {
    opacity: 1;
    transform: translateY(0);
}


/* Content */

.gf-blog-content {
    padding: 18px 0 10px;
}

.gf-blog-content h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.gf-blog-content h2 a {
    color: #303039;
    text-decoration: none;
    transition: color .25s ease;
}

.gf-blog-card:hover .gf-blog-content h2 a {
    color: var(--gf-purple);
}

.gf-blog-content p {
    margin: 0;
    color: #85858d;
    font-size: 15px;
    line-height: 1.55;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Tablet */

@media (max-width: 991px) {

    .gf-blog-section {
        padding-bottom: 70px;
    }

    .gf-blog-image {
        height: 300px;
        border-radius: 28px;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .gf-blog-section {
        padding-bottom: 50px;
    }

    .gf-blog-image {
        height: 260px;
        border-radius: 24px;
    }

    .gf-blog-content {
        padding-top: 15px;
    }

    .gf-blog-content h2 {
        font-size: 19px;
    }

    .gf-blog-content p {
        font-size: 14px;
    }

    /* Always show the arrow slightly on mobile */
    .gf-blog-arrow {
        opacity: 1;
        transform: none;
        width: 42px;
        height: 42px;
        right: 12px;
        bottom: 12px;
    }

}
.gf-blog-details {
    padding: 20px 0 100px;
}


/* Featured image */

.gf-blog-featured {
    width: 100%;
    max-width: 950px;
    height: 640px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 38px;
}

.gf-blog-featured img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* Article */

.gf-blog-article {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.gf-blog-article h1 {
    margin: 0 0 28px;
    color: #303039;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 700;
}

.gf-blog-article h2 {
    margin: 28px 0 14px;
    color: #303039;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.gf-blog-article p {
    margin: 0 0 16px;
    color: #414149;
    font-size: 16px;
    line-height: 1.65;
}

.gf-blog-article strong {
    color: #303039;
    font-weight: 700;
}


/* Article list */

.gf-blog-article ul {
    margin: 8px 0 20px;
    padding: 0;
    list-style: none;
}

.gf-blog-article li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 28px;
    color: #414149;
    font-size: 16px;
    line-height: 1.6;
}

.gf-blog-article li::before {
    content: "";
    position: absolute;
    top: .75em;
    left: 3px;
    width: 8px;
    height: 1px;
    background: #ed2c88;
}


/* Tablet */

@media (max-width: 991px) {

    .gf-blog-details {
        padding-bottom: 70px;
    }

    .gf-blog-featured {
        height: 500px;
        border-radius: 30px;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .gf-blog-details {
        padding-bottom: 50px;
    }

    .gf-blog-featured {
        height: 330px;
        margin-bottom: 30px;
        border-radius: 24px;
    }

    .gf-blog-article h1 {
        margin-bottom: 22px;
        font-size: 32px;
    }

    .gf-blog-article h2 {
        margin-top: 24px;
        font-size: 19px;
    }

    .gf-blog-article p,
    .gf-blog-article li {
        font-size: 15px;
        line-height: 1.65;
    }

}


/* Page */

.gf-product-page {
    min-height: 100vh;
    padding-bottom: 100px;
    background:#e8f4f6
}


/* Header */

.gf-product-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 35px 0 30px;
}

.gf-product-header h1 {
    margin: 0;
    color: var(--gf-purple);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1;
    font-weight: 700;
}

.gf-product-header p {
    margin: 10px 0 0;
    color: var(--gf-dark);
    font-size: 16px;
}


/* Toolbar */

.gf-product-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 26px;
    margin-bottom: 55px;
}

.gf-toolbar-spacer {
    flex: 1;
}

.gf-select2 {
    position: relative;
    width: 200px;
}

.gf-select2 select {
    width: 100%;
    height: 48px;
    padding: 0 42px 0 25px;
    border: 0;
    border-radius: 30px;
    background: #fff;
    color: var(--gf-pink);
    font-size: 1.25rem;
    font-weight: 600;
    appearance: none;
    outline: none;
}

.gf-select2 i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--gf-pink);
    pointer-events: none;
    font-size: 1.25rem;
}


/* Filter button */

.gf-filter-button {
    padding: 12px 22px;
    border: 0;
    border-radius: 25px;
    background: var(--gf-pink);
    color: #fff;
    font-weight: 600;
}


/* Filters */

.gf-filter-box {
    margin-bottom: 30px;
    padding: 30px 50px;
    border-radius: 38px;
    background: #fff;
}

.gf-filter-box h2 {
    margin: 0;
    color: #15151a;
    font-size: 1.25rem;
    font-weight: 700;
}

.gf-filter-line {
    width: 100%;
    height: 2px;
    margin: 15px 0 22px;
    background: var(--gf-purple);
}


/* Category list */

.gf-filter-list {
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #b7dce2;
}

.gf-filter-list::-webkit-scrollbar {
    width: 3px;
}

.gf-filter-list::-webkit-scrollbar-track {
    background: #e8f4f6;
}

.gf-filter-list::-webkit-scrollbar-thumb {
    background: #b7dce2;
    border-radius: 10px;
}

.gf-filter-list a {
    display: block;
    padding: 10px 8px;
    color: #202026;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color .2s ease;
}

.gf-filter-list a:hover {
    color: var(--gf-purple);
}

.gf-filter-list::-webkit-scrollbar {
    width: 3px;
}

.gf-filter-list::-webkit-scrollbar-thumb {
    background: #b7dce2;
}


/* Colours */

.gf-colours {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gf-colours label {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 15px;
}

.gf-colours input {
    display: none;
}

.gf-colour {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.05);
}

.gf-black {
    background: #000;
}

.gf-white {
    background: #eaf5f7;
}

.gf-red {
    background: #ff1818;
}

.gf-pink {
    background: #ec2c88;
}

.gf-lemon {
    background: #b5aa00;
}

.gf-coral {
    background: #720078;
}


/* Price */

.gf-price-fields {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gf-price-fields input {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.gf-price-fields input:focus {
    border-color: var(--gf-purple);
}


/* Product */

.gf-product-card {
    height: 100%;
}

.gf-product-image {
    position: relative;
    display: block;
    height: 550px;
    overflow: hidden;
    border-radius: 38px;
    background: #fff;
}

.gf-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform .5s ease;
}

.gf-product-card:hover .gf-product-image img {
    transform: scale(1.06);
}


/* Product number */

.gf-product-number {
    position: absolute;
    right: 10px;
    bottom: 75px;
    padding: 3px 8px;
    border-radius: 15px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}


/* Wishlist */

.gf-product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,.9);

    color: var(--gf-pink);

    opacity: 0;
    transform: translateY(-5px);
    transition: .25s ease;
}

.gf-product-card:hover .gf-product-wishlist {
    opacity: 1;
    transform: translateY(0);
}


/* Product info */

.gf-product-info {
    padding: 20px 12px 10px;
}

.gf-product-info h2 {
    min-height: 48px;
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: .5px;
}

.gf-product-info h2 a {
    color: var(--gf-text);
    text-decoration: none;
}

.gf-product-info h2 a:hover {
    color: var(--gf-purple);
}

.gf-product-info strong {
    display: block;
    margin-bottom: 22px;
    color: #111;
    font-size: 17px;
}


/* Add to cart */

.gf-add-cart-main {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 25px;
    background: var(--gf-pink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .25s ease;
}

.gf-add-cart i {
    margin-right: 7px;
}

.gf-add-cart:hover {
    background: var(--gf-purple);
    transform: translateY(-2px);
}


/* Pagination */

.gf-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.gf-pagination a,
.gf-pagination span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: var(--gf-dark);
    text-decoration: none;
    font-size: 14px;
}

.gf-pagination a:hover,
.gf-pagination .gf-page-active {
    background: var(--gf-purple);
    color: #fff;
}


/* Tablet */

@media (max-width: 1199px) {

    .gf-product-toolbar {
        gap: 12px;
    }

    .gf-select {
        width: 170px;
    }

    .gf-product-image {
        height: 380px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .gf-product-page {
        padding-bottom: 60px;
    }

    .gf-product-header {
        align-items: center;
        margin-bottom: 25px;
    }

    .gf-product-header h1 {
        font-size: 38px;
    }

    .gf-product-toolbar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 25px;
    }

    .gf-toolbar-spacer {
        display: none;
    }

    .gf-select {
        width: 100%;
    }

    .gf-select select {
        height: 46px;
        padding-left: 17px;
        font-size: 13px;
    }

    .gf-filters {
        margin-bottom: 10px;
    }

    .gf-filter-box {
        padding: 25px 22px;
        border-radius: 25px;
    }

    .gf-product-image {
        height: 300px;
        border-radius: 25px;
    }

    .gf-product-info {
        padding: 15px 5px 20px;
    }

    .gf-product-info h2 {
        font-size: 15px;
    }

    .gf-product-info strong {
        font-size: 16px;
    }

    .gf-add-cart {
        width: 100%;
    }

    .gf-product-wishlist {
        opacity: 1;
        transform: none;
    }

}


/* Small mobile */

@media (max-width: 575px) {

    .gf-product-header {
        display: block;
    }

    .gf-filter-button {
        margin-top: 20px;
    }

    .gf-product-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .gf-select:last-child {
        grid-column: span 2;
    }

    .gf-product-image {
        height: 260px;
        border-radius: 22px;
    }

}


:root {
    --gf-bg: #eaf5f7;
    --gf-purple: #7137c7;
    --gf-pink: #ed2c88;
    --gf-dark: #17171c;
    --gf-text: #303039;
}


/* PAGE */

.gf-product-details {
    min-height: 100vh;
    padding: 20px 0 90px;
    background:
        radial-gradient(
            circle at 50% 30%,
            #ffffff 0,
            rgba(255,255,255,.8) 18%,
            transparent 55%
        ),
        var(--gf-bg);
}


/* BREADCRUMB */

.gf-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 13px;
    color: #777;
}

.gf-product-breadcrumb a {
    color: #202020;
    text-decoration: none;
}

.gf-product-breadcrumb a:hover {
    color: var(--gf-purple);
}


/* GALLERY */

.gf-product-gallery {
    display: flex;
    gap: 18px;
    height: 900px;
}


/* THUMBNAILS */

.gf-product-thumbs-wrap {
    position: relative;
    width: 120px;
    flex-shrink: 0;
    padding: 0 0;
}

.gf-product-thumbs {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gf-product-thumb {
    width: 120px;
    height: 168px;
    flex-shrink: 0;

    padding: 10px;

    border: 2px solid transparent;
    border-radius: 30px;

    background: #fff;

    cursor: pointer;
    overflow: hidden;

    transition:
        border-color .25s ease,
        transform .25s ease;
}

.gf-product-thumb:hover {
    transform: translateY(-2px);
}

.gf-product-thumb.active {
    border-color: var(--gf-pink);
}

.gf-product-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


/* THUMB ARROWS */

.gf-thumb-arrow {
    position: absolute;
    left: 50%;
    z-index: 3;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: var(--gf-purple);

    box-shadow: 0 5px 20px rgba(0,0,0,.12);

    transform: translateX(-50%);

    cursor: pointer;
}

.gf-thumb-prev {
    top: -8px;
}

.gf-thumb-next {
    bottom: -8px;
}

.gf-thumb-arrow:hover {
    background: var(--gf-pink);
    color: #fff;
}


/* MAIN IMAGE */

.gf-product-main-image {
    flex: 1;
    min-width: 0;
}

.gf-product-zoom {
    width: 100%;
    height: 900px;
    overflow: hidden;
    border-radius: 40px;
    background: #fff;
    cursor: zoom-in;
}

.gf-product-zoom img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit:cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.gf-product-zoom:hover img {
    transform: scale(1.35);
}


/* PRODUCT CONTENT */

.gf-product-content {
    padding: 15px 0;
}

.gf-product-content h1 {
    margin: 0 0 14px;
    color: var(--gf-dark);
    font-size: 1.75rem;
    line-height: 1.35;
    font-weight: bold;
}


/* META */

.gf-product-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 28px;
    color: #777;
    font-size: 1.25rem;
}

.gf-product-meta strong {
    color: #17171c;
}


/* SHORT DESCRIPTION */

.gf-product-short {
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 28px;
    background: #fff;
}

.gf-product-short h2 {
    margin: 0 0 20px;
    color: #17171c;
    font-size: 1.25rem;
    font-weight: 600;
}

.gf-product-short p {
    margin: 0 0 10px;
    color: #222;
    font-size: 1.125rem;
    line-height: 1.65;
}

.gf-product-short p:last-child {
    margin-bottom: 0;
}


/* VARIANTS */

.gf-product-variants {
    margin-bottom: 30px;
}

.gf-product-variants > p {
    margin: 0 0 14px;
    color: #303039;
    font-size: 1.125rem;
}

.gf-variant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gf-variant {
    min-width:120px;
    height: 68px;
    padding: 0 20px;
    border: 0;
    border-radius: 28px;
    background: #fff;
    color: var(--gf-pink);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.gf-variant:hover,
.gf-variant.active {
    background: var(--gf-pink);
    color: #fff;
}


/* LINE */

.gf-product-content hr {
    margin: 0 0 16px;
    border-color: rgba(0,0,0,.15);
}


/* PRICE */

.gf-product-price {
    margin-bottom: 20px;
    color: #111;
    font-size: 2.125rem;
    font-weight: 700;
}


/* BUY */

.gf-product-buy {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* QUANTITY */

.gf-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 20px;
    border-radius: 30px;
    background: #fff;
}

.gf-quantity button {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
}

.gf-quantity-value {
    min-width: 25px;
    text-align: center;
    font-size: 28px;
}


/* ADD TO CART */

.gf-add-cart {
    height: 60px;
    padding: 0 40px;
    border: 0;
    border-radius: 60px;
    background: var(--gf-pink);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: .25s ease;
}

.gf-add-cart:hover {
    background: var(--gf-purple);
    transform: translateY(-2px);
}


/* DESCRIPTION */

.gf-product-description {
    margin-top: 55px;
}

.gf-description-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 35px;
    border: 0;
    border-radius: 30px;
    background: #fff;
    color: #17171c;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
}

.gf-description-toggle i {
    transition: transform .3s ease;
}

.gf-description-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.gf-description-content {
    padding: 25px 35px;

    color: #303039;
    font-size: 15px;
    line-height: 1.7;
}

.gf-description-content li::marker {
    color: var(--gf-pink);
}


/* REVIEWS */

.gf-reviews {
    margin-top: 45px;
}

.gf-reviews > h2 {
    margin: 0 0 38px;
    color: #111;
    font-size: 2.125rem;
    font-weight: 700;
}

.gf-reviews > h2 span {
    color: var(--gf-purple);
}


/* REVIEW CARD */

.gf-review-card {
    height: 100%;
    min-height: 170px;
    padding: 25px;
    border-radius: 30px;
    background: #fff;
}

.gf-review-author {
    margin-bottom: 10px;
    color: #17171c;
    font-size: 1.375rem;
    font-weight: 700;
}

.gf-review-stars {
    margin-bottom: 22px;
    color: #ff9700;
    font-size: 1.375rem;
    letter-spacing: 2px;
}

.gf-review-card p {
    margin: 0;
    color: #17171c;
    font-size: 1.175rem;
    line-height: 1.4;
}


/* TABLET */

@media (max-width: 1199px) {

    .gf-product-gallery {
        height: 560px;
    }

    .gf-product-zoom {
        height: 560px;
    }

    .gf-product-thumb {
        width: 95px;
        height: 145px;
        border-radius: 24px;
    }

    .gf-product-thumbs-wrap {
        width: 95px;
    }

}


/* MOBILE */

@media (max-width: 991px) {

    .gf-product-gallery {
        height: auto;
    }

    .gf-product-thumbs-wrap {
        order: 2;
        width: 100%;
        padding: 0;
    }

    .gf-product-gallery {
        display: flex;
        flex-direction: column;
    }

    .gf-product-thumbs {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;

        flex-direction: row;

        padding: 5px 0 10px;
        scroll-behavior: smooth;
    }

    .gf-product-thumb {
        width: 85px;
        height: 105px;
    }

    .gf-thumb-arrow {
        display: none;
    }

    .gf-product-main-image {
        order: 1;
    }

    .gf-product-zoom {
        height: 500px;
        border-radius: 30px;
    }

    .gf-product-content {
        padding-top: 5px;
    }

}


/* SMALL MOBILE */

@media (max-width: 575px) {

    .gf-product-details {
        padding-top: 12px;
        padding-bottom: 50px;
    }

    .gf-product-breadcrumb {
        margin-bottom: 20px;
        overflow: hidden;
        white-space: nowrap;
        font-size: 12px;
    }

    .gf-product-zoom {
        height: 390px;
        border-radius: 24px;
    }

    .gf-product-zoom:hover img {
        transform: none;
    }

    .gf-product-content h1 {
        font-size: 20px;
    }

    .gf-product-short {
        padding: 22px;
        border-radius: 24px;
    }

    .gf-product-buy {
        width: 100%;
    }

    .gf-quantity {
        flex-shrink: 0;
    }

    .gf-add-cart {
        flex: 1;
        padding: 0 20px;
    }

    .gf-description-toggle {
        padding: 22px;
        border-radius: 24px;
    }

    .gf-description-content {
        padding: 22px;
    }

    .gf-reviews > h2 {
        margin-bottom: 25px;
        font-size: 22px;
    }

    .gf-review-card {
        min-height: auto;
    }

}
.gf-ralated-product{
  width: 100%;
  padding: 0 3rem;
 
}
.gf-paralax-bg{
  background-image: url("../images/shop-bg.png");
  background-repeat: no-repeat;
  background-position: center; 
  background-size: cover; 
  border-radius: 60px;
  width: 100%;
  padding: 60px;
  margin:0 auto;
}
/* Tablet */

@media (max-width: 1199px) {  
.gf-ralated-product {padding: 0 1rem}
.gf-paralax-bg{padding: 20px;}
}


/* Mobile */

@media (max-width: 767px) {   
.gf-ralated-product {padding: 0}
.gf-paralax-bg{padding: 20px;}
.gf-add-cart{height: 50px;font-size: 16px;}
}


/* Small mobile */

@media (max-width: 575px) {
  .gf-ralated-product {padding: 0}
  .gf-paralax-bg{padding: 20px;}
  .gf-variant{min-width: 80px;  height: 44px;  font-size: 1rem;}
  .gf-product-price{font-size: 1.5rem;}
  .gf-quantity{height: 50px;}
  .gf-add-cart{height: 50px;font-size: 16px;}
  .gf-review-author, .gf-review-card p, .gf-product-short p{font-size: 1rem;}
  .btn-footer-pink, .btn-footer-purple{font-size: 1rem;  padding: 10px 20px;}
  .gf-cart-foot {  padding: 26px 26px 50px;}
  .gf-select2 select{font-size: 1rem;}
  .gf-select2{width: auto;}

}
/* =========================================================
   GLOBAL FASHION CART
   UNIQUE CLASS SYSTEM: gfc-
========================================================= */

.gfc-page {
    width: 100%;
    background: #eef8fa;
    color: #171717;
    overflow: hidden;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.gfc-page .gfc-breadcrumb {
    width: 100%;
    padding: 25px 0;
    background: #eef8fa;
    border-bottom: 1px solid rgba(0, 0, 0, .035);
}

.gfc-page .gfc-breadcrumb a {
    color: #ed2c88;
    font-size: 14px;
    text-decoration: none;
}

.gfc-page .gfc-breadcrumb span {
    margin: 0 8px;
    color: #777;
}

.gfc-page .gfc-breadcrumb strong {
    color: #202020;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.gfc-section {
    padding: 65px 0 100px;
}


/* =========================================================
   HEADING
========================================================= */

.gfc-heading {
    margin-bottom: 45px;
}

.gfc-heading h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
}

.gfc-heading h1 span {
    color: #7137c7;
}

.gfc-heading p {
    margin: 17px 0 0;
    color: #777;
    font-size: 14px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.gfc-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, .95fr);
    gap: 25px;
    align-items: start;
}


/* =========================================================
   PRODUCTS BOX
========================================================= */

.gfc-products-box {
    width: 100%;
    overflow: hidden;
    border: 1px solid #dfe7e8;
    border-radius: 32px;
    background: #fff;
}


/* =========================================================
   PRODUCT HEADER
========================================================= */

.gfc-products-header {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 120px 145px 45px;
    align-items: center;
    min-height: 55px;
    padding: 0 28px;
    background: #f0fafc;
    border-bottom: 1px solid #e5eaeb;
}

.gfc-products-header div {
    color: #4d5557;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   PRODUCT ROW
========================================================= */

.gfc-product {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 120px 145px 45px;
    align-items: center;
    min-height: 175px;
    padding: 24px 28px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

.gfc-product:last-of-type {
    border-bottom: 0;
}


/* =========================================================
   PRODUCT MAIN
========================================================= */

.gfc-product-main {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 20px;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.gfc-product-image {
    position: relative;
    width: 105px;
    min-width: 105px;
    height: 125px;
    overflow: hidden;
    border-radius: 20px;
    background: #eef8fa;
}

.gfc-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gfc-product-image img[src=""] {
    display: none;
}


/* =========================================================
   PRODUCT DETAILS
========================================================= */

.gfc-product-details {
    min-width: 0;
}

.gfc-product-details h3 {
    max-width: 250px;
    margin: 0 0 7px;
    color: #171717;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.gfc-product-details p {
    margin: 0;
    color: #999;
    font-size: 12px;
}


/* =========================================================
   PRICE
========================================================= */

.gfc-product-price {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   QUANTITY
========================================================= */

.gfc-product-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    height: 42px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
}

.gfc-product-quantity button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 15px;
    cursor: pointer;
}

.gfc-product-quantity button:hover {
    color: #7137c7;
    background: #f4fbfc;
}

.gfc-product-quantity input {
    width: 46px;
    height: 40px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    -moz-appearance: textfield;
}

.gfc-product-quantity input::-webkit-outer-spin-button,
.gfc-product-quantity input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}


/* =========================================================
   REMOVE
========================================================= */

.gfc-product-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #aaa;
    cursor: pointer;
    transition: all .25s ease;
}

.gfc-product-remove:hover {
    background: #fff0f6;
    color: #ed2c88;
}


/* =========================================================
   CART ACTIONS
========================================================= */

.gfc-cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
    padding: 18px 28px;
    border-top: 1px solid #e7e7e7;
}

.gfc-continue {
    display: inline-flex;
    align-items: center;
    color: #7137c7;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.gfc-continue i {
    margin-right: 8px;
}

.gfc-continue:hover {
    color: #ed2c88;
}

.gfc-update {
    height: 42px;
    padding: 0 23px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    color: #222;
    font-size: 12px;
    font-weight: 600;
}

.gfc-update:hover {
    border-color: #7137c7;
    background: #7137c7;
    color: #fff;
}


/* =========================================================
   SHIPPING
========================================================= */

.gfc-shipping {
    margin-top: 18px;
    padding: 20px 23px;
    border-radius: 22px;
    background: #fff;
}

.gfc-shipping-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #666;
    font-size: 13px;
}

.gfc-shipping-text i {
    color: #7137c7;
    font-size: 17px;
}

.gfc-shipping-text strong {
    color: #7137c7;
}

.gfc-shipping-bar {
    width: 100%;
    height: 6px;
    overflow: hidden;
    border-radius: 50px;
    background: #eef8fa;
}

.gfc-shipping-bar span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        #7137c7,
        #ed2c88
    );
}


/* =========================================================
   SUMMARY
========================================================= */

.gfc-summary {
    position: sticky;
    top: 110px;
    width: 100%;
    padding: 32px;
    border-radius: 32px;
    background: #fff;
}

.gfc-summary h2 {
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}


/* =========================================================
   SUMMARY ROWS
========================================================= */

.gfc-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 49px;
    border-bottom: 1px solid #e3e7e8;
    color: #666;
    font-size: 14px;
}

.gfc-summary-row strong {
    color: #222;
    font-weight: 600;
}


/* =========================================================
   COUPON
========================================================= */

.gfc-coupon {
    padding: 20px 0;
}

.gfc-coupon label {
    display: block;
    margin-bottom: 9px;
    color: #444;
    font-size: 12px;
    font-weight: 600;
}

.gfc-coupon-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gfc-coupon-form input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 17px;
    border: 1px solid #ddd;
    border-radius: 50px;
    outline: none;
    background: #fff;
    font-size: 12px;
}

.gfc-coupon-form input:focus {
    border-color: #7137c7;
}

.gfc-coupon-form button {
    height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 50px;
    background: #202020;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.gfc-coupon-form button:hover {
    background: #7137c7;
}


/* =========================================================
   TOTAL
========================================================= */

.gfc-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    border-top: 1px solid #ddd;
}

.gfc-total span {
    color: #222;
    font-size: 15px;
    font-weight: 700;
}

.gfc-total strong {
    color: #7137c7;
    font-size: 25px;
    font-weight: 700;
}


/* =========================================================
   CHECKOUT
========================================================= */

.gfc-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 53px;
    border-radius: 50px;
    background: #7137c7;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.gfc-checkout:hover {
    background: #ed2c88;
    color: #fff;
    transform: translateY(-2px);
}

.gfc-checkout i {
    font-size: 14px;
}


/* =========================================================
   SECURE
========================================================= */

.gfc-secure {
    margin-top: 13px;
    color: #999;
    font-size: 11px;
    text-align: center;
}

.gfc-secure i {
    margin-right: 5px;
    color: #7137c7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .gfc-layout {
        grid-template-columns: minmax(0, 1.7fr) minmax(300px, .9fr);
        gap: 20px;
    }

    .gfc-products-header,
    .gfc-product {
        grid-template-columns: minmax(240px, 1fr) 90px 120px 35px;
    }

    .gfc-product {
        padding: 22px;
    }

    .gfc-products-header {
        padding: 0 22px;
    }

    .gfc-product-image {
        width: 90px;
        min-width: 90px;
        height: 110px;
    }

    .gfc-product-main {
        gap: 14px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {

    .gfc-section {
        padding: 55px 0 75px;
    }

    .gfc-layout {
        grid-template-columns: 1fr;
    }

    .gfc-summary {
        position: static;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gfc-section {
        padding: 45px 0 65px;
    }

    .gfc-heading {
        margin-bottom: 30px;
    }

    .gfc-heading h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .gfc-heading p {
        line-height: 1.6;
    }

    .gfc-products-box {
        border-radius: 24px;
    }


    /* Hide desktop header */

    .gfc-products-header {
        display: none;
    }


    /* Product becomes 2-row */

    .gfc-product {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "main remove"
            "price quantity";
        gap: 18px 12px;
        padding: 20px 16px;
    }

    .gfc-product-main {
        grid-area: main;
    }

    .gfc-product-price {
        grid-area: price;
        align-self: center;
    }

    .gfc-product-quantity {
        grid-area: quantity;
        justify-self: end;
    }

    .gfc-product-remove {
        grid-area: remove;
        justify-self: end;
    }

    .gfc-product-image {
        width: 75px;
        min-width: 75px;
        height: 90px;
        border-radius: 15px;
    }

    .gfc-product-details h3 {
        max-width: none;
        font-size: 13px;
        line-height: 1.4;
    }

    .gfc-product-details p {
        font-size: 11px;
    }


    .gfc-cart-actions {
        flex-direction: column;
        gap: 15px;
        padding: 18px 16px;
    }

    .gfc-update {
        width: 100%;
    }

    .gfc-continue {
        justify-content: center;
    }


    .gfc-shipping {
        border-radius: 19px;
        padding: 18px;
    }


    .gfc-summary {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .gfc-summary h2 {
        font-size: 27px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .gfc-page .gfc-breadcrumb {
        padding: 18px 0;
    }

    .gfc-heading h1 {
        font-size: 43px;
    }

    .gfc-product {
        padding: 18px 14px;
    }

    .gfc-product-main {
        gap: 11px;
    }

    .gfc-product-image {
        width: 68px;
        min-width: 68px;
        height: 82px;
    }

    .gfc-product-details h3 {
        font-size: 12px;
    }

    .gfc-product-price {
        font-size: 13px;
    }

    .gfc-product-quantity {
        width: 112px;
    }

    .gfc-product-quantity button {
        width: 34px;
    }

    .gfc-product-quantity input {
        width: 42px;
    }

}
 /* =====================================================
           GLOBAL FASHION CHECKOUT
           UNIQUE CLASS SYSTEM: gfo-
        ===================================================== */


        .gfo-page {
            width: 100%;
            min-height: 100vh;
            background: #eef8fa;
            color: #181818;
            overflow: hidden;
        }


        .gfo-page * {
            box-sizing: border-box;
        }


        /* =====================================================
           BREADCRUMB
        ===================================================== */

        .gfo-breadcrumb {
            padding: 25px 0;
            background: #eef8fa;
            border-bottom: 1px solid rgba(0,0,0,.035);
        }

        .gfo-breadcrumb a {
            color: #ed2c88;
            font-size: 14px;
            text-decoration: none;
        }

        .gfo-breadcrumb span {
            margin: 0 8px;
            color: #777;
        }

        .gfo-breadcrumb strong {
            color: #222;
            font-size: 14px;
            font-weight: 600;
        }


        /* =====================================================
           MAIN
        ===================================================== */

        .gfo-section {
            padding: 65px 0 100px;
        }


        /* =====================================================
           PAGE HEADING
        ===================================================== */

        .gfo-heading {
            margin-bottom: 45px;
        }

        .gfo-heading h1 {
            margin: 0;
            font-family:
                Georgia,
                "Times New Roman",
                serif;
            font-size: clamp(48px, 5vw, 70px);
            font-weight: 400;
            line-height: 1;
            letter-spacing: -2px;
        }

        .gfo-heading h1 span {
            color: #7137c7;
        }

        .gfo-heading p {
            margin: 17px 0 0;
            color: #777;
            font-size: 14px;
        }


        /* =====================================================
           CHECKOUT LAYOUT
        ===================================================== */

        .gfo-layout {
            display: grid;
            grid-template-columns:
                minmax(0, 1.55fr)
                minmax(350px, .85fr);

            gap: 28px;

            align-items: start;
        }


        /* =====================================================
           LEFT CONTENT
        ===================================================== */

        .gfo-main {
            min-width: 0;
        }


        /* =====================================================
           CHECKOUT CARD
        ===================================================== */

        .gfo-card {
            width: 100%;
            margin-bottom: 22px;
            padding: 30px;
            border-radius: 30px;
            background: #fff;
        }

        .gfo-card:last-child {
            margin-bottom: 0;
        }


        /* =====================================================
           CARD TITLE
        ===================================================== */

        .gfo-card-title {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 25px;
        }

        .gfo-card-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            flex: 0 0 32px;
            border-radius: 50%;
            background: #7137c7;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
        }

        .gfo-card-title h2 {
            margin: 0;
            font-family:
                Georgia,
                "Times New Roman",
                serif;
            font-size: 27px;
            font-weight: 400;
        }


        /* =====================================================
           FORM GRID
        ===================================================== */

        .gfo-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 17px;
        }

        .gfo-field-full {
            grid-column: 1 / -1;
        }


        /* =====================================================
           FORM FIELD
        ===================================================== */

        .gfo-field {
            min-width: 0;
        }

        .gfo-field label {
            display: block;
            margin-bottom: 8px;
            color: #454545;
            font-size: 12px;
            font-weight: 600;
        }

        .gfo-required {
            color: #ed2c88;
        }

        .gfo-field input,
        .gfo-field select,
        .gfo-field textarea {
            display: block;
            width: 100%;
            border: 1px solid #ddd;
            border-radius: 13px;
            outline: none;
            background: #fff;
            color: #222;
            font-family: inherit;
            font-size: 13px;
            transition:
                border-color .2s ease,
                box-shadow .2s ease;
        }

        .gfo-field input,
        .gfo-field select {
            height: 48px;
            padding: 0 15px;
        }

        .gfo-field textarea {
            min-height: 110px;
            padding: 14px 15px;
            resize: vertical;
        }

        .gfo-field input:focus,
        .gfo-field select:focus,
        .gfo-field textarea:focus {
            border-color: #7137c7;
            box-shadow:
                0 0 0 3px rgba(113,55,199,.07);
        }


        /* =====================================================
           CHECKBOX
        ===================================================== */

        .gfo-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 18px;
        }

        .gfo-checkbox input {
            width: 17px;
            height: 17px;
            margin-top: 1px;
            accent-color: #7137c7;
        }

        .gfo-checkbox label {
            margin: 0;
            color: #666;
            font-size: 12px;
            line-height: 1.5;
        }


        /* =====================================================
           DELIVERY OPTIONS
        ===================================================== */

        .gfo-delivery-list {
            display: grid;
            gap: 12px;
        }

        .gfo-delivery-option {
            position: relative;
        }

        .gfo-delivery-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .gfo-delivery-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            padding: 17px 18px;
            border: 1px solid #ddd;
            border-radius: 16px;
            background: #fff;
            cursor: pointer;
            transition: all .2s ease;
        }

        .gfo-delivery-option input:checked
        + .gfo-delivery-label {
            border-color: #7137c7;
            background: #faf7ff;
            box-shadow:
                0 0 0 2px rgba(113,55,199,.07);
        }

        .gfo-delivery-left {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .gfo-delivery-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #eef8fa;
            color: #7137c7;
            font-size: 17px;
        }

        .gfo-delivery-name {
            color: #222;
            font-size: 13px;
            font-weight: 600;
        }

        .gfo-delivery-description {
            margin-top: 3px;
            color: #999;
            font-size: 11px;
        }

        .gfo-delivery-price {
            color: #222;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
        }


        /* =====================================================
           PAYMENT
        ===================================================== */

        .gfo-payment-list {
            display: grid;
            gap: 10px;
        }

        .gfo-payment-option {
            position: relative;
        }

        .gfo-payment-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .gfo-payment-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            min-height: 62px;
            padding: 15px 18px;
            border: 1px solid #ddd;
            border-radius: 15px;
            background: #fff;
            cursor: pointer;
            transition: all .2s ease;
        }

        .gfo-payment-option input:checked
        + .gfo-payment-label {
            border-color: #7137c7;
            background: #faf7ff;
        }

        .gfo-payment-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .gfo-payment-left i {
            color: #7137c7;
            font-size: 19px;
        }

        .gfo-payment-left span {
            font-size: 13px;
            font-weight: 600;
        }

        .gfo-payment-icons {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .gfo-payment-icons span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 23px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #fff;
            color: #555;
            font-size: 8px;
            font-weight: 700;
        }


        /* =====================================================
           CARD PAYMENT
        ===================================================== */

        .gfo-card-payment {
            display: none;
            margin-top: 18px;
            padding: 20px;
            border-radius: 17px;
            background: #f7fbfc;
        }

        .gfo-card-payment.is-active {
            display: block;
        }


        /* =====================================================
           ORDER NOTES
        ===================================================== */

        .gfo-notes {
            margin-top: 20px;
        }


        /* =====================================================
           RIGHT SUMMARY
        ===================================================== */

        .gfo-summary {
            position: sticky;
            top: 105px;
            padding: 30px;
            border-radius: 30px;
            background: #fff;
        }

        .gfo-summary-title {
            margin: 0 0 25px;
            font-family:
                Georgia,
                "Times New Roman",
                serif;
            font-size: 30px;
            font-weight: 400;
        }


        /* =====================================================
           ORDER PRODUCTS
        ===================================================== */

        .gfo-order-products {
            display: grid;
            gap: 17px;
            padding-bottom: 22px;
            border-bottom: 1px solid #e5e5e5;
        }

        .gfo-order-product {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .gfo-order-image {
            position: relative;
            width: 62px;
            height: 72px;
            flex: 0 0 62px;
            overflow: hidden;
            border-radius: 13px;
            background: #eef8fa;
        }

        .gfo-order-image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gfo-order-quantity {
            position: absolute;
            top: -5px;
            right: -5px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #7137c7;
            color: #fff;
            font-size: 9px;
            font-weight: 700;
        }

        .gfo-order-info {
            min-width: 0;
            flex: 1;
        }

        .gfo-order-info h3 {
            margin: 0 0 4px;
            color: #222;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
        }

        .gfo-order-info p {
            margin: 0;
            color: #999;
            font-size: 10px;
        }

        .gfo-order-price {
            color: #222;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }


        /* =====================================================
           COUPON
        ===================================================== */

        .gfo-coupon {
            padding: 20px 0;
            border-bottom: 1px solid #e5e5e5;
        }

        .gfo-coupon label {
            display: block;
            margin-bottom: 8px;
            color: #444;
            font-size: 12px;
            font-weight: 600;
        }

        .gfo-coupon-form {
            display: flex;
            gap: 7px;
        }

        .gfo-coupon-form input {
            width: 100%;
            min-width: 0;
            height: 43px;
            padding: 0 14px;
            border: 1px solid #ddd;
            border-radius: 50px;
            outline: none;
            font-size: 12px;
        }

        .gfo-coupon-form input:focus {
            border-color: #7137c7;
        }

        .gfo-coupon-form button {
            height: 43px;
            padding: 0 17px;
            border: 0;
            border-radius: 50px;
            background: #222;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
        }

        .gfo-coupon-form button:hover {
            background: #7137c7;
        }


        /* =====================================================
           SUMMARY ROWS
        ===================================================== */

        .gfo-summary-rows {
            padding-top: 10px;
        }

        .gfo-summary-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 43px;
            color: #666;
            font-size: 13px;
        }

        .gfo-summary-row strong {
            color: #222;
            font-weight: 600;
        }


        /* =====================================================
           TOTAL
        ===================================================== */

        .gfo-grand-total {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
            padding-top: 18px;
            border-top: 1px solid #ddd;
        }

        .gfo-grand-total span {
            color: #222;
            font-size: 15px;
            font-weight: 700;
        }

        .gfo-grand-total strong {
            color: #7137c7;
            font-size: 27px;
            font-weight: 700;
        }


        /* =====================================================
           PLACE ORDER
        ===================================================== */

        .gfo-place-order {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            height: 55px;
            margin-top: 22px;
            border: 0;
            border-radius: 50px;
            background: #7137c7;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition:
                background .25s ease,
                transform .25s ease,
                box-shadow .25s ease;
        }

        .gfo-place-order:hover {
            background: #ed2c88;
            color: #fff;
            transform: translateY(-2px);
            box-shadow:
                0 10px 25px rgba(113,55,199,.18);
        }


        /* =====================================================
           SECURITY
        ===================================================== */

        .gfo-security {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            margin-top: 15px;
            color: #999;
            font-size: 10px;
            text-align: center;
        }

        .gfo-security i {
            color: #7137c7;
            font-size: 14px;
        }


        /* =====================================================
           TERMS
        ===================================================== */

        .gfo-terms {
            margin-top: 17px;
            color: #888;
            font-size: 10px;
            line-height: 1.6;
            text-align: center;
        }

        .gfo-terms a {
            color: #7137c7;
            text-decoration: none;
        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 1199px) {

            .gfo-layout {
                grid-template-columns:
                    minmax(0, 1.4fr)
                    minmax(310px, .8fr);

                gap: 20px;
            }

            .gfo-card,
            .gfo-summary {
                padding: 26px;
            }

        }


        @media (max-width: 991px) {

            .gfo-section {
                padding: 55px 0 75px;
            }

            .gfo-layout {
                grid-template-columns: 1fr;
            }

            .gfo-summary {
                position: static;
            }

        }


        @media (max-width: 767px) {

            .gfo-section {
                padding: 45px 0 65px;
            }

            .gfo-heading {
                margin-bottom: 30px;
            }

            .gfo-heading h1 {
                font-size: 48px;
                letter-spacing: -1px;
            }

            .gfo-heading p {
                line-height: 1.6;
            }

            .gfo-card {
                padding: 22px 18px;
                border-radius: 24px;
            }

            .gfo-card-title {
                margin-bottom: 21px;
            }

            .gfo-card-title h2 {
                font-size: 25px;
            }

            .gfo-form-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .gfo-field-full {
                grid-column: auto;
            }

            .gfo-summary {
                padding: 23px 18px;
                border-radius: 24px;
            }

            .gfo-summary-title {
                font-size: 27px;
            }

        }


        @media (max-width: 480px) {

            .gfo-breadcrumb {
                padding: 18px 0;
            }

            .gfo-heading h1 {
                font-size: 43px;
            }

            .gfo-card {
                padding: 20px 15px;
            }

            .gfo-card-title h2 {
                font-size: 23px;
            }

            .gfo-delivery-label,
            .gfo-payment-label {
                padding: 14px;
            }

            .gfo-delivery-icon {
                width: 38px;
                height: 38px;
            }

            .gfo-delivery-description {
                display: none;
            }

        }

/* =====================================================
   GLOBAL FASHION
   ORDER CONFIRMATION
   UNIQUE CLASS SYSTEM: gfo-confirm-
===================================================== */


/* =====================================================
   BREADCRUMB
===================================================== */

.gfo-confirm-breadcrumb {
    padding: 25px 0;
    background: #eef8fa;
    border-bottom: 1px solid rgba(0,0,0,.035);
}

.gfo-confirm-breadcrumb a {
    color: #ed2c88;
    font-size: 14px;
    text-decoration: none;
}

.gfo-confirm-breadcrumb span {
    margin: 0 8px;
    color: #777;
}

.gfo-confirm-breadcrumb strong {
    color: #222;
    font-size: 14px;
    font-weight: 600;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.gfo-confirm-section {
    min-height: calc(100vh - 100px);
    padding: 70px 0 100px;
    background: #eef8fa;
}


/* =====================================================
   MAIN BOX
===================================================== */

.gfo-confirm-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 38px;
    background: #fff;
    text-align: center;
}


/* =====================================================
   SUCCESS ICON
===================================================== */

.gfo-confirm-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #f3ebff;
    color: #7137c7;

    font-size: 31px;

    box-shadow:
        0 10px 30px rgba(113,55,199,.10);
}


/* =====================================================
   HEADING
===================================================== */

.gfo-confirm-box h1 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.05;

    letter-spacing: -1.5px;
}

.gfo-confirm-box h1 span {
    color: #7137c7;
}


/* =====================================================
   MESSAGE
===================================================== */

.gfo-confirm-message {
    max-width: 550px;

    margin: 18px auto 28px;

    color: #777;

    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   ORDER NUMBER
===================================================== */

.gfo-confirm-number {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 10px 18px;

    border-radius: 50px;

    background: #eef8fa;

    font-size: 12px;
}

.gfo-confirm-number span {
    color: #777;
}

.gfo-confirm-number strong {
    color: #7137c7;
    font-weight: 700;
}


/* =====================================================
   ORDER DETAILS
===================================================== */

.gfo-confirm-details {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 38px;
    padding: 22px 0;

    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}


.gfo-confirm-detail {
    display: flex;
    align-items: center;

    gap: 10px;

    text-align: left;
}


.gfo-confirm-detail > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 50%;

    background: #eef8fa;

    color: #7137c7;

    font-size: 15px;
}


.gfo-confirm-detail div {
    min-width: 0;
}


.gfo-confirm-detail small {
    display: block;

    margin-bottom: 3px;

    color: #999;

    font-size: 9px;
}


.gfo-confirm-detail strong {
    display: block;

    color: #333;

    font-size: 10px;
    font-weight: 600;

    word-break: break-word;
}


/* =====================================================
   ORDER SUMMARY
===================================================== */

.gfo-confirm-summary {
    margin-top: 30px;

    padding: 22px;

    border-radius: 22px;

    background: #f8fcfd;

    text-align: left;
}


/* =====================================================
   SUMMARY HEADER
===================================================== */

.gfo-confirm-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom: 1px solid #e2e8e9;

    color: #555;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: .6px;
}


/* =====================================================
   PRODUCT
===================================================== */

.gfo-confirm-product {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid #e7ecec;
}


.gfo-confirm-product-left {
    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 0;
}


.gfo-confirm-product-image {
    position: relative;

    width: 60px;
    height: 68px;

    flex: 0 0 60px;

    overflow: visible;

    border-radius: 12px;

    background: #eef8fa;
}


.gfo-confirm-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 12px;
}


.gfo-confirm-product-image span {
    position: absolute;

    top: -7px;
    right: -7px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background: #7137c7;

    color: #fff;

    font-size: 9px;
    font-weight: 700;
}


.gfo-confirm-product-left > div:last-child {
    min-width: 0;
}


.gfo-confirm-product-left strong {
    display: block;

    color: #222;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.4;
}


.gfo-confirm-product-left small {
    display: block;

    margin-top: 3px;

    color: #999;

    font-size: 10px;
}


.gfo-confirm-product > strong {
    color: #222;

    font-size: 12px;

    white-space: nowrap;
}


/* =====================================================
   TOTAL
===================================================== */

.gfo-confirm-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 20px;
}


.gfo-confirm-total span {
    color: #222;

    font-size: 14px;
    font-weight: 700;
}


.gfo-confirm-total strong {
    color: #7137c7;

    font-size: 25px;
    font-weight: 700;
}


/* =====================================================
   DELIVERY MESSAGE
===================================================== */

.gfo-confirm-delivery {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-top: 25px;
    padding: 18px;

    border-radius: 16px;

    background: #fff7fb;

    text-align: left;
}


.gfo-confirm-delivery > i {
    color: #ed2c88;

    font-size: 21px;

    margin-top: 2px;
}


.gfo-confirm-delivery strong {
    display: block;

    color: #333;

    font-size: 12px;
    font-weight: 600;
}


.gfo-confirm-delivery p {
    margin: 4px 0 0;

    color: #888;

    font-size: 11px;
    line-height: 1.6;
}


/* =====================================================
   ACTIONS
===================================================== */

.gfo-confirm-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 30px;
}


.gfo-confirm-primary,
.gfo-confirm-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        all .25s ease;
}


.gfo-confirm-primary {
    gap: 9px;

    background: #7137c7;

    color: #fff;
}


.gfo-confirm-primary:hover {
    background: #ed2c88;
    color: #fff;

    transform: translateY(-2px);
}


.gfo-confirm-secondary {
    border: 1px solid #ddd;

    background: #fff;

    color: #333;
}


.gfo-confirm-secondary:hover {
    border-color: #7137c7;

    color: #7137c7;
}


/* =====================================================
   SUPPORT
===================================================== */

.gfo-confirm-support {
    margin: 20px 0 0;

    color: #999;

    font-size: 11px;
}


.gfo-confirm-support a {
    color: #7137c7;

    text-decoration: none;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .gfo-confirm-box {
        padding: 40px;
    }

    .gfo-confirm-details {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 20px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .gfo-confirm-section {
        padding: 45px 0 65px;
    }

    .gfo-confirm-box {
        padding: 30px 18px;

        border-radius: 28px;
    }

    .gfo-confirm-box h1 {
        font-size: 42px;
    }

    .gfo-confirm-message {
        font-size: 13px;
    }

    .gfo-confirm-details {
        grid-template-columns: 1fr;

        gap: 15px;

        text-align: left;
    }

    .gfo-confirm-summary {
        padding: 17px;
    }

    .gfo-confirm-actions {
        flex-direction: column;
    }

    .gfo-confirm-primary,
    .gfo-confirm-secondary {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .gfo-confirm-box h1 {
        font-size: 37px;
    }

    .gfo-confirm-number {
        gap: 7px;

        padding: 9px 13px;

        font-size: 10px;
    }

    .gfo-confirm-product {
        gap: 8px;
    }

    .gfo-confirm-product-image {
        width: 52px;
        height: 60px;
        flex-basis: 52px;
    }

    .gfo-confirm-product-left strong {
        font-size: 11px;
    }

    .gfo-confirm-total strong {
        font-size: 22px;
    }

}
/* =====================================================
   GLOBAL FASHION
   WISHLIST PAGE

   UNIQUE CLASS SYSTEM:
   gfw-
===================================================== */


/* =====================================================
   BREADCRUMB
===================================================== */

.gfw-breadcrumb {
    padding: 25px 0;

    background: #eef8fa;

    border-bottom:
        1px solid rgba(0,0,0,.035);
}

.gfw-breadcrumb a {
    color: #ed2c88;

    font-size: 14px;

    text-decoration: none;
}

.gfw-breadcrumb span {
    margin: 0 8px;

    color: #777;
}

.gfw-breadcrumb strong {
    color: #222;

    font-size: 14px;

    font-weight: 600;
}


/* =====================================================
   SECTION
===================================================== */

.gfw-section {
    padding: 65px 0 100px;

    background: #eef8fa;
}


/* =====================================================
   HEADING
===================================================== */

.gfw-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 42px;
}

.gfw-heading h1 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 5vw, 68px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}

.gfw-heading h1 span {
    color: #7137c7;
}

.gfw-heading p {
    max-width: 520px;

    margin: 17px 0 0;

    color: #777;

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================================
   WISHLIST COUNT
===================================================== */

.gfw-count {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    border-radius: 50px;

    background: #fff;

    color: #7137c7;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;
}

.gfw-count i {
    color: #ed2c88;

    font-size: 15px;
}


/* =====================================================
   PRODUCT GRID
===================================================== */

.gfw-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 30px 24px;
}


/* =====================================================
   PRODUCT
===================================================== */

.gfw-product {
    min-width: 0;
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.gfw-image {
    position: relative;

    width: 100%;

    height: 440px;

    overflow: hidden;

    border-radius: 32px;

    background: #fff;
}

.gfw-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.gfw-product:hover .gfw-image img {
    transform: scale(1.06);
}


/* =====================================================
   BADGE
===================================================== */

.gfw-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 2;

    padding: 7px 12px;

    border-radius: 50px;

    background: #7137c7;

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .3px;

    text-transform: uppercase;
}

.gfw-sale {
    background: #ed2c88;
}


/* =====================================================
   REMOVE WISHLIST
===================================================== */

.gfw-remove {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.94);

    color: #ed2c88;

    font-size: 15px;

    cursor: pointer;

    box-shadow:
        0 6px 20px rgba(0,0,0,.07);

    transition:
        all .25s ease;
}

.gfw-remove:hover {
    background: #ed2c88;

    color: #fff;

    transform: scale(1.08);
}


/* =====================================================
   ADD TO CART OVERLAY
===================================================== */

.gfw-image-action {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 15px;

    z-index: 2;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.gfw-product:hover .gfw-image-action {
    opacity: 1;

    transform: translateY(0);
}


.gfw-cart {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    height: 48px;

    border: 0;

    border-radius: 50px;

    background: #fff;

    color: #222;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0,0,0,.10);

    transition:
        background .25s ease,
        color .25s ease;
}

.gfw-cart:hover {
    background: #7137c7;

    color: #fff;
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.gfw-info {
    padding: 18px 5px 0;
}

.gfw-category {
    display: block;

    margin-bottom: 7px;

    color: #999;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.gfw-info h2 {
    margin: 0;

    color: #222;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.5;
}


/* =====================================================
   PRICE
===================================================== */

.gfw-price {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 8px;
}

.gfw-price strong {
    color: #7137c7;

    font-size: 15px;

    font-weight: 700;
}

.gfw-price del {
    color: #aaa;

    font-size: 12px;
}


/* =====================================================
   BOTTOM
===================================================== */

.gfw-bottom {
    display: flex;

    justify-content: center;

    margin-top: 50px;
}

.gfw-continue {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 23px;

    border: 1px solid #ddd;

    border-radius: 50px;

    background: #fff;

    color: #333;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        all .25s ease;
}

.gfw-continue:hover {
    border-color: #7137c7;

    color: #7137c7;

    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199px) {

    .gfw-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .gfw-image {
        height: 410px;
    }

}


/* =====================================================
   TABLET / SMALL
===================================================== */

@media (max-width: 991px) {

    .gfw-section {
        padding: 55px 0 80px;
    }

    .gfw-heading {
        align-items: flex-start;
        flex-direction: column;

        margin-bottom: 35px;
    }

    .gfw-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 28px 18px;
    }

    .gfw-image {
        height: 430px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .gfw-section {
        padding: 45px 0 65px;
    }

    .gfw-heading {
        gap: 20px;
    }

    .gfw-heading h1 {
        font-size: 46px;

        letter-spacing: -1px;
    }

    .gfw-heading p {
        margin-top: 14px;

        font-size: 13px;
    }

    .gfw-count {
        padding: 9px 15px;
    }

    .gfw-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px 12px;
    }

    .gfw-image {
        height: 300px;

        border-radius: 22px;
    }

    .gfw-info {
        padding: 13px 3px 0;
    }

    .gfw-category {
        font-size: 8px;

        margin-bottom: 5px;
    }

    .gfw-info h2 {
        font-size: 12px;
    }

    .gfw-price {
        margin-top: 6px;
    }

    .gfw-price strong {
        font-size: 13px;
    }

    .gfw-price del {
        font-size: 10px;
    }

    .gfw-remove {
        top: 10px;
        right: 10px;

        width: 34px;
        height: 34px;

        font-size: 12px;
    }

    .gfw-badge {
        top: 10px;
        left: 10px;

        padding: 6px 9px;

        font-size: 7px;
    }

    /*
       Always show Add to Cart on mobile
       because there is no hover.
    */

    .gfw-image-action {
        left: 9px;
        right: 9px;
        bottom: 9px;

        opacity: 1;

        transform: none;
    }

    .gfw-cart {
        height: 40px;

        font-size: 10px;
    }

    .gfw-bottom {
        margin-top: 38px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .gfw-heading h1 {
        font-size: 40px;
    }

    .gfw-heading p {
        font-size: 12px;
    }

    .gfw-image {
        height: 255px;

        border-radius: 19px;
    }

    .gfw-cart {
        height: 37px;

        font-size: 9px;
    }

    .gfw-cart i {
        font-size: 11px;
    }

}
/* =====================================================
   GLOBAL FASHION
   MY ACCOUNT PAGE

   UNIQUE CLASS SYSTEM:
   gfa-
===================================================== */


/* =====================================================
   BREADCRUMB
===================================================== */

.gfa-breadcrumb {
    padding: 25px 0;

    background: #eef8fa;

    border-bottom:
        1px solid rgba(0,0,0,.035);
}

.gfa-breadcrumb a {
    color: #ed2c88;

    font-size: 14px;

    text-decoration: none;
}

.gfa-breadcrumb span {
    margin: 0 8px;

    color: #777;
}

.gfa-breadcrumb strong {
    color: #222;

    font-size: 14px;

    font-weight: 600;
}


/* =====================================================
   ACCOUNT SECTION
===================================================== */

.gfa-account-section {
    padding: 60px 0 90px;

    background: #eef8fa;
}


.gfa-account-layout {
    display: grid;

    grid-template-columns: 250px minmax(0, 1fr);

    gap: 30px;

    align-items: start;
}


/* =====================================================
   SIDEBAR
===================================================== */

.gfa-account-sidebar {
    position: sticky;

    top: 105px;

    padding: 18px;

    border-radius: 28px;

    background: #fff;
}


/* =====================================================
   PROFILE
===================================================== */

.gfa-profile {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 8px 5px 20px;

    border-bottom:
        1px solid #eee;
}


.gfa-profile-avatar {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    border-radius: 50%;

    background: #7137c7;

    color: #fff;

    font-size: 12px;

    font-weight: 700;
}


.gfa-profile strong {
    display: block;

    color: #222;

    font-size: 12px;
}


.gfa-profile span {
    display: block;

    margin-top: 3px;

    color: #999;

    font-size: 9px;
}


/* =====================================================
   NAVIGATION
===================================================== */

.gfa-account-nav {
    display: flex;

    flex-direction: column;

    gap: 4px;

    padding-top: 14px;
}


.gfa-tab,
.gfa-logout {
    display: flex;

    align-items: center;

    gap: 12px;

    width: 100%;

    min-height: 47px;

    padding: 0 13px;

    border: 0;

    border-radius: 12px;

    background: transparent;

    color: #666;

    font-size: 11px;

    font-weight: 600;

    text-align: left;

    text-decoration: none;

    cursor: pointer;

    transition:
        all .25s ease;
}


.gfa-tab i,
.gfa-logout i {
    width: 20px;

    color: #999;

    font-size: 16px;

    text-align: center;
}


.gfa-tab:hover {
    background: #f7f1ff;

    color: #7137c7;
}


.gfa-tab.active {
    background: #7137c7;

    color: #fff;
}


.gfa-tab.active i {
    color: #fff;
}


/* Logout */

.gfa-logout {
    margin-top: 12px;

    border-top:
        1px solid #eee;

    border-radius: 0;

    padding-top: 17px;

    color: #ed2c88;
}


.gfa-logout i {
    color: #ed2c88;
}


/* =====================================================
   CONTENT
===================================================== */

.gfa-account-content {
    min-width: 0;
}


/* =====================================================
   PANELS
===================================================== */

.gfa-panel {
    display: none;
}

.gfa-panel.active {
    display: block;

    animation:
        gfaFade .3s ease;
}


@keyframes gfaFade {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   PANEL HEADING
===================================================== */

.gfa-panel-heading {
    margin-bottom: 32px;
}


.gfa-panel-heading > span {
    display: block;

    margin-bottom: 9px;

    color: #ed2c88;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


.gfa-panel-heading h1 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #222;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 400;

    line-height: 1;
}


.gfa-panel-heading h1 em {
    color: #7137c7;

    font-style: normal;
}


.gfa-panel-heading p {
    max-width: 550px;

    margin: 14px 0 0;

    color: #777;

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
   STATS
===================================================== */

.gfa-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-bottom: 20px;
}


.gfa-stat {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 18px;

    border-radius: 18px;

    background: #fff;
}


.gfa-stat-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    border-radius: 50%;

    background: #f5edff;

    color: #7137c7;
}


.gfa-stat strong {
    display: block;

    color: #222;

    font-size: 19px;
}


.gfa-stat span {
    display: block;

    margin-top: 2px;

    color: #999;

    font-size: 8px;
}


/* =====================================================
   CARD
===================================================== */

.gfa-card {
    padding: 24px;

    border-radius: 24px;

    background: #fff;
}


.gfa-card-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.gfa-card-heading span {
    display: block;

    color: #ed2c88;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}


.gfa-card-heading h2 {
    margin: 5px 0 0;

    color: #222;

    font-size: 17px;
}


.gfa-text-button {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    border: 0;

    background: transparent;

    color: #7137c7;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;
}


/* =====================================================
   ORDER ROW
===================================================== */

.gfa-order-row {
    display: grid;

    grid-template-columns:
        1fr 1fr auto;

    gap: 20px;

    align-items: center;

    padding: 18px;

    border-radius: 15px;

    background: #f7fbfc;
}


.gfa-order-row strong {
    display: block;

    color: #222;

    font-size: 12px;
}


.gfa-order-row span:not(.gfa-status) {
    display: block;

    margin-top: 4px;

    color: #999;

    font-size: 9px;
}


/* =====================================================
   STATUS
===================================================== */

.gfa-status {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 12px;

    border-radius: 50px;

    font-size: 8px;

    font-weight: 700;
}


.gfa-status.processing {
    background: #fff4dc;

    color: #b87500;
}


.gfa-status.shipped {
    background: #eee8ff;

    color: #7137c7;
}


.gfa-status.completed {
    background: #e5f8ef;

    color: #16834d;
}


/* =====================================================
   QUICK LINKS
===================================================== */

.gfa-quick-links {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

    margin-top: 20px;
}


.gfa-quick-links button {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 20px;

    border: 0;

    border-radius: 20px;

    background: #fff;

    text-align: left;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.gfa-quick-links button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.06);
}


.gfa-quick-links i {
    margin-bottom: 15px;

    color: #7137c7;

    font-size: 21px;
}


.gfa-quick-links strong {
    color: #222;

    font-size: 12px;
}


.gfa-quick-links span {
    margin-top: 5px;

    color: #999;

    font-size: 9px;
}


/* =====================================================
   ORDERS
===================================================== */

.gfa-orders-list {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.gfa-order-card {
    padding: 22px;

    border-radius: 22px;

    background: #fff;
}


.gfa-order-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 17px;

    border-bottom:
        1px solid #eee;
}


.gfa-order-top small,
.gfa-order-info small {
    display: block;

    margin-bottom: 5px;

    color: #aaa;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .6px;
}


.gfa-order-top strong {
    color: #222;

    font-size: 12px;
}


.gfa-order-info {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr auto;

    gap: 20px;

    align-items: center;

    padding-top: 17px;
}


.gfa-order-info strong {
    color: #333;

    font-size: 11px;
}


.gfa-view-order {
    display: block;

    align-items: center;

    gap: 6px;

    min-height: 38px;

    padding: 0 15px;

    border: 1px solid #ddd;

    border-radius: 50px;

    background: #fff;

    color: #7137c7;

    font-size: 9px;

    font-weight: 700;

    cursor: pointer;
}


/* =====================================================
   ADDRESS
===================================================== */

.gfa-address-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.gfa-address-card {
    padding: 24px;

    border-radius: 22px;

    background: #fff;
}


.gfa-address-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 17px;

    border-bottom:
        1px solid #eee;
}


.gfa-address-head > div {
    display: flex;

    align-items: center;

    gap: 9px;
}


.gfa-address-head i {
    color: #7137c7;

    font-size: 17px;
}


.gfa-address-head strong {
    color: #222;

    font-size: 12px;
}


.gfa-edit {
    border: 0;

    background: transparent;

    color: #ed2c88;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;
}


.gfa-address-body {
    padding-top: 18px;
}


.gfa-address-body > strong {
    display: block;

    color: #222;

    font-size: 12px;
}


.gfa-address-body p {
    margin: 10px 0;

    color: #777;

    font-size: 11px;

    line-height: 1.8;
}


.gfa-address-body span {
    color: #999;

    font-size: 10px;
}


/* =====================================================
   PAYMENT METHODS
===================================================== */

.gfa-payment-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.gfa-payment-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 20px;

    border-radius: 20px;

    background: #fff;
}


.gfa-payment-brand {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 12px;

    background: #f4efff;

    color: #7137c7;

    font-size: 20px;
}


.gfa-payment-details {
    flex: 1;
}


.gfa-payment-details strong {
    display: block;

    color: #222;

    font-size: 12px;
}


.gfa-payment-details span {
    display: block;

    margin-top: 4px;

    color: #999;

    font-size: 9px;
}


.gfa-default {
    padding: 6px 10px;

    border-radius: 50px;

    background: #e7f8ef;

    color: #16834d;

    font-size: 8px;

    font-weight: 700;
}


.gfa-payment-remove {
    width: 35px;
    height: 35px;

    border: 0;

    border-radius: 50%;

    background: #fff3f7;

    color: #ed2c88;

    cursor: pointer;
}


/* Add payment */

.gfa-add-payment {
    display: flex;

    align-items: center;

    gap: 14px;

    width: 100%;

    padding: 18px 20px;

    border: 1px dashed #cfc5dc;

    border-radius: 20px;

    background: transparent;

    text-align: left;

    cursor: pointer;

    transition:
        all .25s ease;
}


.gfa-add-payment:hover {
    border-color: #7137c7;

    background: #faf7ff;
}


.gfa-add-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius: 12px;

    background: #fff;

    color: #7137c7;
}


.gfa-add-payment span:nth-child(2) {
    flex: 1;
}


.gfa-add-payment strong {
    display: block;

    color: #333;

    font-size: 11px;
}


.gfa-add-payment small {
    display: block;

    margin-top: 4px;

    color: #999;

    font-size: 9px;
}


.gfa-add-payment > i {
    color: #999;

    font-size: 12px;
}


/* Security */

.gfa-secure-note {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 20px;

    color: #888;

    font-size: 9px;
}


.gfa-secure-note i {
    color: #16834d;

    font-size: 15px;
}


/* =====================================================
   ACCOUNT DETAILS
===================================================== */

.gfa-details-form {
    padding: 28px;

    border-radius: 24px;

    background: #fff;
}


.gfa-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.gfa-field {
    display: flex;

    flex-direction: column;
}


.gfa-field.gfa-full {
    grid-column: 1 / -1;
}


.gfa-field label {
    margin-bottom: 7px;

    color: #555;

    font-size: 10px;

    font-weight: 600;
}


.gfa-field input {
    width: 100%;

    height: 46px;

    padding: 0 14px;

    border: 1px solid #e2e2e2;

    border-radius: 10px;

    outline: none;

    background: #fff;

    color: #333;

    font-size: 11px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}


.gfa-field input:focus {
    border-color: #7137c7;

    box-shadow:
        0 0 0 3px rgba(113,55,199,.08);
}


.gfa-password-heading {
    margin: 35px 0 18px;

    padding-top: 25px;

    border-top:
        1px solid #eee;
}


.gfa-password-heading h2 {
    margin: 0;

    color: #222;

    font-size: 16px;
}


.gfa-password-heading p {
    margin: 6px 0 0;

    color: #999;

    font-size: 9px;
}


.gfa-save {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    min-height: 47px;

    padding: 0 23px;

    border: 0;

    border-radius: 50px;

    background: #7137c7;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition:
        all .25s ease;
}


.gfa-save:hover {
    background: #ed2c88;

    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199px) {

    .gfa-account-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .gfa-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE / TABLET
===================================================== */

@media (max-width: 991px) {

    .gfa-account-layout {
        display: block;
    }

    .gfa-account-sidebar {
        position: static;

        margin-bottom: 25px;

        padding: 15px;
    }

    .gfa-profile {
        display: none;
    }

    .gfa-account-nav {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 6px;

        padding: 0;
    }

    .gfa-tab,
    .gfa-logout {
        justify-content: center;

        min-height: 43px;

        padding: 0 7px;

        border-radius: 10px;

        text-align: center;
    }

    .gfa-tab i,
    .gfa-logout i {
        width: auto;
    }

    .gfa-tab span,
    .gfa-logout span {
        display: none;
    }

    .gfa-logout {
        margin: 0;

        border: 0;

        padding-top: 0;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .gfa-account-section {
        padding: 40px 0 65px;
    }

    .gfa-account-sidebar {
        border-radius: 20px;
    }

    .gfa-account-nav {
        grid-template-columns:
            repeat(6, 1fr);
    }

    .gfa-tab,
    .gfa-logout {
        min-height: 43px;
    }

    .gfa-panel-heading h1 {
        font-size: 43px;
    }

    .gfa-panel-heading {
        margin-bottom: 25px;
    }

    .gfa-stats {
        gap: 10px;
    }

    .gfa-stat {
        padding: 14px;
    }

    .gfa-card {
        padding: 18px;
    }

    .gfa-order-row {
        grid-template-columns:
            1fr 1fr;
    }

    .gfa-order-row .gfa-status {
        grid-column: 1 / -1;

        justify-self: start;
    }

    .gfa-quick-links {
        grid-template-columns: 1fr;
    }

    .gfa-address-grid {
        grid-template-columns: 1fr;
    }

    .gfa-order-info {
        grid-template-columns:
            1fr 1fr;
    }

    .gfa-view-order {
        justify-self: start;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .gfa-account-section {
        padding-top: 30px;
    }

    .gfa-account-nav {
        gap: 3px;
    }

    .gfa-tab,
    .gfa-logout {
        min-height: 40px;
    }

    .gfa-tab i,
    .gfa-logout i {
        font-size: 15px;
    }

    .gfa-panel-heading h1 {
        font-size: 38px;
    }

    .gfa-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gfa-stat {
        gap: 8px;

        padding: 12px;
    }

    .gfa-stat-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }

    .gfa-stat strong {
        font-size: 17px;
    }

    .gfa-card-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .gfa-order-info {
        grid-template-columns: 1fr;
    }

    .gfa-details-form {
        padding: 18px;
    }

    .gfa-form-grid {
        grid-template-columns: 1fr;
    }

    .gfa-field.gfa-full {
        grid-column: auto;
    }

    .gfa-payment-card {
        padding: 14px;
    }

    .gfa-default {
        display: none;
    }

}
/* ----------------------Sub section View order page-------------------------*/
/* View Order */
.gfa-order-section {
    padding: 70px 0 100px;
    background: #f8fcfd;
}

.gfa-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

.gfa-order-label {
    display: block;
    margin-bottom: 8px;
    color: #7137c7;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gfa-order-header h1 {
    margin: 0 0 8px;
    font-size: 42px;
    font-weight: 600;
    color: #171717;
}

.gfa-order-header p {
    margin: 0;
    color: #777;
}

.gfa-order-status span {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    background: #eee5fa;
    color: #7137c7;
    font-size: 14px;
    font-weight: 600;
}


/* Order Information */
.gfa-order-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.gfa-order-info-box {
    padding: 22px;
    background: #fff;
    border: 1px solid #edf0f1;
    border-radius: 18px;
}

.gfa-order-info-box span {
    display: block;
    margin-bottom: 8px;
    color: #888;
    font-size: 13px;
}

.gfa-order-info-box strong {
    color: #222;
    font-size: 15px;
}


/* Main Order Card */
.gfa-order-card,
.gfa-order-address {
    background: #fff;
    border: 1px solid #edf0f1;
    border-radius: 28px;
    overflow: hidden;
}

.gfa-order-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #edf0f1;
}

.gfa-order-card-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.gfa-order-card-head span {
    color: #888;
    font-size: 14px;
}


/* Products */
.gfa-order-item {
    display: grid;
    grid-template-columns: 1fr 100px 120px;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    border-bottom: 1px solid #edf0f1;
}

.gfa-order-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gfa-order-product-image {
    width: 100px;
    height: 110px;
    flex: 0 0 100px;
    overflow: hidden;
    border-radius: 18px;
    background: #f5f8f9;
}

.gfa-order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gfa-order-product-info h3 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.gfa-order-product-info p,
.gfa-order-product-info span {
    display: block;
    margin: 3px 0;
    color: #888;
    font-size: 13px;
}

.gfa-order-qty span,
.gfa-order-price span {
    display: block;
    margin-bottom: 5px;
    color: #999;
    font-size: 12px;
}

.gfa-order-qty strong,
.gfa-order-price strong {
    color: #222;
    font-size: 15px;
}


/* Summary */
.gfa-order-summary {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    padding: 25px 30px;
}

.gfa-summary-row,
.gfa-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
    color: #777;
    font-size: 14px;
}

.gfa-summary-row strong {
    color: #333;
}

.gfa-summary-total {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid #ddd;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.gfa-summary-total strong {
    color: #7137c7;
}


/* Address */
.gfa-order-bottom {
    margin-top: 25px;
}

.gfa-address-content {
    padding: 25px 30px;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.gfa-address-content strong {
    color: #222;
}

.gfa-address-content p {
    margin: 12px 0 0;
}


/* Actions */
.gfa-order-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.gfa-order-back,
.gfa-order-reorder {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.gfa-order-back {
    color: #7137c7;
    border: 1px solid #7137c7;
    background: transparent;
}

.gfa-order-back:hover {
    background: #7137c7;
    color: #fff;
}

.gfa-order-reorder {
    border: 0;
    background: #7137c7;
    color: #fff;
}

.gfa-order-reorder:hover {
    background: #5d2bab;
    transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 991px) {

    .gfa-order-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .gfa-order-header h1 {
        font-size: 34px;
    }

    .gfa-order-item {
        grid-template-columns: 1fr 70px 100px;
    }

}

@media (max-width: 767px) {

    .gfa-order-section {
        padding: 45px 0 70px;
    }

    .gfa-order-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .gfa-order-header h1 {
        font-size: 30px;
    }

    .gfa-order-status {
        margin-top: -10px;
    }

    .gfa-order-info {
        grid-template-columns: 1fr 1fr;
    }

    .gfa-order-card {
        border-radius: 20px;
    }

    .gfa-order-card-head {
        padding: 20px;
    }

    .gfa-order-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .gfa-order-product-image {
        width: 80px;
        height: 90px;
        flex-basis: 80px;
    }

    .gfa-order-qty,
    .gfa-order-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 5px;
    }

    .gfa-order-qty span,
    .gfa-order-price span {
        margin: 0;
    }

    .gfa-order-summary {
        max-width: none;
        padding: 20px;
    }

    .gfa-order-address {
        border-radius: 20px;
    }

    .gfa-order-actions {
        gap: 12px;
    }

    .gfa-order-back,
    .gfa-order-reorder {
        justify-content: center;
        flex: 1;
        padding: 0 15px;
    }

}

@media (max-width: 480px) {

    .gfa-order-info {
        grid-template-columns: 1fr;
    }

    .gfa-order-product {
        gap: 14px;
    }

    .gfa-order-product-info h3 {
        font-size: 14px;
    }

    .gfa-order-actions {
        flex-direction: column;
        align-items: stretch;
    }

}
/* Edit Address */
.gfa-address-section {
    padding: 70px 0 100px;
    background: #f8fcfd;
}

.gfa-address-heading {
    margin-bottom: 40px;
}

.gfa-address-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #7137c7;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gfa-address-heading h1 {
    margin: 0 0 10px;
    color: #171717;
    font-size: 42px;
    font-weight: 600;
}

.gfa-address-heading p {
    margin: 0;
    color: #777;
    font-size: 15px;
}


/* Address Form */
.gfa-address-form {
    height: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid #edf0f1;
    border-radius: 28px;
}

.gfa-address-form-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid #edf0f1;
}

.gfa-address-form-head span {
    display: block;
    margin-bottom: 5px;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gfa-address-form-head h2 {
    margin: 0;
    color: #222;
    font-size: 23px;
    font-weight: 600;
}

.gfa-address-form-head > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eee5fa;
    color: #7137c7;
    font-size: 20px;
}


/* Form Fields */
.gfa-address-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.gfa-address-form label small {
    color: #999;
    font-weight: 400;
}

.gfa-address-form input,
.gfa-address-form select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #e1e5e6;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #333;
    font-size: 14px;
    transition: .25s ease;
}

.gfa-address-form input:focus,
.gfa-address-form select:focus {
    border-color: #7137c7;
    box-shadow: 0 0 0 3px rgba(113, 55, 199, .08);
}


/* Save Button */
.gfa-address-save {
    width: 100%;
    height: 52px;
    margin-top: 28px;
    border: 0;
    border-radius: 50px;
    background: #7137c7;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.gfa-address-save:hover {
    background: #5d2bab;
    transform: translateY(-2px);
}


/* Bottom Action */
.gfa-address-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.gfa-address-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #7137c7;
    border-radius: 50px;
    color: #7137c7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.gfa-address-back:hover {
    background: #7137c7;
    color: #fff;
}


/* Responsive */
@media (max-width: 991px) {

    .gfa-address-section {
        padding: 55px 0 80px;
    }

    .gfa-address-heading h1 {
        font-size: 36px;
    }

    .gfa-address-form {
        padding: 26px;
    }
}

@media (max-width: 767px) {

    .gfa-address-section {
        padding: 45px 0 70px;
    }

    .gfa-address-heading {
        margin-bottom: 28px;
    }

    .gfa-address-heading h1 {
        font-size: 30px;
    }

    .gfa-address-form {
        padding: 22px;
        border-radius: 22px;
    }

    .gfa-address-form-head {
        margin-bottom: 25px;
    }

    .gfa-address-form-head h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    .gfa-address-heading h1 {
        font-size: 28px;
    }

    .gfa-address-form {
        padding: 18px;
    }

    .gfa-address-form-head > i {
        width: 42px;
        height: 42px;
    }

    .gfa-address-save {
        margin-top: 22px;
    }
}
.gf-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7f1ec;
}

.gf-404-content {
    text-align: center;
}

.gf-404-number {
    font-family: Georgia, serif;
    font-size: clamp(120px, 20vw, 240px);
    line-height: .8;
    font-weight: 600;

    color: #7137c7;
    letter-spacing: -8px;
}

.gf-404 h1 {
    margin: 40px 0 12px;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 500;
    color: #171717;
}

.gf-404 h1:first-letter {
    color: #ed2c88;
}

.gf-404 h1 span {
    color: #171717;
}

.gf-404 p {
    max-width: 520px;
    margin: 0 auto 30px;

    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

.gf-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 14px 30px;
    border-radius: 50px;

    background: #ed2c88;
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition: .3s ease;
}

.gf-404-btn:hover {
    background: #7137c7;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {

    .gf-404 {
        padding: 30px 20px;
    }

    .gf-404 h1 {
        font-size: 28px;
    }

    .gf-404 p {
        font-size: 14px;
    }

    .gf-404-number {
        letter-spacing: -4px;
    }

}
.gf-cms-page {
    background: #f4edf5;
    padding: 90px 0 110px;
}

.gf-cms-header {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.gf-cms-header span {
    color: #ed2c88;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.gf-cms-header h1 {
    margin: 15px 0;
    font-family: Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    color: #171717;
}

.gf-cms-header p {
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

.gf-cms-content {
    max-width: 950px;
    margin: auto;
    padding: 55px 65px;
    background: #fff;
    border-radius: 30px;
}

.gf-cms-content h2 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #7137c7;
}

.gf-cms-content p {
    margin: 0 0 35px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 767px) {

    .gf-cms-page {
        padding: 60px 0 70px;
    }

    .gf-cms-header {
        margin-bottom: 35px;
    }

    .gf-cms-header h1 {
        font-size: 38px;
    }

    .gf-cms-header p {
        font-size: 14px;
    }

    .gf-cms-content {
        padding: 35px 22px;
        border-radius: 20px;
    }

    .gf-cms-content h2 {
        font-size: 21px;
    }

    .gf-cms-content p {
        font-size: 14px;
        margin-bottom: 28px;
    }
}