/* ==========================================================================
   seupetshop Stylesheet
   Theme: Modern Pet Care Wholesale
   Colors: Deep Teal, Coral Orange, Warm Yellow, Dark Slate, Clean Whites
   ========================================================================== */

/* Reset & Variables */
:root {
    --primary-color: #0e7c86;
    --primary-light: #159ba7;
    --primary-dark: #006675;
    --accent-orange: #f06c4f;
    --accent-orange-light: #f28269;
    --accent-yellow: #f5b041;
    --bg-light: #f9fdfd;
    --bg-warm-yellow: #fbf3d5;
    --text-dark: #1f2d30;
    --text-muted: #5f7478;
    --border-color: #e2eff0;
    --white: #ffffff;
    --footer-dark: #0f262c;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(14, 124, 134, 0.08);
    --shadow-lg: 0 16px 36px rgba(14, 124, 134, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 9999px;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4%;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.main-header {
    position: relative;
    z-index: 10;
    width: 100%;
}

.header-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    z-index: -1;
}

.header-wave-bg svg {
    width: 100%;
    height: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    min-height: 120px;
}

/* Logo */
.logo-area .site-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    padding: 4px;
    transition: var(--transition);
}

.logo-area .site-logo:hover {
    transform: scale(1.03);
}

/* Search Area */
.search-area {
    flex: 0 1 500px;
    margin: 0 24px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 20px rgba(240, 108, 79, 0.15);
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 8px 16px;
    font-size: 15px;
    color: var(--text-dark);
    font-family: var(--font-main);
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-submit-btn {
    background: var(--accent-orange);
    border: none;
    outline: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-submit-btn:hover {
    background: var(--accent-orange-light);
    transform: rotate(90deg);
}

/* Account Area */
.btn-account {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

.btn-account:hover {
    color: var(--white);
    background: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(240, 108, 79, 0.25);
    transform: translateY(-2px);
}

.btn-account i {
    font-size: 18px;
}

/* Navigation bar */
.main-nav {
    background: var(--white);
    border-radius: var(--radius-md);
    margin: 16px 4% 0 4%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 6px 12px;
}

.nav-links li a {
    display: block;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-links li a i {
    font-size: 11px;
    margin-left: 2px;
    vertical-align: middle;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    padding: 48px 0;
    background: linear-gradient(180deg, rgba(232, 246, 247, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 32px;
    align-items: center;
}

/* Spotlight Cards (Left & Right) */
.spotlight-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.circle-image-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 16px auto;
    overflow: hidden;
    border: 4px solid var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.spotlight-card:hover .circle-image-container {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.spotlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.spotlight-link {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 14px;
}

.spotlight-card:hover .spotlight-link {
    color: var(--primary-color);
}

.spotlight-link i {
    font-size: 10px;
    margin-left: 4px;
    transition: var(--transition);
}

.spotlight-link:hover i {
    transform: translateX(4px);
}

/* Middle Banner Slider */
.hero-banner-slider {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 320px;
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

/* Slider Pagination */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.slider-pagination .dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.slider-pagination .dot:hover,
.slider-pagination .dot.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ==========================================================================
   Partnership Section
   ========================================================================== */

.partnership-section {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partnership-container {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 40px;
    align-items: stretch;
}

/* Sidebar Ads */
.promo-sidebar {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.promo-sidebar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Welcome Middle Block */
.welcome-text-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-text-block h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.4;
}

.welcome-paragraphs {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: justify;
}

.welcome-paragraphs p strong {
    color: var(--text-dark);
}

.welcome-text-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 36px;
}

/* Badge Row */
.badge-circles-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.info-badge-card {
    flex: 1 1 240px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-circle-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.info-badge-card:hover .badge-circle-wrapper {
    transform: scale(1.08) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    width: 85%;
    height: 85%;
}

.info-badge-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-badge-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Latest Trade Promotions Carousel
   ========================================================================== */

.promotions-carousel-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 8px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: var(--radius-pill);
}

.btn-view-all {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.btn-view-all:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 108, 79, 0.2);
}

/* Carousel Layout */
.carousel-container {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.carousel-track-viewport {
    flex: 1;
    overflow: hidden;
    padding: 12px 4px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-nav-btn {
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    z-index: 5;
    transition: var(--transition);
}

.carousel-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Product Card */
.product-card {
    flex: 0 0 calc((100% - 96px) / 5); /* Shows exactly 5 cards */
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Tags */
.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    color: var(--white);
    text-transform: uppercase;
    z-index: 2;
}

.product-tag.spec-deal {
    background: var(--accent-orange);
}

.product-tag.best-price {
    background: var(--primary-color);
}

.product-tag.hot-promo {
    background: var(--accent-yellow);
}

.product-image-container {
    width: 100%;
    height: 140px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.product-weight {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 16px;
}

.btn-login-price {
    margin-top: auto;
    background-color: #f4fafb;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
}

.product-card:hover .btn-login-price {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

/* ==========================================================================
   Secondary Promo Circles Section
   ========================================================================== */

.promo-circles-section {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.promo-circles-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Round Badge Card */
.promo-circle-card {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.promo-circle-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.promo-circle-card.teal-circle {
    background-color: var(--primary-color);
    color: var(--white);
}

.promo-circle-card.yellow-circle {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.circle-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.promo-circle-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-circle-card p {
    font-size: 13px;
    margin-bottom: 16px;
    opacity: 0.85;
    max-width: 180px;
}

.circle-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}

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

.circle-btn.dark-btn {
    background-color: var(--text-dark);
    color: var(--white);
}

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

/* ==========================================================================
   Find Your Local Depot Section (Locator)
   ========================================================================== */

.depot-locator-section {
    position: relative;
    padding: 100px 0;
    background-color: #f0f7f8;
    overflow: hidden;
}

.depot-map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-grid-svg {
    width: 100%;
    height: 100%;
}

.depot-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.depot-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.depot-box h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.depot-box p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.depot-form {
    max-width: 440px;
    margin: 0 auto;
}

.depot-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: var(--radius-pill);
    padding: 6px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.depot-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(14, 124, 134, 0.1);
}

.depot-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--text-dark);
}

.depot-search-btn {
    background-color: var(--primary-color);
    border: none;
    outline: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.depot-search-btn:hover {
    background-color: var(--accent-orange);
    transform: rotate(90deg);
}

.depot-result {
    margin-top: 24px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.depot-result.success {
    color: var(--primary-color);
}

.depot-result.error {
    color: var(--accent-orange);
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.main-footer {
    position: relative;
    background-color: var(--footer-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 40px;
    z-index: 2;
}

.footer-wave-bg {
    width: 100%;
    height: 80px;
    transform: translateY(-1px);
    margin-top: -1px;
}

.footer-wave-bg svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 64px;
    width: auto;
    align-self: flex-start;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--white);
    padding: 4px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links-col h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--accent-orange);
    border-radius: var(--radius-pill);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links-col ul li a:hover {
    color: var(--accent-orange-light);
    padding-left: 4px;
}

/* Awards Strip */
.footer-awards-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.award-icon {
    font-size: 32px;
    color: var(--accent-orange);
}

.award-text {
    display: flex;
    flex-direction: column;
}

.award-title {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.award-year {
    font-size: 12px;
    opacity: 0.8;
}

/* Bottom Strip */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-logo {
    font-size: 20px;
    font-weight: 800;
}

.bottom-brand {
    color: var(--white);
}

.bottom-wholesale {
    color: var(--accent-orange);
}

.copyright-text {
    font-size: 13px;
    max-width: 600px;
}

.back-to-top-btn {
    background-color: var(--primary-color);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-4px);
}

/* ==========================================================================
   Responsive / Media Queries
   ========================================================================== */

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
    }
    .hero-banner-slider {
        grid-column: span 2;
        order: -1;
    }
    .partnership-container {
        grid-template-columns: 1fr;
    }
    .promo-sidebar {
        display: none;
    }
    .product-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding-top: 16px;
    }
    .search-area {
        width: 100%;
        margin: 0;
    }
    .hero-layout {
        grid-template-columns: 1fr;
    }
    .hero-banner-slider {
        grid-column: span 1;
    }
    .nav-links {
        justify-content: flex-start;
    }
    .product-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .copyright-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 100%;
    }
    .badge-circles-row {
        gap: 24px;
    }
    .promo-circle-card {
        width: 240px;
        height: 240px;
        padding: 20px;
    }
}
