:root {
    --primary: #f26522; /* primary color */
    --secondary: #002d5d; /* secondary color */
    --bg: #f8f9fa;
    --muted: #6c757d;
    --card-bg:#ffffff;
    --radius:12px;
}

/* Core / Global */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Outfit', sans-serif;
  background:var(--bg);
  color:#222;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Typography */
h1,h2,h3,h4,h5,h6{color:var(--secondary);margin:0 0 .5rem}
p{margin:0 0 1rem;font-size:0.95rem;color:#333}

/* Layout helpers */
.container-lg{margin-left:auto;margin-right:auto;padding:0 1rem}
.text-muted{color:var(--muted)}
.small{font-size:.875rem}

/* Buttons (primary site styles) */
.btn-orange{
  --bg:var(--primary);
  background:var(--bg);
  color:#fff;
  border:0;
  padding:.5rem .9rem;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
}
.btn-orange:hover{background:#e15412}

/* Outline variant */
.btn-outline-orange{
  background:transparent;
  color:var(--primary);
  border:1px solid var(--primary);
  padding:.45rem .8rem;
  border-radius:8px;
  font-weight:600;
}
.btn-outline-orange:hover{background:var(--primary);color:#fff}

/* Utilities */
.text-primary{color:var(--primary)!important}
.text-secondary{color:var(--secondary)!important}
.bg-primary{background:var(--primary)!important}
.rounded-2{border-radius:8px}
.shadow-sm{box-shadow:0 6px 18px rgba(2,45,93,0.06)}

/* Responsive helpers kept minimal */
@media (max-width:768px){
  .container-lg{padding:0 .75rem}
  h1{font-size:1.4rem}
}

/* Minimal reset for images used globally */
img{max-width:100%;height:auto;display:block}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Category Card */
.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Store Logo */
.store-logo {
    object-fit: contain;
    padding: 10px;
}

.store-logo-large {
    object-fit: contain;
}

/* Offer Card */
.offer-card {
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}

.offer-card .card-header {
    padding: 1rem;
}

.offer-value {
    font-size: 1.5rem;
}

/* Step Icons */
.step-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Footer */
footer {
    margin-top: auto;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}