* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #f5c518;
  --dark: #1a1a1a;
  --secondary: #e67e22;
  --accent: #ff9f1c;
  --btn-color: #27ae60; --orange: #FF6600;
  --light: #f8f9fa;
}
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--dark); background: var(--light); }
.top-bar { background: var(--orange); color: #fff; padding: 0.5rem 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.top-bar span { color: var(--primary); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: var(--orange); }
.logo { font-size: 1rem; font-weight: 800; color: #FF6600; text-transform: uppercase; display: flex; flex-wrap: wrap; justify-content: center; gap: -8px; margin: 0 -3px; line-height: 1.3; }
.logo span { display: inline-block; padding: 0.15rem 0.4rem; background: #fff; border: 4px solid #FF6600; font-style: italic; letter-spacing: -1px; border-radius: 12px; box-shadow: 4px 4px 0 #FF6600, 6px 6px 0 #cc5200, 8px 8px 10px rgba(0,0,0,0.3); color: #FF6600; font-family: 'Comic Sans MS', 'Chalkboard SE', cursive; font-weight: bold; }
.logo .store { color: #FF4500; transform: rotate(3deg) scale(1.05) translateY(-5px); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: #fff; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.search-bar { padding: 1rem 5%; background: #fff; }
.search-bar input { width: 100%; padding: 0.8rem 1.5rem; border: 2px solid #000; border-radius: 50px; font-size: 1rem; }
.hero { padding: 2rem 5%; background: var(--orange); text-align: center; }
.hero h1 { font-size: 2.5rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.hero p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 1.1rem; }
.btn { display: inline-block; padding: 0.75rem 2rem; background: var(--btn-color); color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; border-radius: 8px; text-transform: uppercase; }
.btn:hover { background: #219a52; transform: translateY(-2px); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; padding: 2rem 5%; }
.feature { background: #fff; padding: 1.5rem; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); text-align: center; border-bottom: 4px solid var(--btn-color); }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #000; }
.feature p { color: #000; font-size: 0.9rem; }
.shop, .about, .contact { padding: 2rem 5%; max-width: 1200px; margin: 0 auto; }
.shop h1, .about h1, .contact h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.5px; color: var(--dark); }
.subtitle { color: #000; margin-bottom: 2rem; }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.product-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.product-badge { position: absolute; top: 10px; right: 10px; background: var(--accent); color: #fff; padding: 0.25rem 0.5rem; font-size: 0.7rem; font-weight: 700; border-radius: 4px; text-transform: uppercase; }
.product-card { position: relative; }
.product-image { height: 180px; background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.product-info { padding: 1rem; }
.product-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--dark); line-height: 1.4; }
.product-price { color: var(--accent); font-weight: 800; font-size: 1.3rem; margin-bottom: 0.75rem; }
.product-card .btn { width: 100%; text-align: center; padding: 0.6rem 1rem; font-size: 0.8rem; }
.about .content { background: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.about .content p { margin-bottom: 1rem; color: #555; line-height: 1.8; }
.contact .content p { color: #555; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-form input, .contact-form textarea { padding: 0.75rem; border: 2px solid #eee; font-family: inherit; font-size: 1rem; border-radius: 8px; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #000; }
.contact-form textarea { resize: vertical; }
.contact-info { padding-top: 2rem; border-top: 1px solid #eee; }
.contact-info p { margin-bottom: 0.5rem; }
footer { text-align: center; padding: 2rem; color: #fff; font-size: 0.85rem; background: var(--orange); }
.chat-bubble { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; background: var(--btn-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: pointer; font-size: 1.5rem; }
.main-header { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 5%; background: var(--orange); }
.header-left { display: flex; align-items: center; gap: 1rem; }
.hamburger { font-size: 1.5rem; color: #fff; cursor: pointer; }
.header-right { display: flex; align-items: center; }
.cart-icon { font-size: 1.5rem; }
.mobile-nav { display: none; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.mobile-nav.active { display: block; }
.mobile-nav a { display: block; padding: 1rem; border-bottom: 1px solid #eee; color: #333; text-decoration: none; }
.top-bar { display: none; }
@media (max-width: 600px) { .logo { font-size: 0.9rem; } }
.main-footer { background: #fff; padding: 2rem 5%; border-top: 1px solid #eee; }
.footer-section { border-bottom: 1px solid #eee; padding: 0.5rem 0; }
.footer-section h3 { font-size: 1rem; font-weight: 600; color: #333; cursor: pointer; display: flex; justify-content: space-between; }
.footer-section ul { display: none; list-style: none; padding: 0.5rem 0; }
.footer-section ul.active { display: block; }
.footer-section li { padding: 0.3rem 0; }
.footer-section a { color: #666; text-decoration: none; font-size: 0.9rem; }
.newsletter { margin-top: 1.5rem; }
.newsletter h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input { flex: 1; padding: 0.5rem; border: 1px solid #ddd; border-radius: 4px; }
.newsletter-form button { padding: 0.5rem 1rem; background: var(--orange); color: #fff; border: none; border-radius: 4px; font-size: 1.2rem; }
.footer-bottom { margin-top: 2rem; text-align: center; color: #666; font-size: 0.85rem; }
.footer-bottom p { margin: 0.3rem 0; }
.payment-icons { display: flex; justify-content: center; gap: 0.5rem; font-size: 1.5rem; margin: 1rem 0; }
.chat-bubble { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; box-shadow: 0 4px 10px rgba(0,0,0,0.3); cursor: pointer; }
.cart-icon { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; }
.cart-icon svg { vertical-align: middle; }
a.cart-icon:visited, a.cart-icon:active { color: #fff !important; text-decoration: none; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo svg { vertical-align: middle; }
.logo-text { font-family: Arial Black, sans-serif; font-size: 1.1rem; font-weight: bold; color: #333; letter-spacing: -0.5px; }
.logo-text .fancy-txt { color: #FF6600; }

/* Logo Styles */
.logo { font-family: Arial Black, Arial, sans-serif; font-size: 1.3rem; font-weight: 900; letter-spacing: -1px; }
.logo .fancy-txt { color: #FF6600; }
.logo .card-txt { color: #333; }

.logo .cardboard-word {
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes shine {
  to { background-position: 200% center; }
}

.logo-fancy { 
  color: #FF6600;
  text-shadow: 
    0 0 5px #FF6600,
    0 0 10px #FF6600,
    0 0 20px #FF6600,
    2px 2px 0 #cc5200;
  transform: skewX(-3deg);
}
.logo-cardboard {
  color: #fff;
  text-shadow: 
    0 0 5px #000,
    0 0 10px #000,
    2px 2px 0 #000,
    -1px -1px 0 #333;
  letter-spacing: 1px;
}



.logo { font-weight: bold; color: #fff; -webkit-text-stroke: 0.5px #000; font-size: 1rem; }
