:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #0071e3;
  --grey: #f5f5f7;
  --text: #1d1d1f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text);
}

a {
    text-decoration: none;
}

/* Navbar & Active State */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: 70px;
  background: var(--grey);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.logo {
  display: flex;
  align-items: center; 
  gap: 12px; 
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo img {
    height: 40px;
    width: auto;  
    display: block;
}

.logo span {
  color: var(--blue);
  font-weight: 800;
}

.nav-item {
  margin: 0 15px;
  color: #666;
  font-size: 0.9rem;
}

.nav-item:hover {
    border-bottom: 2px solid #666;
    padding: 4px 0;
}

.nav-item.active {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 2px solid var(--blue);
  padding: 4px 0;
}

.account-btn {
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-btn:hover {
    border-bottom: 2px solid #666;
    padding: 4px 0;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 70vh;
  margin-top: 70px;
  background: linear-gradient(to right, #ffffff 10%, transparent), 
              url('img/iPhone\ pro\ for\ cheap\ price.jpg') center/cover;
  display: flex;
  align-items: center;
  padding: 0 20%;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-btns {
    padding: 40px;
}

.btn-primary {
    background: var(--black);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
}

.btn-primary:hover {
    background: var(--blue);
}

/* 3-Item Grid */
.product-section {
  padding: 80px 5%;
  text-align: center;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 12px; 
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
    border-radius: 10px;
    padding: 0.9rem;
    text-align: center;
    background: rgb(255, 255, 255);
    border:1px solid rgba(15,15,15,0.04);
    box-shadow: 0 8px 18px rgba(10,10,10,0.06);
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.img-box img {
    max-width: 100%;
    height: 150px; 
    object-fit:cover;
    margin-bottom: 0.6rem; 
    border-radius:20px;box-shadow: 0 6px 18px rgba(10,10,10,0.06);
    box-shadow: 0 8px 18px rgba(10,10,10,0.06);
}

.btn-link {
  color: var(--blue);
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
}


/* Store Page */
.store-main {
  padding-top: 64px;
}

.store-intro {
  padding: 80px 0 40px;
  background-color: var(--bg-soft);
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}


.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

.main-title {
  font-size: 3rem;
  font-weight: 800;
  margin-top: 10px;
  letter-spacing: -1.5px;
}

.search-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.main-search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid grey;
  padding: 12px 25px;
  border-radius: 40px;
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease;
}

.main-search-bar:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.main-search-bar i {
  color: var(--text-secondary);
  margin-right: 15px;
}

.main-search-bar input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
}

/* --- Centered Product Grid --- */
.product-section {
  padding: 60px 0;
}

.status-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #bf4800; /* Apple-style orange for status */
}

.product-info h3 {
  font-size: 1.4rem;
  margin: 10px 0 5px;
}

.price {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.btn-details {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.btn-details:hover {
  text-decoration: underline;
}



/* --- About Us Page --- */

.about-main {
  padding-top: 64px;
}

.about-hero {
  padding: 100px 0;
  background-color: var(--white);
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
}

.text-side h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-side p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-side img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Values Grid */
.values-section {
  background-color: var(--bg-soft);
  padding: 100px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.value-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
}




/* --- Contact Page Styling --- */

.contact-main {
  padding-top: 64px;
}

.contact-hero {
  padding: 80px 0 40px;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 100px;
}

/* Info Side */
.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent);
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.whatsapp-highlight {
  background: #f0fff4;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #c6f6d5;
}

.btn-wa {
  display: inline-block;
  margin-top: 15px;
  color: #25d366;
  font-weight: 600;
  border: 1px solid #25d366;
  padding: 8px 20px;
  border-radius: 5px;
}

/* Form Side */
.contact-form-container {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--black);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #666;
}

/* Mobile */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}




/* --- Simple Login --- */

.login-body {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.login-header {
  padding: 40px 0;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.login-box {
  text-align: center;
}

.login-box h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.login-box p {
  color: #666;
  margin-bottom: 30px;
}

/* Form Vertical Layout */
.input-group {
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.input-group input:focus {
  border-color: #0071e3;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.login-btn:hover {
  background-color: #333;
}

.login-footer {
  margin-top: 25px;
}

.login-footer a {
  color: #0071e3;
  font-size: 0.9rem;
}

.login-footer p {
  margin-top: 15px;
  font-size: 0.9rem;
}









/* Footer Styling */
.footer {
  background: var(--grey);
  padding: 60px 10% 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col a {
  display: block;
  margin-top: 10px;
  color: #666;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #888;
}

.footer-nav a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 12px;
}


/* Mobile Adjustments */
@media (max-width: 768px) {
  .arrival-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .hero-content h1 { font-size: 2.5rem; }
}
