:root {
      --bg-dark: #232323;
      --bg-light: #ebedf4;
      --text: #ededed;
      --accent: #82b440;
      --highlight: #a4d35e;
      --menu-link: #dadada;
      --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
    }
    body {
      margin: 0;
      font-family: var(--font-main);
      background: var(--bg-light);
      color: var(--text);
      font-size: 13px;
      letter-spacing: 0.01em;
    }
	
	 a {
     text-decoration: none;
    }
	
    header {
      background: var(--bg-dark);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 999;
      font-family: var(--font-main);
    }
    .top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 26px 0 26px;
      min-height: 44px;
      position: relative;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo-icon {
      font-size: 1.25rem;
      color: var(--accent);
      margin-right: 4px;
      font-weight: 700;
      text-shadow: 0 1px 5px #314d2342;
    }
    .logo-text {
      font-size: 1.01rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #fff;
      font-family: var(--font-main);
    }
    .logo-market {
      color: #c4c4c4;
      font-weight: 400;
      letter-spacing: 0.01em;
      margin-left: 1.5px;
      font-size: 0.98rem;
    }
    nav {
      flex: 1;
      margin-left: 32px;
    }
    .menu {
      display: flex;
      align-items: center;
      gap: 21px;
      font-size: 0.96rem;
      letter-spacing: 0.01em;
    }
    .menu li {
      list-style: none;
    }
    .menu a {
      text-decoration: none;
      color: var(--menu-link);
      font-weight: 500;
      transition: color 0.14s, background 0.15s;
      position: relative;
      padding: 3px 0;
      display: inline-block;
      font-family: var(--font-main);
      font-size: 0.96em;
      border-radius: 2.5px;
    }
    .menu a.active,
    .menu a:hover {
      color: var(--accent);
      font-weight: 600;
      background: rgba(130, 180, 64, 0.06);
    }
    .top-links {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.97rem;
      font-family: var(--font-main);
    }
    .top-links a {
      color: #b0b0b0;
      text-decoration: none;
      margin-left: 8px;
      transition: color 0.16s, background 0.13s;
      font-weight: 500;
      font-size: 0.96em;
      border-radius: 2.5px;
      padding: 2.5px 7px;
      letter-spacing: 0.01em;
    }
    .top-links a:hover {
      color: var(--accent);
      background: rgba(130, 180, 64, 0.10);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 140px;
    }
    .sign-in-btn, .signup-btn {
      background: none;
      color: #dadada;
      border: none;
      border-radius: 5px;
      padding: 5px 13px;
      margin-left: 7px;
      font-size: 0.96rem;
      font-family: var(--font-main);
      font-weight: 600;
      cursor: pointer;
      transition: background 0.16s, color 0.15s;
      letter-spacing: 0.01em;
      outline: none;
    }
    .sign-in-btn:hover {
      background: #303d29;
      color: var(--accent);
    }
    .signup-btn {
      background: linear-gradient(90deg, #3e4b2f 30%, #82b440 100%);
      color: #fff;
      margin-left: 10px;
      box-shadow: 0 1px 5px #22370122;
      transition: background 0.16s, color 0.15s;
    }
    .signup-btn:hover {
      background: linear-gradient(90deg, #82b440 70%, #3e4b2f 100%);
      color: #fff;
    }

    
    /* --- MOBILE MENU --- */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(20,22,23, 0.92);
      z-index: 2000;
      transition: background 0.2s;
    }
    .mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      width: 82vw;
      max-width: 320px;
      height: 100vh;
      background: #181818;
      box-shadow: 0 0 30px #0006;
      z-index: 3000;
      padding-top: 0;
      padding-left: 0;
      animation: menuSlide .22s;
      min-width: 180px;
    }
    @keyframes menuSlide {
      from {transform:translateX(-80px);opacity:0}
      to {transform:translateX(0);opacity:1}
    }
    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px 12px 18px;
      border-bottom: 1px solid #232323;
      background: #1a1a1a;
    }
    .mobile-menu-logo {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      font-family: var(--font-main);
    }
    .mobile-menu-logo .logo-icon {
      font-size: 1.12rem;
      margin-right: 2px;
    }
    .mobile-auth-buttons {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .mobile-signin,
    .mobile-signup {
      font-family: var(--font-main);
      font-size: 0.97rem;
      padding: 4px 13px;
      border: none;
      border-radius: 5px;
      margin-left: 0;
      cursor: pointer;
      transition: background 0.15s, color 0.14s;
      font-weight: 500;
      outline: none;
    }
    .mobile-signin {
      background: none;
      color: #dadada;
    }
    .mobile-signin:hover {
      background: #303d29;
      color: var(--accent);
    }
    .mobile-signup {
      background: linear-gradient(90deg, #3e4b2f 30%, #82b440 100%);
      color: #fff;
      font-weight: 600;
      margin-left: 6px;
    }
    .mobile-signup:hover {
      background: linear-gradient(90deg, #82b440 70%, #3e4b2f 100%);
      color: #fff;
    }
    .mobile-menu-list {
      padding: 10px 0 0 0;
      margin: 0;
      list-style: none;
    }
    .mobile-menu-list li {
      border-bottom: 1px solid #232323;
    }
    .mobile-menu-list a {
      display: block;
      color: #e3e3e3;
      padding: 15px 20px;
      text-decoration: none;
      font-size: 0.98rem;
      font-family: var(--font-main);
      letter-spacing: 0.01em;
      transition: background 0.14s, color 0.13s;
    }
    .mobile-menu-list a.active,
    .mobile-menu-list a:hover {
      background: #222;
      color: var(--accent);
    }
    .mobile-menu-close {
      background: none;
      border: none;
      color: #bbb;
      font-size: 1.35rem;
      cursor: pointer;
      padding: 4px 6px;
      margin-left: 7px;
      transition: color 0.15s;
    }
    .mobile-menu-close:hover {
      color: #fff;
    }
	
	.hamburger {
      display: none;
      flex-direction: column;
      gap: 3px;
      cursor: pointer;
      margin-left: 8px;
      width: 26px;
      height: 26px;
      justify-content: center;
      align-items: center;
    }
    .hamburger span {
      display: block;
      height: 3px;
      width: 22px;
      background: #fff;
      border-radius: 2px;
      transition: 0.2s;
    }
    @media (max-width: 750px) {
      nav { display: none; }
      .hamburger {
        display: flex;
      }
      .header-actions {
        gap: 5px;
        min-width: 0;
      }
      .auth-buttons {
        gap: 5px;
      }
	  
	  .mylogo {
       width:100px
      }
      .sign-in-btn, .signup-btn {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 18px;
         
      }
    }
	  
    /* Responsive changes */
    @media (max-width: 900px) {
      .top-bar { padding-left: 8px; padding-right: 8px; }
      nav { margin-left: 7px;}
    }
    @media (max-width: 750px) {
      .menu, .top-links, .auth-buttons { display: none; }
       
      .top-bar { padding: 11px 5vw 0 5vw;}
      .logo-text { font-size: 0.92rem; }
      
    }
    @media (min-width: 751px) {
      .mobile-menu-overlay { display: none !important; }
    }
	
	@media (max-width: 500px) {
      .top-bar {
        padding: 10px 2vw 0 2vw;
      }
      .logo { font-size: 0.93rem; }
      .auth-buttons .sign-in-btn, .auth-buttons .signup-btn {
        font-size: 0.95rem;
        padding: 5px 7px;
      }
    }
	
	. 
      .sign-in-btn, .signup-btn {
        padding: 6px 12px;
        font-size: 0.98rem;
        min-width: 78px;
        height: 34px;
      }
    }
    @media (max-width: 430px) {
      .logo-icon { font-size: 0.83rem; }
      .logo-text { font-size: 0.71rem; }
    }


 .hero-section {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      max-width: 1440px;
      margin: 0 auto;
      padding: 90px 5vw 0 5vw;
      
      gap: 36px;
    }
    .hero-content {
       
      max-width: 600px;
      min-width: 280px;
     
      border-radius: 20px;
      
      border: 1.5px solid #eef0f3;
      padding: 46px 36px 38px 36px;
      margin-bottom: 30px;
      backdrop-filter: blur(2px);
      position: relative;
      z-index: 2;
       
    }
     
    .hero-title {
      font-size: 2.3rem;
      font-weight: 700;
      line-height: 1.17;
      margin-bottom: 20px;
      color: #21262c;
      letter-spacing: -0.5px;
    }
    .hero-desc {
      font-size: 1.09rem;
      color: #555d70;
      margin-bottom: 42px;
      max-width: 550px;
      line-height: 1.7;
    }
    .search-bar-wrap {
      margin-bottom: 20px;
      max-width: 700px;
	  box-shadow: 0 8px 36px rgba(40, 60, 90, 0.12), 0 2px 8px rgba(110, 120, 180, 0.07);
	  transition: box-shadow 0.2s;
    }
    .search-bar {
      display: flex;
      align-items: center;
      background: rgba(245, 247, 252, 0.85);
      border-radius: 14px;
      box-shadow: 0 4px 24px rgba(127, 194, 65, 0.14), 0 2px 10px rgba(80,120,170,0.06);
      border: 1.7px solid #d9e7dc;
      padding: 0 12px 0 20px;
      min-height: 60px;
      width: 100%;
      max-width: 600px;
      position: relative;
      transition: box-shadow 0.18s, border 0.15s;
    }
    .search-bar input {
      border: none;
      outline: none;
      background: #f8fbf6;
      font-size: 1.16rem;
      color: #465366;
      flex: 1;
      font-family: inherit;
      padding: 12px 8px 12px 0;
      border-radius: 8px;
      transition: background 0.15s, box-shadow 0.15s;
    }
    .search-bar input:focus {
      background: #fff;
     
    }
    .search-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #7fc241 85%, #90d442 100%);
      border: none;
      border-radius: 8px;
      width: 104px;
      height: 48px;
      margin-left: 18px;
      cursor: pointer;
      font-size: 1.06rem;
      font-weight: 600;
      color: #fff;
      transition: background 0.16s, box-shadow 0.16s;
      gap: 8px;
      box-shadow: 0 2px 10px rgba(127, 194, 65, 0.13);
    }
    .search-btn:hover, .search-btn:focus {
      background: linear-gradient(90deg, #68a736 90%, #a4e259 100%);
      box-shadow: 0 6px 18px rgba(127, 194, 65, 0.19);
    }
    .search-btn .icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .search-btn svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: #fff;
      stroke-width: 2.2;
    }

    .hero-images {
      flex: 1 1 350px;
      min-width: 280px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      position: relative;
      height: 250px;
      margin-left: 24px;
    }
     
    @media (max-width: 1100px) {
      .hero-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-top: 38px;
      }
      .hero-images {
        width: 100%;
        min-height: 200px;
        height: 230px;
        margin: 0 auto;
        justify-content: center;
      }
      .img1 { left: 45vw; }
      .img2 { left: 35vw; }
      .img3 { left: 56vw; }
    }
    @media (max-width: 800px) {
      .hero-section {
        padding: 24px 2vw 0 2vw;
        gap: 26px;
      }
      .hero-content {
        padding: 30px 16px 26px 16px;
      }
      .hero-title { font-size: 1.33rem; }
      .hero-desc { font-size: 0.99rem; }
      .hero-images {
        height: 150px;
      }
      .img1 {
          height: 200px; top: 0; left: 37vw;
      }
      .img2 {
        width: 82px; height: 36px; top: 54px; left: 11vw;
      }
      .img3 {
        width: 61px; height: 27px; top: 90px; left: 33vw;
      }
    }
    @media (max-width: 500px) {
      .hero-section {
        padding: 7vw 0 0 0;
        gap: 18px;
        align-items: stretch;
      }
      .hero-content {
        padding: 18px 8px 14px 8px;
        border-radius: 14px;
        box-shadow: 0 2px 14px rgba(30,50,80,0.12);
        margin-bottom: 10px;
      }
      .hero-title {
        font-size: 1.05rem;
        margin-bottom: 12px;
        line-height: 1.25;
      }
      .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 18px;
      }
      .search-bar { 
        min-height: 40px; 
        padding: 4px 0 10px;
      }
      .search-btn { 
        min-width: 64px; 
        font-size: 0.97rem; 
        height: 35px; 
        margin-left: 6px;
      }
      .hero-images {
        height: 76px;
        min-width: 130px;
        margin-left: 0;
      }
      .img1 {
         height: 200px; top: 0; left: 6vw;
      }
      .img2 {
        width: 34px; height: 14px; top: 17px; left: 2vw;
      }
      .img3 {
        width: 19px; height: 9px; top: 31px; left: 19vw;
      }
    }
	
	    .categories-section {
      display: flex;
      justify-content: center;
      gap: 36px;
      padding: 36px 16px 0 16px;
      max-width: 1700px;
      margin: 0 auto;
      flex-wrap: wrap;
    }
    .category-card {
      
      border-radius: 16px;
      box-shadow: 0 4px 18px rgba(30,50,80,0.08);
      padding: 36px 26px 18px 26px;
      flex: 1 1 350px;
      max-width: 410px;
      min-width: 270px;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 30px;
      position: relative;
      transition: box-shadow 0.16s;
    }
    .category-card:hover {
      box-shadow: 0 8px 32px rgba(30,50,80,0.14);
    }
    .category-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #222b36;
      text-align: center;
    }
    .category-desc {
      font-size: 1.1rem;
      color: #7a889f;
      margin-bottom: 12px;
      text-align: center;
    }
    .category-links {
      display: flex;
      gap: 20px;
      margin-bottom: 28px;
      justify-content: center;
    }
    .category-links a {
      color: #36a7ff;
      font-size: 1rem;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.14s;
    }
    .category-links a:hover {
      color: #2d8cd8;
      text-decoration: underline;
    }
    .category-image-wrapper {
      position: relative;
      width: 97%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 6px;
    }
    .category-image {
      width: 100%;
      max-width: 335px;
      border-radius: 12px;
      box-shadow: 0 10px 34px rgba(40,50,80,0.13);
    }
    .category-icon-badge {
      position: absolute;
      top: -32px;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(100,120,170,0.14);
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 4px solid #edf1fb;
      z-index: 1;
    }
    /* Unique badge background colors per card */
    .category-card:nth-child(1) .category-icon-badge { background: #dbe4ff; }
    .category-card:nth-child(2) .category-icon-badge { background: #ffe7cc; }
    .category-card:nth-child(3) .category-icon-badge { background: #daf6fc; }

    /* Responsive styling */
    @media (max-width: 1100px) {
      .categories-section {
        flex-wrap: wrap;
        gap: 20px;
        padding-top: 24px;
      }
      .category-card {
        max-width: 380px;
        min-width: 210px;
        padding: 28px 12px 14px 12px;
      }
      .category-title {
        font-size: 1.32rem;
      }
    }
    @media (max-width: 750px) {
      .categories-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-left: 2vw;
        padding-right: 2vw;
      }
      .category-card {
        width: 99%;
        min-width: unset;
        max-width: 520px;
        margin-bottom: 14px;
      }
      .category-image {
        max-width: 95vw;
      }
    }
    @media (max-width: 480px) {
      .category-card {
        padding: 18px 4px 10px 4px;
        border-radius: 12px;
      }
      .category-title { font-size: 1rem; }
      .category-icon-badge { width: 39px; height: 39px; top: -18px; border-width: 2px;}
      .category-image { border-radius: 7px; }
    }
	
	
	    .gallery-section {
      max-width: 1250px;
      margin: 0 auto;
      padding: 40px 2vw 0 2vw;
    }
    .gallery-header {
      text-align: center;
      margin-bottom: 16px;
    }
    .gallery-title {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 18px;
      color: #222b36;
      line-height: 1.12;
      letter-spacing: -0.5px;
    }
    .gallery-desc {
      font-size: 1.18rem;
      color: #7a889f;
      max-width: 850px;
      margin: 0 auto 32px auto;
      line-height: 1.6;
      font-weight: 400;
    }
    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 26px;
      justify-content: center;
      margin-bottom: 35px;
    }
    .filter-tab {
      background: #fff;
      border: 1.8px solid #ececec;
      border-radius: 8px;
      font-size: 1.07rem;
      color: #212b36;
      font-weight: 500;
      padding: 12px 32px;
      cursor: pointer;
      transition: border 0.13s, color 0.14s;
      min-width: 120px;
      text-align: center;
      outline: none;
      box-shadow: 0 1.5px 6px rgba(80,120,160,0.07);
      letter-spacing: 0.02em;
    }
    .filter-tab.active {
      border: 2px solid #b3dc7b;
      color: #7fc241;
      background: #f7fff0;
      font-weight: 600;
      box-shadow: 0 3px 12px rgba(127, 194, 65, 0.09);
    }

    /* Product Cards */
    .products-row {
      display: flex;
      gap: 30px;
      justify-content: center;
      margin-top: 16px;
      flex-wrap: wrap;
    }
    .product-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(50,60,90,0.10);
      overflow: hidden;
      width: 320px;
      min-width: 260px;
      display: flex;
      flex-direction: column;
      margin-bottom: 24px;
      border: 1.5px solid #f1f2f6;
      transition: box-shadow 0.15s, border 0.13s;
      font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    }
    .product-card:hover {
      box-shadow: 0 8px 32px rgba(60,90,130,0.15);
      border-color: #cbeab2;
    }
    .product-thumb {
      width: 100%;
      height: 170px;
      object-fit: cover;
      display: block;
      background: #e9e9f4;
    }
    .product-body {
      padding: 18px 18px 16px 18px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 10px;
    }
    .product-title {
    font-size: 14px;
    font-weight: 700;
    color: #4d4d4d;
    margin-bottom: 2px;
    line-height: 1.34;
    letter-spacing: -0.02em;
}
    .product-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.01em;
}
    .product-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 8px;
    }
    .product-price {
      font-size: 1.23rem;
      font-weight: 400;
	  
      color: #222b36;
      letter-spacing: 0.5px;
      font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    }
    .product-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .product-icon-btn {
      background: #242127;
      border: 1.5px solid #e0e8db;
      border-radius: 8px;
      padding: 7px 12px;
      cursor: pointer;
      font-size: 12px;
      transition: background 0.13s, border 0.13s;
      display: flex;
      align-items: center;
      margin-right: 2px;
      color: #c2cad7;
    }
    .product-icon-btn:hover {
      background: #242127;
      border-color: #b3dc7b;
      color: #7fc241;
    }
    .live-preview-btn {
    background: #fff;
    border: 1.6px solid #087096;
    color: #087096 !important;
    border-radius: 2px;
    padding: 7px 17px 7px 12px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    display: flexs;

    align-items: center;
    gap: 5px;
    transition: background 0.13s, color 0.13s;
    font-family: inherit;
}
    .live-preview-btn:hover {
      background: #7fc241;
      color: #fff !important;
      border-color: #7fc241;
    }
    .icon-eye {
      width: 18px;
      height: 18px;
      display: inline-block;
      vertical-align: middle;
    }
    .icon-bag {
      width: 19px;
      height: 19px;
      display: inline-block;
      vertical-align: middle;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .products-row { gap: 18px; }
      .product-card { width: 98vw; max-width: 410px;}
      .gallery-title { font-size: 1.25rem; }
    }
    @media (max-width: 820px) {
      .gallery-section { padding: 22px 1vw 0 1vw; }
      .products-row { flex-direction: column; align-items: center;}
      .product-card { width: 97vw; max-width: 410px;}
      .filter-tabs { gap: 13px 12px; }
    }
    @media (max-width: 500px) {
      .gallery-header { margin-bottom: 4px; }
      .gallery-title { font-size: 1.02rem; margin-bottom: 9px;}
      .gallery-desc { font-size: 0.94rem; margin-bottom: 18px;}
      .filter-tab { font-size: 0.93rem; padding: 10px 10px; min-width: 82px;}
      .product-body { padding: 12px 8px 12px 8px;}
      .product-title { font-size: 0.99rem;}
      .product-card { min-width: unset; }
      .products-row { gap: 7px; }
    }
	
	    .blog-section {
      max-width: 1260px;
      margin: 40px auto 32px auto;
       
      border-radius: 22px;
      
      padding: 38px 44px 56px 44px;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .blog-header-row {
      width: 100%;
      max-width: 1060px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      background: rgba(126,194,65,0.06);
      border-radius: 17px;
      padding: 30px 38px 26px 38px;
      margin-bottom: 38px;
      box-shadow: 0 3px 20px rgba(127,194,65,0.07);
      border: 1.5px solid #e6f4d7;
      gap: 18px;
    }
    .blog-header-main {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      min-width: 320px;
    }
    .featured-badge {
      font-size: 2.1rem;
      font-weight: 700;
      letter-spacing: -1px;
      color: #212b36;
      background: linear-gradient(90deg, #e3f7ce 60%, #b6ebb2 100%);
      padding: 6px 22px 6px 15px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      box-shadow: 0 1px 8px #d9ffd1;
      margin-right: 4px;
    }
    .blog-avatar {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      background: #f5f7fd;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 7px;
      box-shadow: 0 3px 16px #d2e7fd;
      border: 2px solid #e6f4d7;
    }
    .blog-avatar img {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      object-fit: cover;
      box-shadow: 0 1px 7px #b7e5ff;
      background: #fff;
    }
    .blog-meta {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2px;
    }
    .blog-title {
      font-size: 1.32rem;
      font-weight: 600;
      color: #2f4c8a;
      margin-bottom: 1px;
      letter-spacing: -0.5px;
    }
    .blog-author-date {
      font-size: 1.04rem;
      color: #8aa7c2;
      font-weight: 500;
    }
    .view-portfolio-btn {
      background: linear-gradient(90deg, #7fc241 60%, #91e260 100%);
      color: #fff;
      font-weight: 700;
      font-size: 1.1rem;
      border: none;
      border-radius: 9px;
      padding: 12px 37px;
      cursor: pointer;
      margin-left: 18px;
      box-shadow: 0 2px 14px #b7eebb70;
      margin-top: 7px;
      transition: background 0.14s, box-shadow 0.18s, transform 0.13s;
    }
    .view-portfolio-btn:hover {
      background: linear-gradient(90deg, #6dbd1b 70%, #b1e683 100%);
      box-shadow: 0 4px 24px #7fc24160;
      transform: translateY(-2px) scale(1.03);
    }
    .blog-header-desc {
      font-size: 1.11rem;
      color: #69768d;
      flex: 1;
      margin-left: 24px;
      font-weight: 400;
      line-height: 1.62;
      min-width: 210px;
      max-width: 490px;
    }

    .blog-grid {
      width: 100%;
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .blog-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 26px rgba(40,60,90,0.09);
      border: 1.7px solid #e9f2ea;
      overflow: hidden;
      width: 362px;
      min-width: 260px;
      max-width: 99vw;
      display: flex;
      flex-direction: column;
      margin-bottom: 22px;
      transition: box-shadow 0.15s, border 0.14s, transform 0.14s;
      position: relative;
    }
    .blog-card:hover {
      box-shadow: 0 10px 34px rgba(60,90,130,0.16);
      border-color: #b3dc7b;
      transform: translateY(-3px) scale(1.03);
    }
    .blog-thumb {
      width: 100%;
      height: 182px;
      object-fit: cover;
      display: block;
      background: #e5e9f6;
      border-bottom: 1px solid #f1f1fa;
    }
    .blog-card-body {
      padding: 22px 24px 22px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .blog-card-title {
      font-size: 1.18rem;
      font-weight: 700;
      color: #1f2543;
      margin-bottom: 1px;
      line-height: 1.31;
      letter-spacing: -0.01em;
      transition: color 0.12s;
    }
    .blog-card-title:hover {
      color: #7fc241;
      cursor: pointer;
    }
    .blog-card-meta {
      font-size: 1.01rem;
      color: #7da4a7;
      font-weight: 500;
      margin-bottom: 2px;
    }
    .blog-card-desc {
      font-size: 1.04rem;
      color: #6a7897;
      margin-bottom: 1px;
      font-weight: 400;
      line-height: 1.52;
    }
    .blog-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 9px;
      margin-top: 7px;
    }
    .blog-card-price {
      font-size: 1.07rem;
      font-weight: 600;
      color: #262a32;
      background: #eff9ea;
      padding: 3px 14px 3px 10px;
      border-radius: 6px;
      margin-right: 3px;
      letter-spacing: 0.02em;
      box-shadow: 0 1px 7px #b7eebb35;
    }
    .stars {
      color: #fec800;
      font-size: 1.09rem;
      letter-spacing: 0.03em;
      margin-right: 2px;
    }
    .blog-card-sales {
      font-size: 0.97rem;
      color: #7a889f;
      margin-left: 5px;
    }
    .blog-card-actions {
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .blog-card-btn {
      background: linear-gradient(90deg, #7fc241 70%, #a8ec6a 100%);
      border: none;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 7px;
      padding: 9px 20px 9px 13px;
      display: flex;
      align-items: center;
      gap: 5px;
      box-shadow: 0 2px 14px #c1ffcd50;
      cursor: pointer;
      transition: background 0.14s, box-shadow 0.15s, transform 0.13s;
    }
    .blog-card-btn:hover {
      background: linear-gradient(90deg, #5ea523 80%, #b1e683 100%);
      box-shadow: 0 6px 18px #b1e68340;
      transform: scale(1.04);
    }
    .icon-arrow {
      width: 18px;
      height: 18px;
      display: inline-block;
      vertical-align: middle;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .blog-section { padding: 24px 6vw 36px 6vw; }
      .blog-header-row { padding: 18px 9px 16px 9px; }
      .blog-grid { gap: 18px; }
      .blog-card { width: 99vw; max-width: 430px; }
    }
    @media (max-width: 820px) {
      .blog-section { padding: 12px 2vw 22px 2vw;}
      .blog-header-row { flex-direction: column; align-items: flex-start; padding: 15px 7vw 15px 7vw; gap: 9px;}
      .blog-header-main { flex-wrap: wrap; gap: 12px;}
      .blog-header-desc { margin-left: 0; margin-top: 7px; max-width: unset;}
      .blog-grid { gap: 12px; }
      .blog-card { width: 98vw; max-width: 460px; min-width: unset;}
      .blog-card-body { padding: 11px 8px 12px 11px;}
    }
    @media (max-width: 530px) {
      .blog-section { padding: 2vw 0 2vw 0; margin: 4px 0;}
      .blog-header-row { border-radius: 10px; padding: 12px 2vw 10px 2vw;}
      .featured-badge { font-size: 1.1rem; padding: 4px 12px 4px 7px;}
      .blog-title { font-size: 0.99rem;}
      .blog-card-title { font-size: 1rem;}
      .blog-header-main { gap: 6px;}
      .blog-header-desc { font-size: 0.97rem;}
      .view-portfolio-btn { padding: 8px 16px; font-size: 0.98rem;}
    }
	
	    .footer {
      background-color: #1b1b1b;
      color: #bbb;
      padding: 40px 0 0 0;
    }

    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1300px;
      margin: auto;
      gap: 30px;
      padding: 0 20px;
    }

    .footer-column {
      flex: 1 1 180px;
      min-width: 150px;
      margin-bottom: 25px;
    }

    .footer-column h4 {
      font-size: 1.05rem;
      color: #fff;
      margin-bottom: 18px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 12px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #bbb;
      font-size: 1rem;
      transition: color 0.2s;
      word-break: break-word;
    }

    .footer-column ul li a:hover {
      color: #7fc241;
    }

    .footer-brand-info {
      font-size: 0.98rem;
      margin-top: 10px;
      margin-bottom: 18px;
    }

    .footer-brand-info strong {
      color: #fff;
      font-size: 1.11rem;
      font-weight: 700;
    }

    .footer-brand-info img {
      margin-top: 10px;
    }

    .footer-bottom {
      max-width: 1300px;
      margin: 0 auto;
      border-top: 1px solid #333;
      padding: 18px 20px 26px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 1rem;
    }

    .footer-links span {
      color: #ddd;
      font-weight: 500;
      opacity: 0.96;
    }

    .footer-copy {
      font-size: 0.93rem;
      color: #aaa;
      flex: 1 1 230px;
      text-align: left;
      margin: 0 16px;
    }

    .footer-social {
      display: flex;
      gap: 16px;
      font-size: 1.22rem;
    }

    .footer-social a {
      color: #bbb;
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: #7fc241;
    }

    @media (max-width: 1050px) {
      .footer-top {
        flex-wrap: wrap;
        gap: 24px;
      }
      .footer-column {
        flex: 1 1 44%;
        min-width: 180px;
        margin-bottom: 16px;
      }
    }

    @media (max-width: 800px) {
      .footer-top {
        flex-direction: column;
        gap: 16px;
        padding: 0 10px;
      }
      .footer-column {
        min-width: unset;
        width: 100%;
        margin-bottom: 0;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px 10px 26px 10px;
      }
      .footer-links {
        flex-wrap: wrap;
        gap: 11px;
        font-size: 1rem;
        margin-bottom: 3px;
      }
      .footer-copy {
        margin: 0 0 7px 0;
        text-align: left;
        font-size: 0.99rem;
      }
      .footer-social {
        justify-content: flex-start;
        font-size: 1.2rem;
        margin-top: 5px;
      }
    }

    @media (max-width: 540px) {
      .footer {
        padding: 24px 0 0 0;
      }
      .footer-top {
        padding: 0 4vw;
      }
      .footer-bottom {
        padding: 13px 4vw 18px 4vw;
      }
      .footer-links {
        font-size: 0.97rem;
      }
      .footer-copy {
        font-size: 0.92rem;
      }
      .footer-social {
        font-size: 1.1rem;
        gap: 13px;
        margin-top: 2px;
      }
    }

    @media (max-width: 400px) {
      .footer-top, .footer-bottom {
        padding-left: 2vw;
        padding-right: 2vw;
      }
    }
	
	    .main-container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 22px 10px;
    }
    .detproduct-title {
      font-size: 28px;
      font-weight: 700;
	      color: #000;
      margin-bottom: 6px;
      letter-spacing: 0.01em;
      line-height: 1.16;
    }
    .detproduct-byline {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1rem;
      color: #666;
      margin-bottom: 8px;
    }
    .detproduct-byline .author {
      color: #21a0ed;
      font-weight: 600;
      text-decoration: none;
      margin-right: 8px;
    }
    .detproduct-byline i {
      color: #191;
      margin: 0 5px 0 0;
    }
    .detproduct-byline .sales {
      font-weight: 500;
      color: #212121;
      margin-left: 5px;
      margin-right: 6px;
    }
    /* Top tabs and rating bar */
    .detproduct-tabs {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 16px;
      font-size: 1rem;
    }
    .detproduct-tabs .tab {
    padding: 10px 14px;
    background: #fff;
    border-radius: 7px 7px 0 0;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(170, 170, 170, 0.04);
    font-weight: 600;
    cursor: pointer;
    color: #454545;
    border-bottom: 2px solid #21a0ed;
}
    .detproduct-tabs .inactive {
      color: #444;
      background: transparent;
      border-bottom: none;
      font-weight: 400;
	  font-size: 12px;
      cursor: pointer;
    }
    .detproduct-tabs .star {
      color: #ffc700;
      font-size: 1.08em;
    }
    .detproduct-tabs .reviews, .detproduct-tabs .comments, .detproduct-tabs .support {
      display: flex;
      align-items: center;
      gap: 4px;
      color: #666;
    }
    .detproduct-tabs .counter {
      background: #eaf7fc;
      color: #1194ef;
      font-weight: 600;
      font-size: 0.98em;
      padding: 0 7px;
      border-radius: 6px;
      margin-left: 2px;
    }
    /* Main detproduct Card Layout */
    .detproduct-content-flex {
      display: flex;
      gap: 22px;
      margin-bottom: 22px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .detproduct-img-area {
       
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(80,90,120,0.07);
      padding: 16px 14px 14px 14px;
      min-width: 330px;
      max-width: 620px;
      flex: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .detproduct-img-area img {
      max-width: 100%;
      width: 100%;
      border-radius: 7px;
      box-shadow: 0 1.5px 7px rgba(80,90,120,0.09);
      margin-bottom: 16px;
      background: #f4f6f8;
    }
    .detproduct-img-area .actions {
      display: flex;
      gap: 12px;
      margin-top: 2px;
      margin-bottom: 3px;
    }
   .detproduct-img-area .actions a {
    background: #1597db;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 5px 20px;
    font-size: 14px;
    cursor: pointer;
    display: flex
;
    line-height: 1.5;
    align-items: center;
    gap: 7px;
    transition: background 0.15s;
}
    .detproduct-img-area .actions button.secondary {
      background: #656a75;
    }
    .detproduct-img-area .actions button:hover {
      background: #0d7ab8;
    }
    .detproduct-img-area .actions button.secondary:hover {
      background: #323844;
    }
    /* Sidebar card */
    .sidebar-card {
     
      border-radius: 13px;
	   border: 1px solid #e1e8ed;
      box-shadow: 0 2px 12px rgba(80,90,120,0.08);
      min-width: 240px;
      max-width: 320px;
      flex: 1;
      padding: 26px 20px 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
    .sidebar-card .license {
      font-size: 1.04rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #222;
    }
    .sidebar-card .price-area {
      display: flex;
      align-items: flex-end;
      gap: 13px;
      margin-bottom: 6px;
    }
    .sidebar-card .oldprice {
      color: #888;
      font-size: 1.23rem;
      text-decoration: line-through;
      margin-right: 6px;
      font-weight: 500;
    }
    .sidebar-card .price {
      color: #83bb21;
      font-size: 2.1rem;
      font-weight: 800;
    }
    .sidebar-card ul {
      margin: 12px 0 8px 0;
      padding: 0 0 0 19px;
      font-size: 1rem;
      color: #333;
    }
    .sidebar-card ul li {
      margin-bottom: 4px;
    }
    .sidebar-card .extra-support {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 1rem;
      margin-bottom: 2px;
    }
    .sidebar-card .support-price {
      text-decoration: line-through;
      color: #888;
      font-size: 1.01rem;
      margin-right: 4px;
    }
    .sidebar-card .support-sale {
      color: #1194ef;
      font-size: 1.01rem;
      font-weight: 600;
      margin-right: 5px;
    }
    .sidebar-card .add-cart-btn {
      background: #83bb21;
      color: #fff;
      border: none;
      border-radius: 7px;
      padding: 15px 0;
      width: 100%;
      font-size: 1.19rem;
      font-weight: 700;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin: 10px 0 0 0;
      cursor: pointer;
      box-shadow: 0 1px 7px rgba(130,190,40,0.07);
      transition: background 0.15s;
    }
    .sidebar-card .add-cart-btn:hover {
      background: #689c1a;
    }
    .sidebar-card .small-note {
      font-size: 0.95rem;
      color: #888;
      margin-top: 5px;
      line-height: 1.5;
    }
    /* Elite Author Card */
    .elite-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 1px 7px rgba(80,90,120,0.04);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      width: 250px;
      margin-top: 14px;
      font-size: 1.08rem;
      color: #e29334;
      font-weight: 700;
    }
    .elite-card i {
      color: #e29334;
      font-size: 1.3em;
    }
    /* Wishlist/Side Buttons (Demo) */
    .wishlist-btns {
      position: absolute;
      top: 120px;
      left: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .wishlist-btns button {
      background: #fff;
      border: none;
      border-radius: 6px;
      box-shadow: 0 1px 5px rgba(80,90,120,0.07);
      width: 44px;
      height: 44px;
      font-size: 1.45rem;
      color: #777;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.13s, color 0.14s;
    }
    .wishlist-btns button:hover {
      color: #ee3355;
      background: #fce8ed;
    }

    @media (max-width: 990px) {
      .main-container { max-width: 98vw; }
      .detproduct-content-flex { flex-direction: column; gap: 18px;}
      .sidebar-card { max-width: 100vw;}
      .elite-card { width: 100%; }
    }
    @media (max-width: 700px) {
      .main-container { padding: 7px 1vw; }
      .detproduct-title { font-size: 1.13rem;}
      .sidebar-card .price { font-size: 1.28rem;}
      .sidebar-card { padding: 15px 7px;}
      .wishlist-btns { top: 80px; }
      .elite-card { padding: 9px 7px; font-size: 0.97rem;}
    }
    @media (max-width: 450px) {
      .sidebar-card { padding: 11px 2px;}
      .detproduct-tabs { flex-wrap: wrap; gap: 7px; font-size: 0.95rem;}
      .detproduct-img-area { min-width: unset; padding: 7px 2px;}
    }
	
	
	
	
	.product-feature-section {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 48px 0 0 0;
  flex-wrap: wrap;
}
.product-feature-left {
  flex: 2;
  min-width: 310px;
  max-width: 800px;
}
.feature-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  color: #232946;
}
.feature-desc {
   
  color: #47516b;
  margin-bottom: 26px;
  line-height: 1.72;
      font-weight: normal;
}
.feature-main-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.main-btn {
  border-radius: 14px;
  padding: 0 18px 0 56px;
  box-shadow: 0 4px 16px rgba(70,105,155,0.10);
  min-width: 210px;
  height: 68px;
  display: flex;
  align-items: center;
  font-size: 1.12rem;
  font-weight: 700;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
  cursor: pointer;
  background: #fff;
  color: #fff;
  border: none;
  outline: none;
  overflow: hidden;
  width: 100%;
  max-width: 330px;
  margin-bottom: 0;
}
.main-btn img {
  position: absolute;
  top: -14px;
  left: 13px;
  background: #fff;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  object-fit: contain;
  box-shadow: 0 2px 8px #d2e3fc44;
}
.main-btn span {
  z-index: 2;
  font-size: 1.11rem;
  font-weight: 700;
}
.main-btn-blue {
  background: linear-gradient(90deg, #385ae8 60%, #5972f6 100%);
}
.main-btn-green {
  background: linear-gradient(90deg, #14ba47 65%, #37d67a 100%);
}
.main-btn:hover, .main-btn:focus {
  box-shadow: 0 6px 22px rgba(45,110,185,0.13), 0 2px 8px #c5f8e866;
  transform: translateY(-3px) scale(1.03);
}

.feature-app-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.app-card {
  border-radius: 22px;
  padding: 32px 10px 16px 10px;
  min-width: 140px;
  max-width: 210px;
  flex: 1 1 150px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(80,90,120,0.07);
  margin-bottom: 10px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.app-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 11px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1.5px 7px #e7d6f533;
}
.app-card div {
  font-size: 1rem;
  font-weight: 700;
  color: #1a232f;
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.app-card-pink {
  background: linear-gradient(120deg, #ffe3ea 90%, #fff6fb 100%);
}
.app-card-blush {
  background: linear-gradient(120deg, #ffe2ed 88%, #faf6fa 100%);
}
.app-card-purple {
  background: linear-gradient(120deg, #f5d7ee 86%, #f8ecfa 100%);
}
.app-card:hover, .app-card:focus {
  box-shadow: 0 7px 30px #e6e1fd44, 0 3px 12px #e7d6f522;
  transform: translateY(-4px) scale(1.04);
}

.product-feature-right {
  flex: 1;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.profile-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(80,90,120,0.09);
  padding: 20px 22px 16px 22px;
  margin-bottom: 6px;
}
.profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}
.profile-info img {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  background: #f5f8ff;
}
.profile-name {
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 6px;
}
.profile-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}
.profile-icons img {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px #e0f3ff66;
}
.portfolio-link {
  display: block;
  width: 100%;
  text-align: center;
  background: #f3f6fc;
  border: none;
  border-radius: 9px;
  font-weight: 700;
  color: #385ae8;
  padding: 10px 0 9px 0;
  font-size: 1.02rem;
  margin-top: 11px;
  text-decoration: none;
  box-shadow: 0 1px 8px #bddaff13;
  transition: background 0.15s, color 0.15s;
}
.portfolio-link:hover {
  background: #e3f1ff;
  color: #222;
}

.profile-details-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(80,90,120,0.06);
  padding: 20px 19px 14px 19px;
  font-size: 1.02rem;
}
.profile-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.profile-detail-row span { color: #7a8798;}
.profile-detail-strong { font-weight: 700; color: #232946;}
.profile-more {
  display: block;
  color: #1883e7;
  font-weight: 800;
  font-size: 1.03rem;
  text-decoration: none;
  margin-top: 13px;
  transition: color 0.13s;
}
.profile-more:hover { color: #143a80; }
.profile-footer {
  color: #a7acb9;
  font-size: 0.97rem;
  margin-top: 14px;
  text-align: center;
}
.profile-footer a {
  color: #2276e3;
  text-decoration: underline;
  font-size: 0.97em;
  transition: color 0.12s;
}
.profile-footer a:hover { color: #385ae8; }

/* --- MOBILE FRIENDLY --- */
@media (max-width: 990px) {
  .product-feature-section { flex-direction: column; gap: 24px;}
  .product-feature-left, .product-feature-right { max-width: 100vw;}
  .feature-main-buttons { gap: 11px; }
}
@media (max-width: 700px) {
  .product-feature-section { gap: 13px; }
  .feature-title { font-size: 1.01rem;}
  .feature-desc { font-size: 0.96rem;}
  .feature-main-buttons { flex-direction: column; align-items: stretch; gap: 9px;}
  .main-btn { min-width: 0; width: 100%; max-width: 100%; }
  .feature-app-cards { flex-direction: column; gap: 11px;}
  .app-card { min-width: 0; width: 100%; max-width: 100%; padding: 19px 6vw 14px 6vw;}
  .profile-card, .profile-details-card { padding: 12px 5vw;}
  .product-feature-right { gap: 16px; }
}
@media (max-width: 420px) {
  .feature-title { font-size: 0.90rem;}
  .feature-desc { font-size: 0.91rem;}
  .profile-card, .profile-details-card { padding: 8px 1vw;}
  .main-btn span { font-size: 0.96rem;}
}


  .div-only-mobile {
    display: none;
}
.div-no-mobile {
    display: block;
}
@media screen and (max-width: 849px) {

.div-no-mobile {
    display:none
}

.div-only-mobile {
    display: block;
}

}


.product-empty {
    background: #9f0e0e08;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(50, 60, 90, 0.10);
    overflow: hidden;
    width: 320px;
    min-width: 260px;
    display: flex
;
    flex-direction: column;
    margin-bottom: 24px;
    border: 1.5px solid #f1f2f6;
    transition: box-shadow 0.15s, border 0.13s;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}


    .breadcrumb-container {
      padding: 24px 18px 0 18px;
      max-width: 1300px;
      margin: 0 auto;
    }
    .breadcrumb {
      font-size: 16px;
      color: #666;
      margin-bottom: 16px;
      line-height: 1.3;
      white-space: normal;
    }
    .breadcrumb a {
      color: #219a9d;
      text-decoration: none;
      transition: color 0.18s;
    }
    .breadcrumb a:hover {
      color: #10686a;
      text-decoration: underline;
    }
    .divider {
      border: none;
      border-top: 1px solid #d1d1d1;
      margin: 8px 0 0 0;
    }
    /* Main layout for content and blogsidebar */
    .main-content-wrap {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 36px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 18px 40px 18px;
    }
    .news-container {
      max-width: 680px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 18px 0 #e0e0e0;
      padding: 26px 18px 0 18px;
      margin-top: 30px;
      flex: 1 1 680px;
      min-width: 0;
    }
    .news-type {
      color: #13bfa6;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 13px;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }
    .news-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #23292f;
    }
    .news-summary {
      font-size: 16px;
      margin-bottom: 26px;
      color: #444;
    }
    .author-section {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      font-size: 15px;
      color: #757575;
    }
    .author-pic {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #d1d1d1;
      display: inline-block;
    }
    /* Banner Styles */
    .banner {
      background: linear-gradient(100deg, #cfff84 0%, #73f473 100%);
      border-radius: 12px;
      margin: 0 0 28px 0;
      padding: 22px 12px 18px 12px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-shadow: 0 2px 8px rgba(100, 255, 100, 0.14);
      position: relative;
      overflow: hidden;
    }
    .banner-window {
      background: #fff;
      border-radius: 13px;
      box-shadow: 0 2px 10px rgba(60,60,60,0.05);
      padding: 20px 14px 24px 18px;
      position: relative;
      min-width: 250px;
      max-width: 100%;
      margin-bottom: 18px;
    }
    .banner-sales {
      font-size: 1.6rem;
      font-weight: bold;
      color: #2b2b2b;
      background: #8cff57;
      padding: 5px 16px;
      border-radius: 18px;
      display: inline-block;
      margin-bottom: 8px;
    }
    .banner-message {
      font-size: 20px;
      color: #b040ff;
      font-weight: 700;
      margin-bottom: 5px;
    }
    .banner-selling {
      font-size: 1.15rem;
      color: #151515;
      font-weight: 500;
      margin-bottom: 3px;
    }
    .banner-market {
      background: #fff;
      border-radius: 9px;
      padding: 11px 18px 7px 18px;
      font-size: 17px;
      font-weight: 600;
      color: #232323;
      box-shadow: 0 2px 5px #7fffc015;
      display: flex;
      align-items: center;
      gap: 7px;
      border: 1px solid #e6f7d7;
      margin-top: 7px;
    }
    .banner-market .logo {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: #e6ffe6;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: bold;
      color: #13bfa6;
      margin-right: 6px;
    }

    /* Blog Sidebar */
    .blog-blogsidebar {
      width: 290px;
      min-width: 220px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 12px #e6e6e640;
      padding: 20px 18px 18px 18px;
      margin-top: 30px;
      height: fit-content;
    }
    .blogsidebar-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 16px;
      color: #219a9d;
      letter-spacing: 1px;
    }
    .blogsidebar-posts {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .blogsidebar-post {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-bottom: 18px;
    }
    .blogsidebar-thumb {
      width: 58px;
      height: 58px;
      border-radius: 7px;
      background: #f0f8ff;
      object-fit: cover;
      box-shadow: 0 1px 6px #13bfa61a;
      flex-shrink: 0;
      border: 1px solid #f0f0f0;
    }
    .blogsidebar-post-title {
      font-size: 15px;
      font-weight: 500;
      color: #23292f;
      line-height: 1.3;
      text-decoration: none;
      transition: color 0.18s;
      display: block;
      max-width: 165px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .blogsidebar-post-title:hover {
      color: #13bfa6;
      text-decoration: underline;
    }
    /* Responsive */
    @media (max-width: 1000px) {
      .main-content-wrap {
        flex-direction: column;
        gap: 0;
        max-width: 98vw;
        padding: 0 2vw 40px 2vw;
      }
      .news-container, .blog-blogsidebar {
        margin-top: 18px;
        width: 100%;
        max-width: 98vw;
      }
      .blog-blogsidebar {
        margin-left: 0;
      }
    }
    @media (max-width: 700px) {
      .news-container {
        max-width: 97vw;
        padding: 8vw 2vw 0 2vw;
      }
      .news-title {
        font-size: 18px;
      }
	  
	  .fit-image {
        height:300px;
		width:350px;
      }
	  
	  
	  
	  
      .banner-window {
        min-width: 0;
        padding: 12px 6px 18px 10px;
      }
      .banner-sales {
        font-size: 1.12rem;
        padding: 3px 10px;
      }
      .banner-message {
        font-size: 1rem;
      }
      .banner-market {
        font-size: 13px;
        padding: 6px 9px 5px 9px;
      }
      .blog-blogsidebar {
        padding: 16px 7vw 12px 7vw;
      }
      .blogsidebar-thumb {
        width: 38px;
        height: 38px;
      }
      .blogsidebar-post-title {
        max-width: 120px;
        font-size: 13px;
      }
    }
	
		    .social-icons {
      display: flex;
      gap: 10px;
    }
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f4f4f4;
      color: #13bfa6;
      font-size: 16px;
      transition: background 0.15s, color 0.15s;
      border: 1px solid #e0e0e0;
      text-decoration: none;
    }
    .social-icons a:hover {
      background: #13bfa6;
      color: #fff;
    }
	
	.side-date {
        display: block;
    background: #000;
    padding: 4px;
    border-radius: 12px;
      }
	  
	  
	      .contact-container {
      max-width: 800px;
      margin: 30px auto;
      padding: 0 18px;
    }
    h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }
    form {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 18px #f1f3f4;
      padding: 36px 24px 28px 24px;
    }
    .form-group {
      margin-bottom: 25px;
    }
    label {
      display: block;
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 8px;
	  color:#111;
    }
    input[type="text"],
    input[type="email"],
    select,
    textarea {
      width: 100%;
      padding: 13px 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
      font-family: inherit;
      transition: border 0.2s;
      background: #fafbfc;
      box-sizing: border-box;
      outline: none;
    }
    input[type="text"]:focus,
    input[type="email"]:focus,
    select:focus,
    textarea:focus {
      border: 1.5px solid #a1e97c;
      background: #f4fff3;
    }
    small {
      display: block;
      color: #878787;
      margin-top: 4px;
      font-size: 0.97em;
    }
    textarea {
      min-height: 110px;
      resize: vertical;
    }
    .submit-btn {
      background: #a8f663;
      color: #111;
      font-size: 1.12rem;
      border: none;
      border-radius: 7px;
      padding: 12px 34px;
      font-weight: 600;
      box-shadow: 0 2px 8px #e4ffe4;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.19s;
    }
    .submit-btn:hover {
      background: #7be63a;
    }
    @media (max-width: 600px) {
      .contact-container {
        padding: 0 2vw;
      }
      form {
        padding: 18px 5vw;
      }
      h2 {
        font-size: 1.3rem;
      }
    }
	
	
	    .servicesearch-container {
      max-width: 1300px;
      margin: 24px auto 0 auto;
      padding: 0 18px;
    }
    .servicesearch-bar-wrap {
      display: flex;
      align-items: center;
      width: 100%;
      margin-bottom: 18px;
    }
    .servicesearch-input {
      flex: 1;
      padding: 18px 18px;
      font-size: 1.1rem;
      border: 1px solid #e2e2e2;
      border-radius: 6px 0 0 6px;
      outline: none;
      background: #fff;
      transition: border 0.19s;
    }
    .servicesearch-input:focus {
      border: 1.5px solid #8dde4d;
    }
    .servicesearch-servicebtn {
      background: #70c241;
      color: #fff;
      border: none;
      border-radius: 0 6px 6px 0;
      padding: 0 38px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      height: 54px;
      transition: background 0.18s;
      margin-left: -4px;
    }
    .servicesearch-servicebtn:hover {
      background: #48911f;
    }
    .main-flex {
      display: flex;
      align-items: flex-start;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 18px 40px 18px;
      gap: 34px;
    }
    .filter-sidebar {
      width: 30px;
      max-width: 100vw;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 14px #e6e6e6;
      padding: 32px 26px 22px 26px;
      font-size: 1.07rem;
      margin: 0 0 0 0;
      min-width: 210px;
      position: sticky;
      top: 22px;
      height: fit-content;
      border: 1.5px solid #eaeaea;
      transition: width 0.3s, padding 0.3s, font-size 0.3s;
    }
    .filter-header {
      font-weight: 600;
      font-size: 1.18em;
      margin-bottom: 17px;
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .filter-section {
      margin-bottom: 24px;
    }
    .filter-title {
      font-weight: 600;
      font-size: 1.09em;
      margin-bottom: 13px;
      color: #444;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .filter-list {
      list-style: none;
      margin: 0 0 10px 0;
      padding: 0;
      color: #232323;
      font-size: 1em;
    }
    .filter-list li {
      margin-bottom: 9px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: color 0.13s;
    }
    .filter-list li strong {
      font-weight: 600;
    }
    .filter-list li:hover {
      color: #8dde4d;
    }
    .filter-list .cat-arrow {
      margin-right: 5px;
      color: #aaa;
      font-size: 1.1em;
    }
    .filter-section-divider {
      border: none;
      border-top: 1.5px solid #ececec;
      margin: 18px 0 17px 0;
    }
    .price-range-group {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 7px;
    }
    .price-input {
      width: 60px;
      padding: 7px 6px;
      border: 1px solid #e2e2e2;
      border-radius: 4px;
      background: #fafafa;
      font-size: 1em;
      text-align: right;
    }
    .price-go {
      background: #eaeaea;
      border: none;
      border-radius: 5px;
      padding: 7px 15px;
      color: #888;
      font-size: 1em;
      cursor: pointer;
      margin-left: 5px;
      transition: background 0.15s, color 0.15s;
    }
    .price-go:hover {
      background: #8dde4d;
      color: #fff;
    }
    .filter-checkbox-group {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .filter-checkbox {
      accent-color: #8dde4d;
      width: 18px;
      height: 18px;
      cursor: pointer;
    }
    .filter-checkbox-label {
      cursor: pointer;
    }
    .filter-right-count {
      color: #aaa;
      font-size: 0.98em;
      margin-left: 6px;
      font-weight: 400;
    }
    .filter-list .ver-arrow {
      margin-right: 7px;
      color: #aaa;
      font-size: 1.15em;
    }
    .service-content {
      flex: 1 1 0;
      min-width: 0;
      
      border-radius: 16px;
      min-height: 380px;
      box-shadow: 0 1px 10px #f3f3f3;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .service-card {
      background: #fff;
      border-radius: 13px;
      box-shadow: 0 2px 16px #e0e9ff24;
      border: 1.5px solid #ebf0f4;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
    }
    .service-card:hover {
      box-shadow: 0 8px 32px #b6f1d854;
      border: 1.5px solid #73e77c70;
      transform: translateY(-3px) scale(1.017);
    }
    .service-img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      background: #f2f8fc;
    }
    .service-details {
      padding: 18px 18px 20px 18px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .service-title {
      font-size: 1.13rem;
      font-weight: 700;
      margin-bottom: 2px;
	  margin-top: 10px;
      color: #23292f;
      text-overflow: ellipsis;
      
      overflow: hidden;
    }
    .service-meta {
      color: #6a6a6a;
      font-size: 0.98rem;
      margin-bottom: 2px;
    }
    .service-price {
      font-size: 1.18rem;
      font-weight: 600;
      color: #222;
      margin-right: 15px;
    }
    .stars {
      color: #ffc933;
      font-size: 1em;
      margin-right: 5px;
    }
    .service-actions {
      margin-top: 12px;
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }
    .servicebtn {
      padding: 10px 25px;
      border-radius: 7px;
      border: none;
      background: #fff;
      color: #181818;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.18s, color 0.18s, border 0.18s;
      box-shadow: 0 1px 3px #efefef;
      border: 1.5px solid #e6e6e6;
      font-size: 1em;
    }
    .servicebtn.servicecart {
      color: #70c241;
      border: 1.5px solid #70c241;
      background: #fff;
    }
    .servicebtn.servicecart:hover {
      background: #70c241;
      color: #fff;
    }
    .servicebtn.servicepreview {
      background: #fff;
      color: #257bee;
      border: 1.5px solid #257bee;
    }
    .servicebtn.servicepreview:hover {
      background: #257bee;
      color: #fff;
    }
    .amount-control {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-right: 8px;
      background: #f8fafb;
      padding: 3px 7px;
      border-radius: 5px;
      border: 1px solid #e3e3e3;
    }
    .amount-servicebtn {
      border: none;
      background: #f2f2f2;
      color: #444;
      width: 34px;
      height: 34px;
      border-radius: 5px;
      font-size: 1.3rem;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.16s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .amount-servicebtn:active {
      background: #e0e0e0;
    }
    .amount-input {
      width: 38px;
      text-align: center;
      border: none;
      background: none;
      font-size: 1.18rem;
      font-weight: 600;
      outline: none;
      pointer-events: none;
      color: #222;
    }
    .amount-servicebtn[disabled] {
      color: #ccc;
      cursor: not-allowed;
      background: #fafafa;
    }
    .sales-count {
      color: #888;
      font-size: 0.98em;
      margin-top: 5px;
    }
    .toast {
      position: fixed;
      left: 50%;
      top: 30px;
      transform: translateX(-50%);
      background: #232323;
      color: #fff;
      padding: 13px 32px;
      border-radius: 9px;
      font-size: 1.12em;
      opacity: 0;
      pointer-events: none;
      z-index: 9999;
      transition: opacity 0.5s;
      box-shadow: 0 6px 28px #0002;
    }
    .toast.show {
      opacity: 1;
      pointer-events: auto;
    }

    /* Responsive: Sidebar stacks on top, shrinks width, smaller padding/font on mobile */
    @media (max-width: 1100px) {
      .main-flex {
        flex-direction: column;
        gap: 0;
        padding: 0 2vw 30px 2vw;
      }
      .service-content {
        padding: 24px 1vw;
      }
      .service-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .filter-sidebar {
        position: static;
        width: 88vw;
        max-width: 95vw;
        margin-bottom: 18px;
        font-size: 1rem;
        padding: 22px 13px 15px 13px;
      }
    }
    @media (max-width: 800px) {
      .service-content {
        padding: 10px 2vw;
      }
      .filter-sidebar {
        width: 97vw;
        min-width: 0;
        padding: 14px 7vw 10px 7vw;
        font-size: 0.99rem;
      }
      .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .service-card {
        margin-bottom: 8px;
      }
      .service-actions {
        flex-direction: column;
        gap: 13px;
        align-items: stretch;
      }
      .amount-control {
        justify-content: flex-start;
        margin-bottom: 3px;
      }
      .servicebtn {
        width: 100%;
        font-size: 1.13em;
        padding: 13px 0;
      }
    }
    @media (max-width: 700px) {
      .servicesearch-bar-wrap {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 14px;
      }
      .servicesearch-input {
        border-radius: 6px;
        margin-left: 0;
        height: 45px;
        font-size: 1em;
        margin-bottom: 7px;
        padding: 14px 10px;
      }
      .servicesearch-servicebtn {
        border-radius: 6px;
        width: 100%;
        height: 43px;
        padding: 0;
        margin-left: 0;
        font-size: 1em;
      }
      .filter-sidebar {
        width: 70vw;
        min-width: 0;
        padding: 10px 4vw 7px 4vw;
        font-size: 0.98rem;
      }
    }
	
	    .faq-container {
      max-width: 640px;
      margin: 48px auto 0 auto;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 2px 24px 0 rgba(29,37,81,0.11), 0 1.5px 7px rgba(30, 34, 90, 0.06);
      padding: 30px 0 24px 0;
      position: relative;
    }
    .faq-heading {
      text-align: center;
      font-size: 2.35rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: #1a2233;
      margin: 0 0 4px 0;
    }
    .faq-subheading {
      text-align: center;
      color: #627199;
      font-size: 1.13rem;
      font-weight: 500;
      margin-bottom: 32px;
      letter-spacing: .03em;
    }
    .faq-list {
      list-style: none;
      margin: 0;
      padding: 0 32px;
    }
    .faq-item {
      border-bottom: 1.5px solid #e3e9f6;
      margin-bottom: 0;
    }
    .faq-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: transparent;
      border: none;
      font-size: 1.12rem;
      font-weight: 600;
      color: #1a2233;
      padding: 24px 0;
      cursor: pointer;
      outline: none;
      transition: background 0.18s;
      position: relative;
      letter-spacing: .01em;
    }
    .faq-toggle:hover {
      background: #f1f6ff;
    }
    .faq-toggle .icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #f5f9ff;
      border: 1px solid #e3e9f6;
      transition: background 0.16s, transform 0.3s cubic-bezier(.61,0,.49,1.44);
      font-size: 1.4em;
      color: #82b440;
    }
    .faq-toggle[aria-expanded="true"] .icon {
      background: #f1f6ff;
      transform: rotate(180deg);
    }
    .faq-content {
      max-height: 0;
      overflow: hidden;
      color: #505a7a;
      background: #f9fbfd;
      font-size: 1rem;
      padding: 0 0;
      opacity: 0;
      transition: max-height 0.38s cubic-bezier(.51,.01,.29,.99), opacity 0.25s;
    }
    .faq-item.active .faq-content {
      max-height: 240px;
      padding: 0 0 18px 0;
      opacity: 1;
      transition: max-height 0.49s cubic-bezier(.51,.01,.29,.99), opacity 0.23s;
    }
    @media (max-width: 700px) {
      .faq-container {
        max-width: 99vw;
        border-radius: 0;
        padding: 18px 0 18px 0;
        box-shadow: none;
      }
      .faq-list {
        padding: 0 12px;
      }
      .faq-heading {
        font-size: 1.45rem;
      }
      .faq-toggle {
        font-size: 0.98rem;
        padding: 16px 0;
      }
    }
	
	.policy-container {
      max-width: 750px;
      margin: 0 auto;
      background: #fff;
      box-shadow: 0 2px 16px rgba(46, 54, 80, 0.07);
      padding: 32px 40px 40px 40px;
      border-radius: 18px;
      margin-top: 34px;
      margin-bottom: 40px;
    }
	
	 /* Privacy Policy Styles */
    .privacy-section {
      margin-top: 60px;
      border-top: 1.5px solid #e3e9f6;
      padding-top: 34px;
    }
    .privacy-section h2 {
      font-size: 1.32rem;
      color: #21242a;
      margin-top: 0;
    }
    .privacy-section h3 {
      font-size: 1.11rem;
      margin-bottom: 8px;
      margin-top: 26px;
      color: #23272f;
      font-weight: 700;
    }
    .privacy-section ul {
      padding-left: 18px;
      margin: 8px 0;
    }
    .privacy-section li {
      margin-bottom: 8px;
    }
    @media (max-width: 700px) {
      .policy-container {
        max-width: 99vw;
        padding: 17px 8vw 28px 8vw;
        margin-top: 16px;
        margin-bottom: 16px;
        border-radius: 9px;
        box-shadow: 0 1.5px 10px rgba(46, 54, 80, 0.06);
      }
      .page-title {
        font-size: 1.25rem;
      }
      .revised, .policy-breadcrumbs {
        font-size: 0.98rem;
      }
      .section-title, h2, .privacy-section h2 {
        font-size: 1.08rem;
      }
      ol, .privacy-section ul {
        padding-left: 15px;
      }
    }