/*
Theme Name: Dotsun
Theme URI: https://pcdrift.com/
Author: PCDRIFT Team
Author URI: https://pcdrift.com/
Description: A premium WooCommerce theme for Dotsun - Sports Wear Manufacturer & Exporter. Features a professional dark design with orange and blue brand colors, full WooCommerce support, and responsive layout.
Version: 3.0.7
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Requires Plugins: woocommerce
WC requires at least: 7.0
WC tested up to: 9.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dotsun-theme
Tags: woocommerce, e-commerce, sports, dark, orange, responsive, custom-menu, featured-images, full-width-template
*/

/* =============================================
   DOTSUN THEME - BASE STYLES
   ============================================= */

:root {
    --primary-color: #eb7024;
    --primary-dark: #c95e15;
    --primary-light: #f4943a;
    --secondary-color: #111528;
    --secondary-dark: #0a0b14;
    --secondary-light: #1c2038;
    --dark-bg: #232427;
    --dark-bg-2: #1a1b1e;
    --dark-bg-3: #2e2f33;
    --text-color: #777777;
    --text-dark: #333333;
    --text-light: #999999;
    --title-color: #242424;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-dark: rgba(0, 0, 0, 0.1);
    --font-heading: 'Poppins', Arial, Helvetica, sans-serif;
    --font-body: 'Lato', Arial, Helvetica, sans-serif;
    --container-width: 1222px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.25);
    --shadow-orange: 0 4px 20px rgba(235, 112, 36, 0.3);
}

/* =============================================
   RESET & BASE
   ============================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-color);
    background-color: #f4f5f8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--primary-color);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--title-color);
    line-height: 1.3;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn,
button,
input[type="submit"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 0;
}

.btn-primary,
.button.alt,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-color: var(--primary-color);
}

.btn-primary:hover,
.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* =============================================
   SECTION STYLES
   ============================================= */

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.section-lg {
    padding: 120px 0;
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--white);
}

.section-gray {
    background-color: var(--off-white);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-title-left h2::after {
    left: 0;
    transform: none;
}

.section-title p {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-color);
    font-size: 15px;
}

/* =============================================
   BREADCRUMBS
   ============================================= */

.breadcrumb-wrapper {
    background-color: var(--dark-bg);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--dark-bg) 100%);
    opacity: 0.8;
}

.breadcrumb-wrapper .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-title {
    font-size: 42px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* =============================================
   SIDEBAR
   ============================================= */

.sidebar {
    padding-left: 30px;
}

.widget {
    margin-bottom: 40px;
    background: var(--white);
    border: 1px solid var(--border-dark);
    padding: 25px;
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--title-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    font-family: var(--font-heading);
}

/* =============================================
   PAGINATION
   ============================================= */

.pagination,
.woocommerce-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span,
.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--border-dark);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.pagination a:hover,
.woocommerce-pagination .page-numbers:not(.current):hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pagination span.current,
.woocommerce-pagination .page-numbers.current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* =============================================
   FORMS
   ============================================= */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
select,
textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e5e5e5;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background-color: var(--white);
    outline: none;
    transition: var(--transition);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(235, 112, 36, 0.1);
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--primary-color) !important; }
.text-blue { color: var(--secondary-color) !important; }
.text-uppercase { text-transform: uppercase; }

.bg-dark { background-color: var(--dark-bg); }
.bg-orange { background-color: var(--primary-color); }
.bg-blue { background-color: var(--secondary-color); }
.bg-white { background-color: var(--white); }
.bg-gray { background-color: var(--off-white); }

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.mt-60 { margin-top: 60px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============================================
   WORDPRESS DEFAULTS
   ============================================= */

.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 5px;
}

.gallery-caption {
    font-size: 12px;
    color: var(--text-light);
}

.sticky {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

Version: 2.4.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Requires Plugins: woocommerce
WC requires at least: 7.0
WC tested up to: 9.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dotsun-theme
*/

/* Instagram Grid Hover Effects */
.insta-item:hover img {
    transform: scale(1.08);
}
.insta-item:hover .insta-overlay {
    opacity: 1 !important;
}

/* Event Cards Hover Effects */
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
}

/* Screen reader text */
/* Hide any hero scroll indicator icon */
.hero-scroll, .scroll-down, .mouse-icon, .scroll-indicator, .hero-scroll-btn {
    display: none !important;
}
