/* ============================================
   Phoenix Wholesale & Distribution
   Main Stylesheet
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input {
  font-family: inherit;
  outline: none;
}

/* --- CSS Variables --- */
:root {
  --primary: #c0392b;
  --primary-dark: #a93226;
  --primary-light: #e74c3c;
  --secondary: #2c3e50;
  --secondary-light: #34495e;
  --accent: #e67e22;
  --accent-dark: #d35400;
  --green: #27ae60;
  --green-dark: #219a52;
  --blue: #2980b9;
  --dark: #1a1a1a;
  --dark-bg: #282828;
  --light-gray: #f5f5f5;
  --border-gray: #e1e1e1;
  --text-gray: #7c7c7c;
  --text-dark: #333;
  --white: #ffffff;
  --max-width: 120rem;
  --header-height: 7rem;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-light);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
}

.btn-lg {
  padding: 1.6rem 3.6rem;
  font-size: 1.6rem;
}

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
}

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.top-bar {
  background: var(--dark-bg);
  color: var(--white);
  font-size: 1.3rem;
  padding: 0.8rem 0;
  position: relative;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar__left span {
  opacity: 0.9;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar__link {
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s;
  font-size: 1.2rem;
}

.top-bar__link:hover {
  opacity: 1;
}

.top-bar__link i {
  margin-right: 0.5rem;
}

.top-bar__account {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar__signin {
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background 0.2s;
}

.top-bar__signin:hover {
  background: #2471a3;
}

.top-bar__basket {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
}

.top-bar__basket-icon {
  position: relative;
  font-size: 1.8rem;
}

.top-bar__basket-count {
  position: absolute;
  top: -0.6rem;
  right: -0.8rem;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 5rem;
  width: auto;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-name {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.header__logo-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
  white-space: nowrap;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--primary);
}

.header__nav-link i {
  font-size: 1rem;
  transition: transform 0.2s;
}

.header__nav-item:hover .header__nav-link i {
  transform: rotate(180deg);
}

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 0 0 0.8rem 0.8rem;
  padding: 3rem;
  min-width: 70rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 200;
}

.header__nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.mega-menu__category {
  text-align: center;
}

.mega-menu__category-img {
  width: 100%;
  height: 12rem;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  background: var(--light-gray);
  overflow: hidden;
}

.mega-menu__category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  transition: transform 0.3s ease;
}

.mega-menu__category:hover .mega-menu__category-img img {
  transform: scale(1.05);
}

.mega-menu__category-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mega-menu__category:hover .mega-menu__category-name {
  color: var(--primary);
}

/* Search Bar */
.header__search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__search-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-gray);
  border-radius: 0.4rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.header__search-form:focus-within {
  border-color: var(--primary);
}

.header__search-input {
  padding: 0.9rem 1.4rem;
  font-size: 1.4rem;
  border: none;
  width: 22rem;
  background: transparent;
}

.header__search-input::placeholder {
  color: #aaa;
}

.header__search-btn {
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border: none;
  font-size: 1.6rem;
  transition: background 0.2s;
}

.header__search-btn:hover {
  background: var(--primary-dark);
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--dark);
  padding: 0.5rem;
  cursor: pointer;
}

/* ============================================
   HERO / BANNER SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.hero__title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
  background: var(--light-gray);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.features-bar__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.features-bar__icon {
  font-size: 3rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 50%;
}

.features-bar__text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.features-bar__text p {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
  text-align: center;
  padding: 4rem 0 3rem;
}

.section-heading__title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-heading__title::before,
.section-heading__title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6rem;
  height: 2px;
  background: var(--primary);
}

.section-heading__title::before {
  right: calc(100% + 2rem);
}

.section-heading__title::after {
  left: calc(100% + 2rem);
}

.section-heading__subtitle {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-top: 1rem;
}

/* ============================================
   PRODUCT CATEGORY GRID
   ============================================ */
.categories-section {
  padding: 2rem 0 4rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-card {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--light-gray);
  aspect-ratio: 1 / 0.85;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
}

.category-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.category-card__count {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 0.3rem;
}

/* Category card image */
.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

/* ============================================
   PROMOTIONAL BANNER STRIPS
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  margin: 2rem 0;
}

.promo-banner--dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
}

.promo-banner--green {
  background: linear-gradient(135deg, var(--green) 0%, #1abc9c 100%);
}

.promo-banner__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-banner__text {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.promo-banner__btn {
  display: inline-block;
}

/* ============================================
   WHY CHOOSE US / INFO SECTIONS
   ============================================ */
.info-section {
  padding: 5rem 0;
}

.info-section--gray {
  background: var(--light-gray);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.info-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card__icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 2rem;
  display: inline-block;
  width: 8rem;
  height: 8rem;
  line-height: 8rem;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 50%;
}

.info-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.info-card__text {
  font-size: 1.4rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
   SECTOR / INDUSTRY GRID
   ============================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sector-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  background: var(--light-gray);
}

.sector-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  transition: background 0.3s;
}

.sector-card:hover .sector-card__overlay {
  background: linear-gradient(transparent 10%, rgba(192, 57, 43, 0.8));
}

.sector-card__name {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sector-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s ease;
}

.sector-card:hover .sector-card__image {
  transform: scale(1.08);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 5rem 0;
  background: var(--light-gray);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__text {
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-card__author {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 1.2rem;
  color: var(--text-gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.cta-section__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section__text {
  font-size: 1.6rem;
  opacity: 0.9;
  max-width: 60rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  padding-right: 2rem;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer__logo-name {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}

.footer__logo-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--white);
  opacity: 0.7;
}

.footer__description {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  gap: 1.2rem;
}

.footer__social-link {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  transition: all 0.3s;
}

.footer__social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__column h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__column ul li {
  margin-bottom: 1rem;
}

.footer__column ul li a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.footer__column ul li a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer__column ul li a i {
  margin-right: 0.8rem;
  width: 1.4rem;
  text-align: center;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__contact-item i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.footer__contact-item span {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 2.5rem 0;
  text-align: center;
}

.footer__copyright {
  font-size: 1.2rem;
  color: var(--text-gray);
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-header__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header__breadcrumb {
  font-size: 1.3rem;
  opacity: 0.7;
}

.page-header__breadcrumb a {
  color: var(--white);
}

.page-header__breadcrumb a:hover {
  opacity: 1;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image {
  background: var(--light-gray);
  border-radius: 1rem;
  height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 5rem 0;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-card__number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 1.4rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.4rem;
  border: 2px solid var(--border-gray);
  border-radius: 0.4rem;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 15rem;
}

.contact-info h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.contact-info__card {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__item i {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-info__item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.contact-info__item p {
  font-size: 1.4rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.contact-info__item a {
  color: var(--primary);
}

.contact-info__item a:hover {
  color: var(--primary-dark);
}

.contact-info__hours {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 3rem;
}

.contact-info__hours h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.contact-info__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 1.4rem;
}

.contact-info__hours-row:last-child {
  border-bottom: none;
}

.contact-info__hours-day {
  font-weight: 600;
  color: var(--dark);
}

.contact-info__hours-time {
  color: var(--text-gray);
}

/* ============================================
   PRODUCTS / BROWSE PAGE
   ============================================ */
.products-page {
  padding: 4rem 0;
}

.products-sidebar {
  width: 25rem;
  flex-shrink: 0;
}

.products-main {
  flex: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 0.8rem;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.product-card__image {
  height: 20rem;
  background: var(--light-gray);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__pack {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
}

.product-card__unit {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.product-card__btn {
  width: 100%;
  margin-top: 1rem;
}

/* ============================================
   OFFERS PAGE
   ============================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  padding: 4rem 0;
}

.offer-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.offer-card__image {
  width: 20rem;
  flex-shrink: 0;
  background: var(--light-gray);
  overflow: hidden;
}

.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-card__image img {
  transform: scale(1.05);
}

.offer-card__body {
  padding: 2.5rem;
  flex: 1;
}

.offer-card__badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.3rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
}

.offer-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.offer-card__text {
  font-size: 1.3rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.offer-card__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.offer-card__price-old {
  font-size: 1.4rem;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-left: 1rem;
  font-weight: 400;
}

/* ============================================
   DELIVERY PAGE
   ============================================ */
.delivery-content {
  padding: 5rem 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.delivery-card {
  padding: 3rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 4px solid var(--primary);
}

.delivery-card__icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.delivery-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.delivery-card p {
  font-size: 1.4rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.delivery-card ul {
  margin-top: 1rem;
}

.delivery-card ul li {
  font-size: 1.4rem;
  color: var(--text-gray);
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.delivery-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  height: 40rem;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   REGISTER PAGE
   ============================================ */
.register-content {
  padding: 5rem 0;
  max-width: 60rem;
  margin: 0 auto;
}

.register-form {
  background: var(--white);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.register-form h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.register-form p {
  font-size: 1.4rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-check input[type="checkbox"] {
  margin-top: 0.3rem;
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}

.form-check label {
  font-size: 1.3rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-bg);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0, .52, 0, 1);
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
}

.mobile-menu__nav {
  padding-top: 6rem;
}

.mobile-menu__link {
  display: block;
  padding: 1.5rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu__link:hover {
  color: var(--primary-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .header__nav {
    display: none;
  }

  .header__mobile-toggle {
    display: block;
  }

  .header__search-input {
    width: 16rem;
  }

  .features-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mega-menu {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    flex-direction: column;
  }

  .offer-card__image {
    width: 100%;
    height: 22rem;
  }

  .top-bar__left {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__subtitle {
    font-size: 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-bar__grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .promo-banner__title {
    font-size: 2.2rem;
  }

  .section-heading__title {
    font-size: 2.4rem;
  }

  .section-heading__title::before,
  .section-heading__title::after {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .header .container {
    padding: 0 1.5rem;
  }

  .header__search {
    display: none;
  }

  .header__logo-name {
    font-size: 1.8rem;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .top-bar__right {
    gap: 1rem;
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 1.2rem 2.4rem;
    font-size: 1.4rem;
  }
}
