/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Unexpected "{"
Line 9:3 Expected identifier but found "'loyalty-custom.css'"

**/

{{ 'loyalty-custom.css' | asset_url | stylesheet_tag }}


/* Modern font-face declaration with TTF as primary */
        @font-face {
            font-family: 'ADHYNATHAPERSONAL';
            src: url('{{ "ADHYNATHAPERSONAL.ttf" | asset_url }}') format('truetype'),
                 url('{{ "ADHYNATHAPERSONAL.otf" | asset_url }}') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        /* Strategic font application */
        :root {
            --adhy-font: 'ADHYNATHAPERSONAL', -apple-system, BlinkMacSystemFont, 
                        sans-serif;
        }
        
        /* Apply to all text elements */
        body {
            font-family: var(--adhy-font);
        }
        
        /* Enhanced headings */
        h1, h2, h3, h4, 
        .sidebar h2,
        .rewards-box h2,
        .ways-to-earn h2 {
            font-family: var(--adhy-font);
            font-weight: 700; /* Use if your font supports weights */
            letter-spacing: -0.5px;
            line-height: 1.1;
        }
        
        /* Points display optimization */
        #points-balance,
        #customer-points {
            font-family: var(--adhy-font);
            font-weight: 700;
            font-size: 2em;
            letter-spacing: -1px;
        }
        
        /* Interactive elements */
        button,
        .redeem-btn,
        .logout-btn,
        .copy-btn,
        .tab {
            font-family: var(--adhy-font);
            font-weight: 700;
            text-transform: uppercase;
        }
        
        /* Table text */
        .points-activity th,
        .points-activity td {
            font-family: var(--adhy-font);
        }

.custom-banner {
  position: relative;
  width: 100%;
  height:400px;
  
}

.banner-image {
  width: 100%;
  height:400px;
  display: block;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.shop-now-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 25px;
  background: #d4af37;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}


body {
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #4a4a4a;
    margin: 0;
    padding: 0;
}

/* Main Container */
.rewards-container {
    display: flex;
    flex-wrap: wrap;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
}

.points-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Buttons */
.redeem-btn, .logout-btn {
    display: block;
    background: #4a854a;
    color: white;
    padding: 10px;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    width: 100%;
    border-radius: 5px;
}

/* Content */
.rewards-content {
    flex-grow: 1;
    padding: 20px;
}

.header-tabs {
    display: flex;
    border-bottom: 2px solid #4a4a4a;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.tab {
    margin-right: 20px;
    text-decoration: none;
    color: #4a4a4a;
}

.tab.active {
    border-bottom: 3px solid #4a854a;
}

/* Rewards and Earn Box */
.rewards-box, .ways-to-earn {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Balance Box */
.balance-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* Redeem Options */
.redeem-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.redeem-option {
    background: white;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    flex: 1 1 200px;
    min-width: 200px;
}

.copy-btn {
    background: #4a854a;
    color: white;
    padding: 8px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .rewards-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .redeem-btn, .logout-btn, .tab {
        width: 100%;
        padding: 12px;
    }

    .redeem-option {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .header-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}
