.elementor-16870 .elementor-element.elementor-element-ee498dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-16870 .elementor-element.elementor-element-d712911{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:80px;--padding-bottom:80px;--padding-left:30px;--padding-right:30px;}@media(max-width:1024px){.elementor-16870 .elementor-element.elementor-element-d712911{--padding-top:30px;--padding-bottom:30px;--padding-left:30px;--padding-right:30px;}}@media(min-width:768px){.elementor-16870 .elementor-element.elementor-element-d712911{--content-width:1240px;}}/* Start custom CSS for shortcode, class: .elementor-element-8d36fa4 */.drik-calendar {
    font-family: 'Poppins', sans-serif;
}

/* Filters */
.calendar-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.calendar-filters input,
.calendar-filters select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Header */
.calendar-nav {
    display: flex;
    justify-content: space-between;
    background: #ff6a00;
    color: #fff;
    padding: 12px;
    border-radius: 8px 8px 0 0;
}

/* Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

/* Week Head */
.day-head {
    background: #e65100;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 12px;
}

/* Day */
.day {
    border: 1px solid #eee;
    min-height: 110px;
    padding: 6px;
    background: #fff;
    cursor: default;
}

.day:hover {
    background: #fff3e0;
}

/* Only clickable days */
.day[onclick] {
    cursor: pointer;
}

/* Today */
.today {
    border: 2px solid #ff6a00;
    background: #fff8e1;
}

/* Text */
.date { font-weight: bold; }
.tithi { font-size: 11px; }

/* Festival */
.festival-item {
    font-size: 11px;
    font-weight: bold;
}

/* Category Colors */
.festival-item[data-type="Ekadashi"] { color: green; }
.festival-item[data-type="Amavasya"] { color: black; }
.festival-item[data-type="Vrat"] { color: blue; }

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 20px;
}

/* Popup Links */
.popup-link {
    display: block;
    padding: 8px 0;
    color: #ff6a00;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.popup-link:hover {
    color: #e65100;
}

/* Mobile */
@media(max-width:768px){
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .day-head {
        display: none;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-7a0d793 *//* GRID */
.festival-card-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

/* CARD */
.festival-card {
  display:block;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  text-decoration:none;
  color:#000;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}

.festival-card:hover {
  transform: translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* IMAGE */
.card-image {
  position:relative;
  height:180px;
  overflow:hidden;
}

.card-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

.festival-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.card-overlay {
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.1)
  );
}

/* DATE BADGE */
.card-date {
  position:absolute;
  top:12px;
  left:12px;
  background:linear-gradient(135deg,#ff7e00,#ffb347);
  color:#fff;
  padding:6px 12px;
  font-size:13px;
  border-radius:50px;
}

/* CONTENT */
.card-content {
  padding:18px;
}

.card-content h3 {
  font-size:18px;
  margin-bottom:10px;
}

/* BUTTON */
.view-btn {
  font-size:14px;
  color:#ff7e00;
  font-weight:600;
}/* End custom CSS */