.card-tall {
        height: 1200px;
      }

      .premium-shop-card {
        border: 1px solid var(--border);
        background: linear-gradient(145deg, var(--panel), var(--accent-soft));
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        padding: 28px;

        display: grid;
        grid-template-columns: 1.3fr 1fr; /* Balanced columns */
        gap: 30px;
        align-items: center;
        overflow: hidden;
      }

      /* Make responsive */
      @media (max-width: 992px) {
        .premium-shop-card {
          grid-template-columns: 1fr;
        }
      }

      /* LEFT */
      .shop-primary {
        display: flex;
        gap: 20px;
        align-items: flex-start; /* top align logo + info */
        min-width: 0;
      }

      /* Container for logo + badge + settings */
      .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* center badge & settings under logo */
        gap: 6px;
      }

      .premium-logo {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        background: var(--accent);
        color: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 600;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        flex-shrink: 0;
      }

      /* Badge + Settings under logo */
      .logo-bottom-icons {
        display: flex;
        gap: 8px;
        align-items: center;
      }

      @media (max-width: 600px) {
        .shop-primary {
          flex-direction: column;
          align-items: center;
          gap: 12px;
        }

        .shop-info {
          text-align: center;
        }
      }

      /* PLAN BADGE */
      .plan-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
        border-radius: 16px;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 50px;
        text-align: center;
        height: 24px;
      }

      /* Responsive adjustments */
      @media (max-width: 600px) {
        .logo-container {
          gap: 4px;
        }

        .logo-bottom-icons {
          gap: 4px;
        }

        .plan-badge {
          font-size: 0.7rem;
          padding: 3px 6px;
          height: 22px;
          min-width: 45px;
        }
      }

      /* Trial */
      .plan-trial {
        background: rgba(255, 193, 7, 0.15);
        color: #ffc107;
      }

      /* Pro */
      .plan-pro {
        background: rgba(0, 200, 83, 0.15);
        color: #00c853;
      }

      /* Expired */
      .plan-expired {
        background: rgba(255, 82, 82, 0.15);
        color: #ff5252;
      }

      .shop-title-row {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .shop-title-row h2 {
        font-size: 1.3rem;
      }

      .shop-settings-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 6px;

        padding: 6px 12px;
        border-radius: 8px;
        border: 1px solid var(--border);
        background: var(--panel);
        color: var(--text-main);

        font-size: 0.75rem;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
      }

      .shop-settings-btn:hover {
        background: var(--accent-soft);
        border-color: var(--accent);
        color: var(--accent);
      }

      /* Any element can use this */

      /* Tooltip box */
      .simple-tooltip.bottom {
        position: absolute;
        top: 120%;
        left: 50%;
        transform: translateX(-50%) translateY(6px);

        background: var(--panel);
        color: var(--text-main);

        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.7rem;
        white-space: nowrap;

        border: 1px solid var(--border);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

        opacity: 0;
        pointer-events: none;
        transition: all 0.2s ease;
        z-index: 100;
      }

      /* Arrow */
      .simple-tooltip.bottom::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);

        width: 8px;
        height: 8px;
        background: var(--panel);
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
      }

      /* Left */
      .simple-tooltip.left {
        position: absolute;
        right: 110%;
        top: 50%;
        transform: translateX(-6px) translateY(-50%);

        background: var(--panel);
        color: var(--text-main);

        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.7rem;
        white-space: nowrap;

        border: 1px solid var(--border);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

        opacity: 0;
        pointer-events: none;
        transition: all 0.2s ease;
        z-index: 100;
      }

      /* Arrow */
      .simple-tooltip.left::before {
        content: "";
        position: absolute;
        right: -5px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);

        width: 8px;
        height: 8px;
        background: var(--panel);
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border);
      }

      /* Show */
      .tooltip-trigger:hover .simple-tooltip.left {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
      }

      /* Right */
      .simple-tooltip.right {
        position: absolute;
        left: 115%;
        top: 50%;
        transform: translateX(6px) translateY(-50%);

        background: var(--panel);
        color: var(--text-main);

        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.7rem;
        white-space: nowrap;

        border: 1px solid var(--border);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

        opacity: 0;
        pointer-events: none;
        transition: all 0.2s ease;
        z-index: 100;
      }

      /* Arrow */
      .simple-tooltip.right::before {
        content: "";
        position: absolute;
        left: -5px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);

        width: 8px;
        height: 8px;
        background: var(--panel);
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      /* Business type */
      .shop-business-type {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-top: 4px;
      }

      /* Address */
      .shop-address,
      .shop-phone {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-top: 6px;
      }

      /* RIGHT GRID */

      .shop-details-grid {
        display: grid;
        gap: 18px;
        grid-template-columns: minmax(150px, 1fr); /* default */
      }

      /* Tablet */
      @media (min-width: 600px) {
        .shop-details-grid {
          grid-template-columns: repeat(2, minmax(150px, 1fr));
        }
      }

      @media (min-width: 900px) {
        .shop-details-grid {
          grid-template-columns: repeat(4, minmax(150px, 1fr));
        }
      }

      @media (min-width: 992px) {
        .shop-details-grid {
          grid-template-columns: repeat(2, minmax(150px, 1fr));
        }
      }

      .shop-detail {
        background: var(--panel);
        padding: 14px;
        border-radius: 12px;
        border: 1px solid var(--border);
        font-size: 0.85rem;
      }
      .shop-detail {
        min-width: 0;
        overflow: hidden;
      }

      .shop-detail span {
        display: block;
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-bottom: 6px;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        margin-bottom: 20px;
      }

      .stat-card h3 {
        font-size: 1.6rem;
        color: var(--accent);
      }

      .stat-card p {
        color: var(--text-muted);
        margin-top: 6px;
        font-size: 0.85rem;
      }

      .quick-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .action-btn {
        padding: 10px 16px;
        border-radius: 8px;
        border: 1px solid var(--border);
        background: var(--panel);
        color: var(--text-main);
        cursor: pointer;
        transition: 0.25s ease;
      }

      .action-btn:hover {
        background: var(--accent-soft);
        color: var(--accent);
        border-color: var(--accent);
      }

      .activity-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
      }

      .activity-table th,
      .activity-table td {
        padding: 10px;
        border-bottom: 1px solid var(--border);
        text-align: left;
      }

      .activity-table th {
        color: var(--text-muted);
        font-weight: 500;
      }

      /* Inline style replacements */
      .welcome-header {
        font-size: 1.4rem;
      }

      .welcome-subtitle {
        color: var(--text-muted);
        margin-top: 6px;
      }

      .shop-settings-hidden {
        display: none;
      }

      .activity-header {
        font-size: 1.4rem;
        margin-bottom: 8px;
      }

      .activity-title {
        margin-bottom: 16px;
      }

      .quick-actions-title {
        margin-bottom: 16px;
      }

      .logo-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 14px;
      }