/* ============================================
   CT LOGISTICS - Main Stylesheet
   ============================================ */

/* Color Variables */
:root {
    --ct-primary-dark: #1a3a5f;
    --ct-primary-blue: #2c5282;
    --ct-primary-light: #3a6fa5;
    --ct-accent-orange: #ff9800;
    --ct-accent-gold: #ffc107;
    --ct-text-white: #ffffff;
    --ct-text-light: #f5f5f5;
    --ct-text-gray: #999999;
    --ct-bg-dark: #1e3a5f;
    --ct-bg-footer: #0f2537;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ============================================
   CONTAINER RESPONSIVE WIDTHS
   ============================================ */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 540px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 720px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px;
    }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1320px;
    }
}

/* Ultra wide devices (1600px and up) */
@media (min-width: 1600px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1520px;
    }
}

/* ============================================
   HEADER STYLES
   ============================================ */

.ct-header {
    background-color: #ffffff;
}

/* Row 1: Language Selector */
.ct-header-top-row {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
}

.ct-header-top-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ct-top-left {
    flex: 1;
}

/* Row 2: Logo, Search, User Actions */
.ct-header-middle-row {
    background-color: #ffffff;
    padding: 15px 0;
}

.ct-header-middle-content {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 30px;
    align-items: center;
}

.ct-logo {
    display: flex;
    align-items: center;
}

.ct-logo img {
    max-height: 80px;
    width: auto;
}

.ct-search-container {
    max-width: 600px;
    position: relative;
}

.ct-search-form {
    display: flex;
    width: 100%;
}

.ct-search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--ct-primary-blue);
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
}

.ct-search-button {
    background-color: var(--ct-primary-blue);
    color: var(--ct-text-white);
    border: none;
    padding: 12px 25px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.ct-search-button:hover {
    background-color: var(--ct-primary-light);
}

.ct-language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-language-selector span {
    margin-right: 5px;
    color: var(--ct-primary-dark);
    font-weight: 500;
}

.ct-language-flags {
    display: flex;
    gap: 5px;
}

.ct-language-flags img {
    width: 24px;
    height: 18px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.ct-language-flags img:hover {
    border-color: var(--ct-primary-blue);
}

.google_ui {
    display: none;
}

.ct-user-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ct-btn-register,
.ct-btn-login {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    background-color: var(--ct-primary-dark);
    color: var(--ct-text-white);
    text-decoration: none;
    white-space: nowrap;
}

.ct-btn-register:hover,
.ct-btn-login:hover {
    background-color: var(--ct-primary-blue);
    transform: translateY(-2px);
}

/* Row 3: Navigation Menu */
.ct-navbar {
    background-color: var(--ct-primary-dark);
    padding: 0;
    border-top: 3px solid var(--ct-accent-orange);
}

.ct-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ct-navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ct-navbar-menu li {
    position: relative;
}

.ct-navbar-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--ct-text-white);
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 15px;
}

.ct-navbar-menu a:hover,
.ct-navbar-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.ct-navbar-menu a i {
    margin-right: 5px;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.ct-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ct-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ct-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 58, 95, 0.7), rgba(26, 58, 95, 0.5));
    z-index: 2;
}

.ct-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ct-hero-text {
    max-width: 600px;
    margin-left: 50px;
    margin-top: 80px;
    margin-bottom: 100px;
}

.ct-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--ct-text-white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ct-hero-subtitle {
    font-size: 48px;
    font-weight: bold;
    color: var(--ct-accent-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ct-hero-boxes {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    gap: 20px;
    z-index: 3;
}

.ct-service-box,
.ct-contact-box {
    background-color: var(--ct-primary-dark);
    padding: 25px;
    border-radius: 10px;
    max-width: 400px;
    color: var(--ct-text-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ct-service-box-title,
.ct-contact-box-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ct-service-box-title i,
.ct-contact-box-title i {
    font-size: 16px;
    opacity: 0.7;
}

.ct-service-list {
    list-style: none;
    padding: 0;
}

.ct-service-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-service-list li i {
    color: #4caf50;
    font-size: 18px;
}

.ct-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ct-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-contact-item i {
    font-size: 20px;
}

.ct-qr-codes {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.ct-qr-code {
    background: white;
    padding: 10px;
    border-radius: 5px;
}

.ct-qr-code img {
    width: 80px;
    height: 80px;
    display: block;
}

/* ============================================
   BANNER SLIDE SECTION STYLES
   ============================================ */

.ct-banner-section {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #f5f5f5;
}

.ct-banner-slider-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.ct-banner-slider {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.ct-slide {
    display: none;
    position: relative;
    width: 100%;
    animation: fadeSlide 0.5s;
}

.ct-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

.ct-banner-image {
    width: 100%;
    overflow: hidden;
}

.ct-banner-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: cover;
}

.ct-slide-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(26, 58, 95, 0.8);
    color: var(--ct-text-white);
    padding: 15px 30px;
    border-radius: 25px;
    text-align: center;
    max-width: 80%;
}

.ct-slide-caption p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

/* Slider Navigation Buttons */
.ct-slider-prev,
.ct-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 58, 95, 0.7);
    color: var(--ct-text-white);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s;
    z-index: 10;
    border-radius: 5px;
}

.ct-slider-prev:hover,
.ct-slider-next:hover {
    background-color: var(--ct-primary-dark);
}

.ct-slider-prev {
    left: 20px;
}

.ct-slider-next {
    right: 20px;
}

/* Slider Dots */
.ct-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ct-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.ct-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.ct-dot.active {
    background-color: var(--ct-accent-orange);
    border-color: var(--ct-text-white);
    width: 14px;
    height: 14px;
}

/* ============================================
   PROMOTION BANNER STYLES
   ============================================ */

.ct-promotion-banner {
    background-color: #ffffff;
    padding: 40px 0;
}

.ct-promo-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.ct-promo-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.ct-shop-now-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--ct-accent-orange);
    color: var(--ct-text-white);
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.ct-shop-now-btn:hover {
    background-color: var(--ct-accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
}

/* ============================================
   PRODUCTS SECTION STYLES
   ============================================ */

.ct-products-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.ct-products-popular {
    background-color: #ffffff;
}

.ct-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.ct-view-all-btn {
    background-color: var(--ct-primary-dark);
    color: var(--ct-text-white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.ct-view-all-btn:hover {
    background-color: var(--ct-primary-blue);
    transform: translateY(-2px);
    text-decoration: none;
}

.ct-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

/* Products Grid in Category Page */
.ct-category-content .ct-products-grid {
    background-color: transparent;
    padding: 0;
}

.ct-products-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.ct-product-card {
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
}

.ct-product-card:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    border-color: var(--ct-primary-blue);
}

.ct-product-image-link {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #fafafa;
}

.ct-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ct-product-card:hover .ct-product-image {
    transform: scale(1.1);
}

.ct-product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ct-product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ct-primary-dark);
    margin: 0 0 8px 0;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ct-product-title a {
    color: var(--ct-primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.ct-product-title a:hover {
    color: var(--ct-accent-orange);
}

.ct-product-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ct-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.ct-product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--ct-accent-orange);
}

.ct-product-btn {
    background-color: var(--ct-primary-dark);
    color: var(--ct-text-white);
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.ct-product-btn:hover {
    background-color: var(--ct-primary-blue);
    transform: scale(1.05);
    text-decoration: none;
}

/* ============================================
   CATEGORIES SECTION STYLES
   ============================================ */

.ct-categories {
    background-color: #ffffff;
    padding: 60px 0;
}

.ct-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--ct-primary-dark);
    margin-bottom: 40px;
}

.ct-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ct-category-item {
    display: flex;
    flex-direction: column;
    align-items: normal;
    text-decoration: none;
    transition: transform 0.3s;
}

.ct-category-item:hover {
    transform: translateY(-5px);
}

.ct-category-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--ct-primary-light);
    transition: border-color 0.3s;
}

.ct-category-item:hover .ct-category-circle {
    border-color: var(--ct-accent-orange);
}

.ct-category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ct-category-item:hover .ct-category-circle img {
    transform: scale(1.1);
}

.ct-category-name {
    text-align: center;
    font-size: 14px;
    color: var(--ct-primary-dark);
    font-weight: 500;
    max-width: 150px;
    word-wrap: break-word;
}

/* ============================================
   CATEGORY PAGE STYLES
   ============================================ */

.ct-category-page {
    background-color: #f5f5f5;
    padding: 30px 0;
    min-height: 600px;
}

.ct-category-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}

/* Sidebar Styles */
.ct-category-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ct-sidebar-widget {
    background-color: #ffffff;
    border-radius: 0;
    padding: 15px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.ct-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

/* Category Tree Styles */
.ct-category-tree {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-category-item {
    border-radius: 0;
    transition: all 0.2s;
}

.ct-category-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-radius: 0;
    transition: all 0.2s;
}

.ct-category-item:hover .ct-category-main {
    background-color: transparent;
}

.ct-category-item.active .ct-category-main {
    background-color: transparent;
}

.ct-category-toggle {
    width: 20px;
    height: 20px;
    border: none;
    background-color: transparent;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 0;
    margin-left: 5px;
}

.ct-category-toggle:hover {
    background-color: #f0f0f0;
    color: var(--ct-primary-blue);
}

.ct-category-toggle i {
    font-size: 12px;
}

.ct-category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.ct-category-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--ct-primary-blue);
    flex-shrink: 0;
    margin: 0;
}

.ct-category-name {
    flex: 1;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
    padding-left: 5px;
}

.ct-category-name:hover {
    color: var(--ct-primary-blue);
}

.ct-category-item.active .ct-category-name {
    color: var(--ct-primary-dark);
    font-weight: 500;
}

/* Submenu Styles */
.ct-category-submenu {
    margin-left: 26px;
    padding-left: 0;
    border-left: none;
    margin-top: 0;
    padding-top: 4px;
    display: none;
}

.ct-subcategory-item {
    padding: 6px 0;
    border-radius: 0;
    margin-bottom: 0;
    transition: all 0.2s;
}

.ct-subcategory-item:hover {
    background-color: transparent;
}

.ct-subcategory-item:hover .ct-category-name {
    color: var(--ct-primary-blue);
}

.ct-subcategory-item.active {
    background-color: transparent;
}

.ct-subcategory-item.active .ct-category-name {
    color: var(--ct-primary-blue);
    font-weight: 500;
}

.ct-subcategory-item .ct-category-checkbox {
    width: 15px;
    height: 15px;
}

.ct-subcategory-item .ct-category-name {
    font-size: 13px;
    font-weight: 400;
}

.ct-sidebar-banner {
    padding: 0;
    overflow: hidden;
}

.ct-sidebar-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.ct-sidebar-banner:hover .ct-sidebar-banner-img {
    transform: scale(1.05);
}

/* Main Content Styles */
.ct-category-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Breadcrumb */
.ct-breadcrumb {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    box-shadow: none;
}

.ct-breadcrumb a {
    color: var(--ct-primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.ct-breadcrumb a:hover {
    color: var(--ct-accent-orange);
}

.ct-breadcrumb-separator {
    color: #999;
}

.ct-breadcrumb-current {
    color: #666;
    font-weight: 500;
}

/* Category Header */
.ct-category-header {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.ct-category-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--ct-primary-dark);
    margin: 0 0 10px 0;
}

.ct-category-description {
    font-size: 15px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.ct-category-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.ct-product-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ct-primary-blue);
    font-weight: 500;
}

.ct-product-count i {
    font-size: 16px;
}

/* Empty State */
.ct-empty-state {
    background-color: #ffffff;
    padding: 60px 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ct-empty-state i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.ct-empty-state h3 {
    font-size: 24px;
    color: var(--ct-primary-dark);
    margin: 0 0 10px 0;
}

.ct-empty-state p {
    font-size: 16px;
    color: #666;
    margin: 0 0 25px 0;
}

.ct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--ct-primary-dark);
    color: var(--ct-text-white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.ct-btn-primary:hover {
    background-color: var(--ct-primary-blue);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.ct-footer {
    background-color: #ffffff;
    color: #333;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
}

.ct-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.ct-footer-column h5 {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ct-footer-column h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Footer About Section */
.ct-footer-about {
    display: flex;
    flex-direction: column;
}

.ct-footer-logo {
    margin-bottom: 20px;
}

.ct-footer-logo img {
    max-width: 180px;
    height: auto;
}

.ct-footer-about-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ct-footer-about-text {
    line-height: 1.8;
}

.ct-footer-about-text p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 14px;
}

/* Footer Services Section */
.ct-footer-services {
    display: flex;
    flex-direction: column;
}

.ct-footer-service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.ct-footer-service-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    transition: color 0.3s;
}

.ct-footer-service-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--ct-primary-blue);
    font-size: 18px;
}

.ct-footer-service-item span {
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.ct-footer-service-item:hover span {
    color: var(--ct-primary-blue);
}

.ct-footer-promo-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.ct-footer-promo-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.ct-footer-promo-img:hover {
    transform: scale(1.02);
}

/* Footer Facebook Section */
.ct-footer-facebook {
    display: flex;
    flex-direction: column;
}

.ct-facebook-box {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.ct-facebook-box iframe {
    width: 100% !important;
    max-width: 340px;
    border: none;
    overflow: hidden;
}

.ct-footer-social-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ct-footer-social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.ct-footer-social-item:hover {
    color: var(--ct-accent-orange);
}

.ct-footer-social-item img {
    width: 32px;
    height: 32px;
}

/* Footer Contact Section */
.ct-footer-contact-info {
    display: flex;
    flex-direction: column;
}

.ct-footer-contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ct-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.ct-footer-contact-item i {
    width: 20px;
    font-size: 18px;
    color: var(--ct-primary-blue);
    flex-shrink: 0;
}

.ct-footer-contact-item span {
    cursor: pointer;
    transition: color 0.3s;
}

.ct-footer-contact-item:hover span {
    color: var(--ct-primary-blue);
}

.ct-footer-hours {
    margin: 15px 0;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.ct-footer-qr {
    margin-top: 20px;
    text-align: center;
}

.ct-footer-qr img {
    width: 120px;
    height: 120px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.ct-footer-qr p {
    margin-top: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.ct-footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .ct-header-middle-content {
        grid-template-columns: 150px 1fr auto;
        gap: 15px;
    }

    .ct-logo img {
        max-height: 60px;
    }

    .ct-search-container {
        max-width: 100%;
    }

    .ct-btn-register,
    .ct-btn-login {
        padding: 8px 20px;
        font-size: 14px;
    }

    .ct-hero-title,
    .ct-hero-subtitle {
        font-size: 36px;
    }

    .ct-hero-text {
        margin-left: 30px;
        margin-top: 40px;
        margin-bottom: 50px;
    }

    .ct-hero-boxes {
        position: relative;
        bottom: auto;
        flex-direction: column;
        padding: 20px 30px;
        gap: 20px;
        margin-top: 30px;
    }

    .ct-service-box,
    .ct-contact-box {
        max-width: 100%;
    }

    .ct-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .ct-footer-promo-images {
        margin-top: 15px;
    }
    
    .ct-facebook-box {
        max-width: 100%;
    }

    .ct-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .ct-category-circle {
        width: 120px;
        height: 120px;
    }

    .ct-shop-now-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 30px;
        font-size: 16px;
    }

    .ct-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .ct-category-layout {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ct-header-top-row {
        padding: 5px 0;
    }

    .ct-language-selector span {
        font-size: 13px;
    }

    .ct-language-flags img {
        width: 20px;
        height: 15px;
    }

    .ct-header-middle-row {
        padding: 10px 0;
    }

    .ct-header-middle-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ct-logo {
        text-align: center;
        justify-content: center;
    }

    .ct-logo img {
        max-height: 50px;
    }

    .ct-search-container {
        width: 100%;
        max-width: 100%;
    }

    .ct-user-actions {
        justify-content: center;
        gap: 8px;
    }

    .ct-btn-register,
    .ct-btn-login {
        padding: 8px 15px;
        font-size: 13px;
        gap: 5px;
    }

    .ct-navbar-menu {
        flex-direction: column;
        display: none;
    }

    .ct-navbar-menu.active {
        display: flex;
    }

    .ct-mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--ct-text-white);
        font-size: 24px;
        padding: 10px;
        cursor: pointer;
    }

    .ct-hero-section {
        min-height: 500px;
    }

    .ct-hero-text {
        margin-left: 20px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .ct-hero-title,
    .ct-hero-subtitle {
        font-size: 28px;
    }

    .ct-hero-boxes {
        padding: 20px 15px;
        gap: 15px;
    }

    .ct-service-box,
    .ct-contact-box {
        padding: 20px;
    }

    .ct-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ct-footer-social-list {
        justify-content: flex-start;
    }
    
    .ct-footer-logo img {
        max-width: 150px;
    }
    
    .ct-footer-promo-images {
        margin-top: 15px;
        gap: 10px;
    }
    
    .ct-facebook-box {
        max-width: 100%;
    }
    
    .ct-facebook-box iframe {
        max-width: 100% !important;
    }

    .ct-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ct-category-circle {
        width: 100px;
        height: 100px;
    }

    .ct-category-name {
        font-size: 13px;
    }

    .ct-section-title {
        font-size: 28px;
    }

    .ct-shop-now-btn {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-flex;
        margin: 20px auto;
        justify-content: center;
    }

    .ct-promo-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ct-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ct-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ct-category-layout {
        grid-template-columns: 1fr;
    }

    .ct-category-sidebar {
        order: 2;
        margin-top: 30px;
    }

    .ct-category-content {
        order: 1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ct-hero-title,
    .ct-hero-subtitle {
        font-size: 24px;
    }

    .ct-service-box-title,
    .ct-contact-box-title {
        font-size: 18px;
    }

    .ct-qr-codes {
        flex-direction: column;
        align-items: center;
    }

    .ct-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ct-category-circle {
        width: 80px;
        height: 80px;
    }

    .ct-category-name {
        font-size: 12px;
        max-width: 100px;
    }

    .ct-section-title {
        font-size: 24px;
    }

    .ct-shop-now-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .ct-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ct-product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .ct-category-title {
        font-size: 22px;
    }
}

/* Hamburger Menu Styles */
.ct-mobile-menu-toggle {
    display: none;
}

@media (max-width: 767px) {
    .ct-mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--ct-text-white);
        font-size: 24px;
        padding: 10px;
        cursor: pointer;
    }

    .ct-navbar {
        position: relative;
    }

    .ct-navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--ct-primary-dark);
        flex-direction: column;
        display: none;
        z-index: 1000;
    }

    .ct-navbar-menu.active {
        display: flex;
    }
}

